:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'Spline Sans', sans-serif;
  --tj-ff-heading: 'Bricolage Grotesque', sans-serif;
  --tj-ff-icons: 'agina-icons';
  /**
     @Font-weight Declaration
   */
  --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-h1: 90px;
  --tj-fs-h2: 72px;
  --tj-fs-h3: 48px;
  --tj-fs-h4: 32px;
  --tj-fs-h5: 28px;
  --tj-fs-h6: 20px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #0c0c0c;
  --tj-color-text-body: #333333;
  --tj-color-text-body-2: #707070;
  --tj-color-theme-primary: #de1a39;
  --tj-color-theme-bg: #fcf5ea;
  --tj-color-theme-bg-2: #ede5d8;
  --tj-color-theme-bg-3: rgba(12, 12, 12, 0.6);
  --tj-color-theme-bg-dark: #0c0c0c;
  --tj-color-theme-bg-dark-2: #333333;
  --tj-color-theme-bg-dark-3: #707070;
  --tj-color-theme-bg-dark-4: rgba(12, 12, 12, 0.2509803922);
  --tj-color-theme-bg-dark-5: rgba(51, 51, 51, 0.5490196078);
  --tj-color-theme-bg-dark-6: #161515;
  --tj-color-light-1: #fcf8f0;
  --tj-color-light-2: #bdb9b3;
  --tj-color-light-3: #999691;
  --tj-color-light-4: rgba(252, 245, 234, 0.5019607843);
  --tj-color-light-5: rgba(252, 248, 240, 0.8);
  --tj-color-grey-1: #c5c5c5;
  --tj-color-border-1: #e0dad1;
  --tj-color-border-2: #dbd5cc;
  --tj-color-border-3: #292826;
  --tj-color-border-4: rgba(252, 248, 240, 0.1215686275);
  --tj-color-border-5: rgba(224, 218, 209, 0.1019607843);
  --tj-color-gradient-1: linear-gradient(rgba(12, 12, 12, 0) 0%, rgb(12, 12, 12) 100%);
  --tj-color-gradient-2: linear-gradient(rgba(12, 12, 12, 0) 50%, rgb(12, 12, 12) 80%);
}

/************ TABLE OF CONTENTS ***************

  Theme Default CSS

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: var(--tj-fw-regular);
  line-height: 1.5;
  color: var(--tj-color-text-body);
  background-color: var(--tj-color-theme-bg);
}

p {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--tj-color-theme-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  line-height: 1.1;
  margin-top: 0px;
  margin-bottom: 15px;
}

h1 {
  font-size: var(--tj-fs-h1);
  line-height: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  h1 {
    font-size: 76px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 62px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 41px;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
  line-height: 1.11;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  h2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h2 {
    font-size: 58px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 56px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 28px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
  line-height: 1.25;
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h4 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: var(--tj-fs-h5);
  line-height: 1.27;
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h5 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  h5 {
    font-size: 22px;
  }
}

h6 {
  font-size: var(--tj-fs-h6);
  line-height: 1.2;
}
@media (max-width: 575px) {
  h6 {
    font-size: 18px;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: inline-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,
ol {
  margin: 0px;
  padding-left: 20px;
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 5px;
}

a,
button,
input[type=submit],
button[type=submit] {
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  -ms-transition: all 0.4s ease-in-out 0s;
  -o-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0 0 0;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: var(--tj-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}

img {
  max-width: 100%;
}

select,
.nice-select,
input[type=search],
input[type=tel],
input[type=text],
input[type=email],
input[type=url],
textarea {
  outline: none;
  background-color: transparent;
  width: 100%;
  height: auto;
  min-height: 44px;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-border-1);
  color: var(--tj-color-text-body);
  padding: 10px 20px;
  box-shadow: 0 0 0;
  border-radius: 0;
}
select:focus,
.nice-select:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
textarea:focus {
  border-color: var(--tj-color-theme-primary);
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
}

.nice-select:hover {
  border-color: var(--tj-color-border-1);
}
.nice-select.open {
  border-color: var(--tj-color-theme-primary);
}

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

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

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.fix {
  overflow: hidden;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl,
.row {
  --bs-gutter-x: 30px;
}

.section-padding {
  padding-top: 120px;
  padding-bottom: 120px;
}

.container-space {
  padding: 0 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .container-space {
    padding: 0 25px;
  }
}
@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) {
  .container-space {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container-space {
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .container-space {
    padding: 0;
  }
}

.gap-30 {
  gap: 30px;
}

.mt-60 {
  margin-top: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mt-60 {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mt-60 {
    margin-top: 30px;
  }
}

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

.ff-heading {
  font-family: var(--tj-ff-heading);
}

.ff-body {
  font-family: var(--tj-ff-text-body);
}

.fs-18 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.fs-18 span {
  color: var(--tj-color-theme-primary);
  text-decoration: underline;
}

.fs-20 {
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.fs-22 {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
.fs-22 span {
  color: var(--tj-color-theme-primary);
  text-decoration: underline;
}

.fs-24 {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1;
}
@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) {
  .fs-24 {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .fs-24 {
    font-size: 20px;
  }
}

.fs-28 {
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1.2857;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fs-28 {
    font-size: 24px;
  }
}

.fs-32 {
  font-size: 32px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fs-32 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .fs-32 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fs-32 {
    font-size: 18px;
  }
}

.fs-120 {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fs-120 i,
.fs-120 svg {
  display: inline-flex;
  line-height: 1;
  position: relative;
  font-size: 125%;
  margin-right: -20px;
  margin-top: -40px;
  bottom: -23px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .fs-120 {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .fs-120 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fs-120 {
    font-size: 80px;
  }
  .fs-120 i,
  .fs-120 svg {
    bottom: -17px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .fs-120 {
    font-size: 72px;
  }
  .fs-120 i,
  .fs-120 svg {
    bottom: -13px;
    margin-right: -15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fs-120 {
    font-size: 48px;
  }
  .fs-120 i,
  .fs-120 svg {
    bottom: -11px;
    margin-right: -12px;
  }
}
@media (max-width: 575px) {
  .fs-120 {
    font-size: 42px;
  }
  .fs-120 i,
  .fs-120 svg {
    bottom: -8px;
    margin-right: -10px;
  }
}

.fs-230 {
  font-size: 230px;
  letter-spacing: -0.04em;
  line-height: 0.8;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .fs-230 {
    font-size: 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .fs-230 {
    font-size: 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fs-230 {
    font-size: 160px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .fs-230 {
    font-size: 130px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fs-230 {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .fs-230 {
    font-size: 60px;
  }
}

.fw-regular {
  font-weight: var(--tj-fw-regular);
}

.fw-sbold {
  font-weight: var(--tj-fw-sbold);
}

.title-highlight .line,
.title-highlight .line-2,
.title-highlight-2 .line,
.title-highlight-2 .line-2 {
  position: relative;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: linear-gradient(90deg, var(--tj-color-heading-primary) var(--highlight-offset), var(--tj-color-border-2) var(--highlight-offset));
}

.tj-chars-up .line {
  overflow: hidden;
}

.tj-chars-up .line,
.tj-chars-up .char {
  display: inline-block;
}

.tj-line-up {
  position: relative;
  overflow: hidden;
}
.tj-line-up > div {
  position: relative;
  margin: 0;
}
.tj-line-up .line {
  overflow: hidden;
}
.tj-line-up .line-inner {
  display: inline-block;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.char-wrap {
  transform-style: preserve-3d;
  perspective: 10000px;
  width: auto;
}
.char-wrap > span:first-child {
  backface-visibility: hidden;
  transform-origin: 50% 25%;
}
.char-wrap > span:nth-child(2) {
  backface-visibility: hidden;
  transform-origin: 50% 100%;
}

.invisible {
  visibility: hidden;
}

.absolute,
.split-flip-text {
  position: absolute;
}

.split-flip-text {
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
}

.tj-theme-primary {
  background-color: var(--tj-color-theme-primary);
}

.tj-theme-dark {
  background-color: var(--tj-color-theme-bg-dark);
}

.tj-theme-dark-2 {
  background-color: var(--tj-color-theme-bg-dark-2);
}

.tj-theme-dark-3 {
  background-color: var(--tj-color-theme-bg-dark-3);
}

.tj-theme-bg {
  background-color: var(--tj-color-theme-bg);
}

.tj-theme-bg-2 {
  background-color: var(--tj-color-theme-bg-2);
}

.tj-text-primary {
  color: var(--tj-color-theme-primary);
}

.tj-text-body {
  color: var(--tj-color-text-body);
}

.tj-text-dark {
  color: var(--tj-color-heading-primary);
}

.tj-text-black {
  color: var(--tj-color-common-black);
}

.tj-text-white {
  color: var(--tj-color-common-white);
}

.tj-text-light-1 {
  color: var(--tj-color-light-1);
}

.tj-text-light-2 {
  color: var(--tj-color-light-2);
}

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

.tj-rating-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: inherit;
  width: fit-content;
  font-size: 18px;
  line-height: 1;
}
.tj-rating-wrapper .r-icon {
  position: relative;
  line-height: 1;
}
.tj-rating-wrapper .r-icon-wrapper {
  display: inline-flex;
  line-height: 1;
  --r-rating-icon-color: rgba(222, 26, 57, 0.5);
}
.tj-rating-wrapper .r-icon-wrapper.r-icon-marked {
  --r-rating-icon-color: var(--tj-color-theme-primary);
  height: 100%;
  inset-block-start: 0;
  inset-inline-start: 0;
  overflow: hidden;
  position: absolute;
  width: var(--r-rating-icon-marked-width);
  z-index: 1;
}
.tj-rating-wrapper .r-icon-wrapper i,
.tj-rating-wrapper .r-icon-wrapper svg {
  display: inline-flex;
  color: var(--r-rating-icon-color);
  line-height: 1;
}
.tj-rating-wrapper .label {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--tj-color-text-body-2);
  margin-left: 6px;
}

.tj-bg-image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.tj-bg-image-absolute {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tj-image-distortion {
  overflow: hidden;
}
.tj-image-distortion canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tj-split-text {
  opacity: 0;
}
.tj-split-text:has(.char) {
  opacity: 1;
}

.inner_top_gap {
  padding-top: 218px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner_top_gap {
    padding-top: 198px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .inner_top_gap {
    padding-top: 178px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .inner_top_gap {
    padding-top: 158px;
  }
}

.tj-fade {
  opacity: 0;
}

/**
  Animation keyframes
*/
.tj-text-gardient {
  animation: textGradient 4s linear infinite reverse;
}

.tj-spinner {
  animation: rotateImg 6s infinite linear;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
@keyframes scroll-rtl {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(100% + var(--gap)));
  }
}
@keyframes lineHover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    right: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes inOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
@keyframes inOut2 {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rotateImg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotateImg2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes textGradient {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes animate-blocks-svg {
  0% {
    fill: transparent;
  }
  100% {
    fill: currentColor;
  }
}
.svg-elem-1 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s both;
}

.svg-elem-2 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
}

.svg-elem-3 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1s both;
}

.svg-elem-4 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.1s both;
}

.svg-elem-5 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.2s both;
}

.svg-elem-6 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.3s both;
}

.svg-elem-7 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.4s both;
}

.svg-elem-8 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.5s both;
}

.svg-elem-9 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.6s both;
}

.svg-elem-10 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s both;
}

.svg-elem-11 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.8s both;
}

.svg-elem-12 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.9s both;
}

.svg-elem-13 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2s both;
}

.svg-elem-14 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.1s both;
}

.svg-elem-15 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.2s both;
}

.svg-elem-16 {
  animation: animate-blocks-svg 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) 2.3s both;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@-moz-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@-ms-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes gelatine {
  from, to {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.7, 1.1);
  }
  50% {
    transform: scale(1.1, 0.7);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
@keyframes linehover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    inset-inline-end: 0;
  }
  100% {
    width: 100%;
    inset-inline-start: 0;
  }
}
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
.tj-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  inset: 0;
  padding: 60px;
  background-color: transparent;
  display: flex;
  pointer-events: none;
  z-index: 1000;
}
.tj-preloader > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 110vh;
  fill: var(--tj-color-theme-bg-dark-6);
  z-index: -1;
}
.tj-preloader .loading_marquee {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 80px;
  font-family: var(--tj-ff-heading);
  font-weight: 400;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--tj-color-light-1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  will-change: transform;
  animation: preloader_marquee 200s linear infinite;
}
.tj-preloader .loading_marquee .marquee_text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 100px;
}
.tj-preloader_bottom {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.tj-preloader_bottom .copyright_text,
.tj-preloader_bottom .loading_text {
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.5;
  text-transform: uppercase;
}
.tj-preloader_bottom .copyright_text > span,
.tj-preloader_bottom .loading_text > span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-preloader {
    padding: 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) {
  .tj-preloader {
    padding: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-preloader {
    padding: 30px 20px;
  }
  .tj-preloader .loading_marquee {
    font-size: 25px;
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .tj-preloader {
    padding: 30px 15px;
  }
  .tj-preloader .loading_marquee {
    font-size: 25px;
    gap: 10px;
  }
}

.tj-page-transition {
  position: fixed;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tj-page-transition .cubes {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.tj-page-transition .cubes span {
  width: 100%;
  height: 100%;
  background: var(--tj-color-theme-bg-dark);
  transform: scale(0);
  will-change: transform;
}
.tj-page-transition .brand-logo {
  position: absolute;
  transform-origin: center;
  max-width: 60px;
  width: 100%;
  display: inline-flex;
  animation: preloaderHeartBeat 2s infinite ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-page-transition .cubes {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-page-transition .cubes {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-page-transition .cubes {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes preloader_marquee {
  0% {
    transform: translateY(-50%) translateZ(0);
  }
  to {
    transform: translateY(-50%) translate3d(-100%, 0, 0);
  }
}
@keyframes preloaderHeartBeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* !END: Preloader CSS */
.cb-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
  contain: layout style size;
  pointer-events: none;
  will-change: transform;
  transition: opacity 0.3s, color 0.4s;
}
.cb-cursor::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 50px;
  height: 50px;
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.3s ease-in-out, opacity 0.1s;
  background-color: var(--tj-color-theme-primary);
}
.cb-cursor .cb-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: white;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  transition: opacity 0.4s, transform 0.3s;
}
.cb-cursor.-normal, .cb-cursor.-text {
  mix-blend-mode: normal;
}
.cb-cursor.-normal::before, .cb-cursor.-normal::before, .cb-cursor.-text::before, .cb-cursor.-text::before {
  background: currentColor;
}
.cb-cursor.-visible::before {
  transform: scale(0.2);
}
.cb-cursor.-visible.-active::before {
  transform: scale(0.23);
  transition-duration: 0.2s;
}
.cb-cursor.-text::before {
  background-color: #000;
  opacity: 0.8;
  backdrop-filter: blur(10);
  transform: scale(1.7);
}
.cb-cursor.-text.-active::before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}
.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  transform: scale(1);
}
.cb-cursor.-inverse {
  color: white;
}
.cb-cursor.-pointer::before {
  transform: scale(0);
}
.cb-cursor.-opaque::before {
  transform: scale(1.32);
}
.cb-cursor.-opaque.-active::before {
  transform: scale(1.2);
}
.cb-cursor.-lg::before {
  transform: scale(2);
}
.cb-cursor.-hidden::before {
  transform: scale(0);
}
.cb-cursor.service, .cb-cursor.service.-active, .cb-cursor.light, .cb-cursor.light.-active, .cb-cursor.project, .cb-cursor.project.-active, .cb-cursor.service-2, .cb-cursor.service-2.-active, .cb-cursor.service-3, .cb-cursor.service-3.-active {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cb-cursor.service::before, .cb-cursor.service.-active::before, .cb-cursor.light::before, .cb-cursor.light.-active::before, .cb-cursor.project::before, .cb-cursor.project.-active::before, .cb-cursor.service-2::before, .cb-cursor.service-2.-active::before, .cb-cursor.service-3::before, .cb-cursor.service-3.-active::before {
  background-color: var(--tj-color-theme-primary);
  transform: scale(2.3);
  opacity: 1;
}
.cb-cursor.service .cb-cursor-text, .cb-cursor.service.-active .cb-cursor-text, .cb-cursor.light .cb-cursor-text, .cb-cursor.light.-active .cb-cursor-text, .cb-cursor.project .cb-cursor-text, .cb-cursor.project.-active .cb-cursor-text, .cb-cursor.service-2 .cb-cursor-text, .cb-cursor.service-2.-active .cb-cursor-text, .cb-cursor.service-3 .cb-cursor-text, .cb-cursor.service-3.-active .cb-cursor-text {
  display: inline-block;
  position: relative;
  width: auto;
  height: auto;
  left: 0;
  top: 0;
  transform: scale(0);
  text-align: left;
  letter-spacing: 0;
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tj-color-light-1);
  transform-origin: center;
}
.cb-cursor.service .cb-cursor-text i, .cb-cursor.service.-active .cb-cursor-text i, .cb-cursor.light .cb-cursor-text i, .cb-cursor.light.-active .cb-cursor-text i, .cb-cursor.project .cb-cursor-text i, .cb-cursor.project.-active .cb-cursor-text i, .cb-cursor.service-2 .cb-cursor-text i, .cb-cursor.service-2.-active .cb-cursor-text i, .cb-cursor.service-3 .cb-cursor-text i, .cb-cursor.service-3.-active .cb-cursor-text i {
  position: relative;
  top: 2px;
}
.cb-cursor.service.-text .cb-cursor-text, .cb-cursor.service.-active.-text .cb-cursor-text, .cb-cursor.light.-text .cb-cursor-text, .cb-cursor.light.-active.-text .cb-cursor-text, .cb-cursor.project.-text .cb-cursor-text, .cb-cursor.project.-active.-text .cb-cursor-text, .cb-cursor.service-2.-text .cb-cursor-text, .cb-cursor.service-2.-active.-text .cb-cursor-text, .cb-cursor.service-3.-text .cb-cursor-text, .cb-cursor.service-3.-active.-text .cb-cursor-text {
  transform: scale(1);
}
.cb-cursor.project::before, .cb-cursor.project.-active::before {
  background-color: var(--tj-color-light-1);
  transform: scale(2.8);
}
.cb-cursor.project .cb-cursor-text, .cb-cursor.project.-active .cb-cursor-text {
  color: var(--tj-color-heading-primary);
}
.cb-cursor.service-2::before, .cb-cursor.service-2.-active::before {
  transform: scale(1.12);
}
.cb-cursor.service-2 .cb-cursor-text, .cb-cursor.service-2.-active .cb-cursor-text {
  font-size: 20px;
}
.cb-cursor.service-2 .cb-cursor-text i, .cb-cursor.service-2.-active .cb-cursor-text i {
  transform: rotate(-45deg);
  display: inline-block;
}
.cb-cursor.service-3::before, .cb-cursor.service-3.-active::before {
  transform: scale(1.12);
}
.cb-cursor.service-3 .cb-cursor-text, .cb-cursor.service-3.-active .cb-cursor-text {
  font-size: 20px;
}
.cb-cursor.service-3 .cb-cursor-text i, .cb-cursor.service-3.-active .cb-cursor-text i {
  display: inline-block;
}
.cb-cursor.light::before, .cb-cursor.light.-active::before {
  background-color: var(--tj-color-light-1);
  transform: scale(2.2);
}
.cb-cursor.light .cb-cursor-text, .cb-cursor.light.-active .cb-cursor-text {
  color: var(--tj-color-heading-primary);
}

@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion,
  .cb-cursor.-opaque {
    mix-blend-mode: exclusion;
  }
}
@supports (mix-blend-mode: exclusion) {
  .cb-cursor.-exclusion:before,
  .cb-cursor.-opaque:before {
    background: white;
  }
}
.-color-red {
  color: red;
}

.-color-green {
  color: #51c67d;
}

.cb-demo {
  background: #fff;
}

.cb-demo-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.cb-demo-container {
  padding: 0 20px;
}

@media (min-width: 1600px) {
  .cb-demo-container {
    padding: 0 120px;
  }
}
.cb-demo-row {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 30px 0;
}

@media (min-width: 1600px) {
  .cb-demo-row {
    margin: 60px 0;
  }
}
.cb-demo-item {
  position: relative;
  flex: 1;
  padding: 50px 30px;
  margin: 0 20px;
  color: #000;
}

@media (min-width: 1600px) {
  .cb-demo-item {
    padding: 90px 30px;
    margin: 0 30px;
  }
}
.cb-demo-item-title {
  position: relative;
  margin: 0 0 25px 0;
  font-size: 30px;
  font-weight: bold;
}

.cb-demo-item-text {
  position: relative;
  max-width: 70%;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: 300;
  line-height: 150%;
}

.cb-demo-item:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  background: #f8f8f8;
  transition: box-shadow 0.2s;
}

/**
  Buttons CSS
*/
.tj_btn, .tj_bordered_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--tj-color-theme-primary);
  padding: 14px 24px;
  font-family: var(--tj-ff-body);
  font-size: 16px;
  line-height: 1.25;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-light-1);
  z-index: 1;
}
.tj_btn::before, .tj_bordered_btn::before {
  content: "";
  background-color: var(--tj-color-heading-primary);
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  transition: all 0.5s;
}
.tj_btn .flip-text, .tj_bordered_btn .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.tj_btn .flip-text .front, .tj_bordered_btn .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.tj_btn .flip-text .back, .tj_bordered_btn .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}
.tj_btn:hover, .tj_btn:focus, .tj_bordered_btn:hover, .tj_bordered_btn:focus {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
}
.tj_btn:hover::before, .tj_btn:focus::before, .tj_bordered_btn:hover::before, .tj_bordered_btn:focus::before {
  height: 100%;
}
.tj_btn:hover .flip-text .front, .tj_btn:focus .flip-text .front, .tj_bordered_btn:hover .flip-text .front, .tj_bordered_btn:focus .flip-text .front {
  transform: translateY(-150%);
}
.tj_btn:hover .flip-text .back, .tj_btn:focus .flip-text .back, .tj_bordered_btn:hover .flip-text .back, .tj_bordered_btn:focus .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_bordered_btn {
  background-color: transparent;
  border: 1px solid var(--tj-color-heading-primary);
  padding: 13px 23px;
  color: var(--tj-color-heading-primary);
}
.tj_bordered_btn:hover, .tj_bordered_btn:focus {
  background-color: transparent;
  border-color: var(--tj-color-heading-primary);
  color: var(--tj-color-light-1);
}
.tj_icon_btn {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tj-color-heading-primary);
  background-color: transparent;
  padding: 9px 23px 9px 9px;
  font-family: var(--tj-ff-body);
  font-size: 16px;
  line-height: 1.25;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.tj_icon_btn .icon_btn {
  position: relative;
  background-color: var(--tj-color-heading-primary);
  color: var(--tj-color-light-1);
  transition: all 0.5s;
  z-index: 1;
}
.tj_icon_btn .icon_btn.hover-bg i,
.tj_icon_btn .icon_btn.hover-bg svg {
  transform: rotate(-45deg);
  transition: all 0.4s;
}
.tj_icon_btn .icon_btn.hover-bg::before {
  content: "";
  background-color: var(--tj-color-theme-primary);
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  transition: all 0.5s;
}
.tj_icon_btn .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.tj_icon_btn .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.tj_icon_btn .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}
.tj_icon_btn:hover, .tj_icon_btn:focus {
  background-color: transparent;
  color: var(--tj-color-heading-primary);
}
.tj_icon_btn:hover .icon_btn > span i:first-child,
.tj_icon_btn:hover .icon_btn > span svg:first-child, .tj_icon_btn:focus .icon_btn > span i:first-child,
.tj_icon_btn:focus .icon_btn > span svg:first-child {
  transform: translateX(150%);
}
.tj_icon_btn:hover .icon_btn > span i:last-child,
.tj_icon_btn:hover .icon_btn > span svg:last-child, .tj_icon_btn:focus .icon_btn > span i:last-child,
.tj_icon_btn:focus .icon_btn > span svg:last-child {
  transform: translateX(0);
}
.tj_icon_btn:hover .icon_btn.scale, .tj_icon_btn:focus .icon_btn.scale {
  transform: scale(0.9);
}
.tj_icon_btn:hover .icon_btn.hover-bg i,
.tj_icon_btn:hover .icon_btn.hover-bg svg, .tj_icon_btn:focus .icon_btn.hover-bg i,
.tj_icon_btn:focus .icon_btn.hover-bg svg {
  transform: rotate(0);
}
.tj_icon_btn:hover .icon_btn.hover-bg::before, .tj_icon_btn:focus .icon_btn.hover-bg::before {
  height: 100%;
}
.tj_icon_btn:hover .flip-text .front, .tj_icon_btn:focus .flip-text .front {
  transform: translateY(-150%);
}
.tj_icon_btn:hover .flip-text .back, .tj_icon_btn:focus .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_icon_btn.text-underline-btn, .tj_icon_btn.no-border {
  border: 0;
  padding: 0;
  line-height: 1.1;
  gap: 8px;
}
.tj_icon_btn.text-underline-btn .icon_btn, .tj_icon_btn.no-border .icon_btn {
  width: 24px;
  height: 24px;
  font-size: 16px;
}
.tj_icon_btn.text-underline-btn {
  align-items: flex-end;
}
.tj_icon_btn.text-underline-btn .icon_btn {
  overflow: hidden;
}
.tj_icon_btn.text-underline-btn .icon_btn > span {
  overflow: visible;
}
.tj_icon_btn.text-underline-btn .icon_btn > span i,
.tj_icon_btn.text-underline-btn .icon_btn > span svg {
  transition: all 0.5s;
}
.tj_icon_btn.text-underline-btn .underline-text {
  position: relative;
  z-index: 1;
}
.tj_icon_btn.text-underline-btn .underline-text::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  right: 0;
  bottom: 0;
}
.tj_icon_btn.text-underline-btn:focus .icon_btn, .tj_icon_btn.text-underline-btn:hover .icon_btn {
  background-color: var(--tj-color-theme-primary);
}
.tj_icon_btn.text-underline-btn:focus .underline-text::before, .tj_icon_btn.text-underline-btn:hover .underline-text::before {
  animation: lineHover 0.4s linear;
}
.tj_icon_btn.text-underline-btn.light-btn {
  color: var(--tj-color-light-1);
}
.tj_icon_btn.text-underline-btn.light-btn .icon_btn {
  background-color: var(--tj-color-light-1);
  color: var(--tj-color-heading-primary);
}
.tj_icon_btn.text-underline-btn.light-btn .icon_btn > span i,
.tj_icon_btn.text-underline-btn.light-btn .icon_btn > span svg {
  color: var(--tj-color-heading-primary);
}
.tj_icon_btn.text-underline-btn.light-btn:hover .icon_btn {
  background-color: var(--tj-color-theme-primary);
}
.tj_icon_btn.text-underline-btn.light-btn:hover .icon_btn > span i {
  color: var(--tj-color-light-1);
}
.tj_icon_btn.rounded_icon {
  gap: 7px;
  align-items: center;
}
.tj_icon_btn.rounded_icon .icon_btn {
  border-radius: 50%;
  overflow: hidden;
}
.tj_icon_btn.rounded_icon .icon_btn.hover-bg::before {
  display: none;
}
.tj_icon_btn.rounded_icon .flip-text {
  position: relative;
}
.tj_icon_btn.rounded_icon .flip-text .back {
  display: none;
}
.tj_icon_btn.rounded_icon .flip-text::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--tj-color-heading-primary);
  position: absolute;
  inset-inline-end: 0;
  bottom: 1px;
}
.tj_icon_btn.rounded_icon:hover .flip-text .front {
  transform: none;
}
.tj_icon_btn.rounded_icon:hover .flip-text::after {
  animation: linehover 0.5s linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_icon_btn {
    padding: 7px 20px 7px 7px;
  }
}
.tj_marquee_btn {
  display: inline-flex;
  align-items: center;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-sbold);
}
.tj_marquee_btn .text_btn {
  --gap: 30px;
  line-height: 1.25;
  border: 1px solid var(--tj-color-heading-primary);
  padding: 17px 0;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  max-width: 160px;
  width: 100%;
  overflow: hidden;
}
.tj_marquee_btn .text_btn span {
  display: inline-flex;
  flex: 0 0 auto;
}
.tj_marquee_btn .icon_btn {
  width: 56px;
  height: 56px;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--tj-color-heading-primary);
  color: var(--tj-color-heading-primary);
}
.tj_marquee_btn .icon_btn i {
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.tj_marquee_btn:hover .text_btn span {
  animation: scroll 3s linear infinite;
}
.tj_marquee_btn:hover .icon_btn {
  transform: translateX(3px);
}
.tj_marquee_btn:hover .icon_btn i {
  transform: rotate(0);
}
.tj_marquee_btn.light-btn {
  color: var(--tj-color-light-1);
}
.tj_marquee_btn.light-btn .text_btn {
  border-color: var(--tj-color-light-1);
}
.tj_marquee_btn.light-btn .icon_btn {
  border-color: var(--tj-color-light-1);
  color: var(--tj-color-light-1);
}
.tj_text_btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 1;
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  line-height: 1.25;
  color: var(--tj-color-heading-primary);
}
.tj_text_btn i,
.tj_text_btn svg {
  display: inline-flex;
  font-size: 105%;
  line-height: 1;
  transform: rotate(-45deg);
  transition: all 0.4s ease-in-out 0s;
}
.tj_text_btn::before {
  content: "";
  height: 1px;
  width: 96%;
  background-color: currentColor;
  position: absolute;
  right: 4px;
  bottom: 2px;
  transition: transform 0.3s ease-in-out;
}
.tj_text_btn:focus, .tj_text_btn:hover {
  color: var(--tj-color-heading-primary);
}
.tj_text_btn:focus i,
.tj_text_btn:focus svg, .tj_text_btn:hover i,
.tj_text_btn:hover svg {
  transform: rotate(0);
}
.tj_text_btn:focus::before, .tj_text_btn:hover::before {
  animation: lineHover 0.5s linear;
}
.tj_swiper_nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  line-height: 1;
  background-color: var(--tj-color-heading-primary);
  color: var(--tj-color-light-1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.tj_swiper_nav > span {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
.tj_swiper_nav > span i,
.tj_swiper_nav > span svg {
  display: inline-flex;
  line-height: 1;
  position: relative;
  top: 0;
  color: var(--tj-color-light-1);
  transition: all 0.3s;
}
.tj_swiper_nav > span i:last-child,
.tj_swiper_nav > span svg:last-child {
  position: absolute;
  transform: translateX(-150%);
  color: var(--tj-color-light-1);
}
.tj_swiper_nav.prev > span i:last-child,
.tj_swiper_nav.prev > span svg:last-child {
  transform: translateX(150%);
}
.tj_swiper_nav:hover {
  background-color: var(--tj-color-theme-primary);
}
.tj_swiper_nav:hover > span i:first-child,
.tj_swiper_nav:hover > span svg:first-child {
  transform: translateX(150%);
}
.tj_swiper_nav:hover > span i:last-child,
.tj_swiper_nav:hover > span svg:last-child {
  transform: translateX(0);
}
.tj_swiper_nav:hover.prev > span i:first-child,
.tj_swiper_nav:hover.prev > span svg:first-child {
  transform: translateX(-150%);
}
@media (max-width: 575px) {
  .tj_swiper_nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
}
.tj_btn_2 {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px 10px 30px;
  gap: 12px;
  border-radius: 50px;
  font-size: var(--tj-fs-btn);
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-light-1);
  position: relative;
  white-space: nowrap;
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
  overflow: hidden;
  z-index: 0;
}
.tj_btn_2 .tj_btn_icon {
  will-change: transform;
  width: 44px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.tj_btn_2 .tj_btn_icon:first-child {
  transform: scale3d(0, 0, 1);
  margin-inline-end: -50px;
  opacity: 0;
}
.tj_btn_2 .tj_btn_icon:last-child {
  transform: scale3d(1, 1, 1);
  margin-inline-start: 0;
  opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_btn_2 {
    padding: 7px 7px 7px 20px;
  }
  .tj_btn_2 .tj_btn_icon {
    width: 40px;
    height: 40px;
  }
}
.tj_btn_2:hover {
  color: var(--tj-color-light-1);
  padding: 10px 30px 10px 10px;
}
.tj_btn_2:hover .tj_btn_icon:first-child {
  transform: scale3d(1, 1, 1);
  margin-inline-end: 0;
  opacity: 1;
}
.tj_btn_2:hover .tj_btn_icon:last-child {
  transform: scale3d(0, 0, 1);
  margin-inline-start: -50px;
  opacity: 0;
}

.icon_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 20px;
  line-height: 1;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.icon_btn > span {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transform: rotate(-45deg);
}
.icon_btn > span i,
.icon_btn > span svg {
  display: inline-flex;
  line-height: 1;
  position: relative;
  top: 0;
  color: var(--tj-color-light-1);
  transition: all 0.3s;
}
.icon_btn > span i:last-child,
.icon_btn > span svg:last-child {
  position: absolute;
  transform: translateX(-150%);
  color: var(--tj-color-light-1);
}
.icon_btn_rounded {
  border-radius: 100%;
  width: 56px;
  height: 56px;
}
.icon_btn_rounded:hover > span i:first-child,
.icon_btn_rounded:hover > span svg:first-child {
  transform: translateX(150%);
}
.icon_btn_rounded:hover > span i:last-child,
.icon_btn_rounded:hover > span svg:last-child {
  transform: translateX(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .icon_btn {
    width: 38px;
    height: 38px;
  }
}

.flip-text-wrap .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.flip-text-wrap .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.flip-text-wrap .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}

.reveal-hover-text .reveal-line {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.reveal-hover-text .reveal-line .front {
  display: block;
  transition: all 0.5s;
}
.reveal-hover-text .reveal-line .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.tj-header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 97;
  background-color: var(--tj-color-theme-bg);
  padding: 30px 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-header {
    padding: 30px 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-header {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-header {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header {
    padding: 20px 5px;
  }
}
@media (max-width: 575px) {
  .tj-header {
    padding: 20px 0;
  }
}
.tj-header.header-absolute {
  background-color: transparent;
  position: absolute;
  z-index: 98;
}
.tj-header.header-duplicate {
  background-color: var(--tj-color-theme-bg);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: -120px;
  left: 0;
  z-index: 99;
  transition: all 0.4s ease-in-out;
  padding-top: 20px;
  padding-bottom: 20px;
}
.tj-header.sticky {
  top: 0;
}
.tj-header_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 30px;
  row-gap: 20px;
  justify-content: space-between;
}
.tj-header_right {
  display: inline-flex;
  gap: 10px;
}

.site_logo {
  display: inline-flex;
  line-height: 1;
}
.site_logo .logo {
  display: inline-flex;
  max-width: 175px;
  width: 100%;
}
@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) {
  .site_logo .logo {
    max-width: 150px;
  }
}

.tj_sidebar_toggle {
  display: grid;
  align-items: center;
  justify-content: center;
  background-color: var(--tj-color-theme-bg-2);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px;
  padding: 12px;
}
.tj_sidebar_toggle > span {
  display: inline-flex;
  width: 5px;
  height: 5px;
  background-color: var(--tj-color-theme-bg-dark);
  border-radius: 50%;
  will-change: transform;
  transition-timing-function: linear;
}
.tj_sidebar_toggle > span:nth-child(2) {
  transition-delay: 0.03s;
}
.tj_sidebar_toggle > span:nth-child(3) {
  transition-delay: 0.05s;
}
.tj_sidebar_toggle > span:nth-child(4) {
  transition-delay: 0.07s;
}
.tj_sidebar_toggle > span:nth-child(5) {
  transition-delay: 0.09s;
}
.tj_sidebar_toggle > span:nth-child(6) {
  transition-delay: 0.11s;
}
.tj_sidebar_toggle > span:nth-child(7) {
  transition-delay: 0.13s;
}
.tj_sidebar_toggle > span:nth-child(8) {
  transition-delay: 0.15s;
}
.tj_sidebar_toggle > span:last-child {
  transition-delay: 0.17s;
}
.tj_sidebar_toggle.on > span:nth-child(even) {
  opacity: 0;
}
.tj_sidebar_toggle:hover:not(.on) > span {
  animation: flicker 0.7s linear;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(1) {
  animation-delay: 0s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(2) {
  animation-delay: 0.12s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(3) {
  animation-delay: 0.28s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(4) {
  animation-delay: 0.19s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(5) {
  animation-delay: 0.33s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(6) {
  animation-delay: 0.07s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(7) {
  animation-delay: 0.25s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(8) {
  animation-delay: 0.41s;
}
.tj_sidebar_toggle:hover:not(.on) > span:nth-child(9) {
  animation-delay: 0.15s;
}
.tj_sidebar_toggle_2 {
  background-color: var(--tj-color-theme-bg-dark-2);
}
.tj_sidebar_toggle_2 > span {
  background-color: var(--tj-color-light-1);
}
.tj_sidebar_toggle_3 {
  padding: 0;
  background: transparent;
  display: flex;
  gap: 15px;
  align-items: center;
}
.tj_sidebar_toggle_3 label {
  color: var(--tj-color-light-1);
  font-weight: var(--tj-fw-medium);
  line-height: 1.625;
  opacity: 0;
  transform: translateX(15px);
  transition: all 0.4s ease-in-out 0s;
}
.tj_sidebar_toggle_3 > span:last-child, .tj_sidebar_toggle_3 > span:nth-child(2) {
  animation-delay: 0;
}
.tj_sidebar_toggle_3 .lines {
  width: auto;
  height: auto;
  background-color: transparent;
  border-radius: 0;
  flex-direction: column;
  gap: 7px;
}
.tj_sidebar_toggle_3 .lines span {
  width: 54px;
  height: 2px;
  background-color: var(--tj-color-light-1);
  transition: all 0.4s ease-in-out 0s;
}
.tj_sidebar_toggle_3:hover:not(.on) > span {
  animation: none;
}
.tj_sidebar_toggle_3:hover .lines span:first-child {
  transform: translateX(2px);
}
.tj_sidebar_toggle_3:hover .lines span:last-child {
  transform: translateX(-2px);
}
.tj_sidebar_toggle_3:hover label {
  opacity: 1;
  transform: translateX(0);
}

.header-2 .tj-header_wrap {
  padding: 0 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-2 .tj-header_wrap {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-2 .tj-header_wrap {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-2 .tj-header_wrap {
    padding: 0 5px;
  }
}
@media (max-width: 575px) {
  .header-2 .tj-header_wrap {
    padding: 0;
  }
}
.header-2 .site_logo .logo {
  max-width: 46px;
}
@media (max-width: 575px) {
  .header-2 .site_logo .logo {
    max-width: 42px;
  }
}
.header-2.header-duplicate {
  background-color: var(--tj-color-theme-bg-dark);
  box-shadow: 0 0 1px 0 rgba(252, 245, 234, 0.4);
}
.header-2.header-duplicate .tj-header_wrap {
  padding: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-2 {
    border-bottom: 1px solid var(--tj-color-border-3);
  }
}
.header-3.header-absolute {
  border-bottom: 1px solid var(--tj-color-border-4);
  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) {
  .header-3.header-absolute {
    padding: 30px 0;
  }
}
.header-3.header-duplicate .tj_icon_list li .text {
  color: var(--tj-color-heading-primary);
}
.header-3.header-duplicate .tj_sidebar_toggle_3 label {
  color: var(--tj-color-heading-primary);
}
.header-3.header-duplicate .tj_sidebar_toggle_3 .lines span {
  background-color: var(--tj-color-theme-bg-dark);
}
.header-3 .site_logo .logo {
  max-width: 156px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-3 .site_logo .logo {
    max-width: 120px;
  }
}
.header-3 .tj_icon_list li .text {
  color: var(--tj-color-light-1);
}
.header-3 .tj-header_right {
  width: 555px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .header-3 .tj-header_right {
    width: 485px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-3 .tj-header_right {
    width: 410px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-3 .tj-header_right {
    width: 386px;
  }
}
@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-3 .tj-header_right {
    width: auto;
  }
}
.header-inner.header-absolute {
  transition: border 0.4s ease-in-out;
  border-bottom: 1px solid var(--tj-color-border-1);
}

body:has(.tj_navigation_wrap_overlay.active) .header-inner.header-absolute {
  border-color: var(--tj-color-border-5);
}

@keyframes flicker {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* !END: Header CSS */
/**----------------------------------------
START: Navigation CSS
----------------------------------------*/
.tj_navigation_wrap_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--tj-color-theme-bg-dark);
  z-index: 90;
  opacity: 0;
  transition: all 0.75s ease;
  pointer-events: none;
  visibility: hidden;
}
.tj_navigation_wrap_overlay.active {
  opacity: 0.5;
  visibility: visible;
}

.site_navigation nav {
  display: inline-flex;
  flex-wrap: wrap;
  background-color: var(--tj-color-theme-bg-2);
  padding: 0 30px;
}
.site_navigation nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site_navigation nav ul:not(.sub-menu) {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 35px;
  row-gap: 10px;
}
.site_navigation nav ul:not(.sub-menu) > li {
  position: relative;
  display: inline-flex;
  z-index: 1;
}
.site_navigation nav ul:not(.sub-menu) > li > a {
  display: flex;
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  padding: 11px 0;
}
.site_navigation nav ul:not(.sub-menu) > li.menu-item-has-children > a, .site_navigation nav ul:not(.sub-menu) > li.has-dropdown > a {
  position: relative;
  z-index: 1;
  padding-right: 12px;
}
.site_navigation nav ul:not(.sub-menu) > li.menu-item-has-children > a::after, .site_navigation nav ul:not(.sub-menu) > li.has-dropdown > a::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
  position: absolute;
  right: 0;
  top: 21px;
  z-index: 1;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.site_navigation nav ul:not(.sub-menu) > li.current-menu-item > a, .site_navigation nav ul:not(.sub-menu) > li.current-menu-ancestor > a, .site_navigation nav ul:not(.sub-menu) > li.current-menu-parent > a {
  color: var(--tj-color-theme-primary);
}
.site_navigation nav ul:not(.sub-menu) > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.site_navigation nav ul:not(.sub-menu) > li:hover > a::after {
  transform: rotate(-180deg);
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu {
  position: absolute;
  width: 260px;
  top: calc(100% + 1px);
  left: -30px;
  background: var(--tj-color-theme-bg-2);
  background-repeat: repeat;
  background-size: contain;
  padding: 15px;
  margin-bottom: 0;
  z-index: 10;
  text-align: left;
  flex-direction: column;
  align-items: start;
  gap: 0;
  display: none;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li {
  position: relative;
  min-height: auto;
  width: 100%;
  display: block;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li > a {
  display: block;
  padding: 9px 15px;
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  background-color: transparent;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li > a::before {
  display: none;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li > a:after {
  content: "\e90c";
  font-family: var(--tj-ff-icons);
  font-weight: var(--tj-fw-regular);
  top: 10px;
  width: 0%;
  z-index: 1;
  right: 50px;
  bottom: 5px;
  opacity: 0;
  margin: 0 auto;
  visibility: hidden;
  position: absolute;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li > .sub-menu {
  top: 0;
  left: 100%;
  display: none;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li:hover > a {
  background-color: rgba(252, 245, 234, 0.8);
  color: var(--tj-color-heading-primary);
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li:hover > a::after {
  opacity: 1;
  right: 30px;
  visibility: visible;
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-item > a, .site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-ancestor > a, .site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-parent > a {
  background-color: var(--tj-color-grey-3);
  color: var(--tj-color-theme-primary);
}
.site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-item > a::after, .site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-ancestor > a::after, .site_navigation nav ul:not(.sub-menu) > li .sub-menu > li.current-menu-parent > a::after {
  color: var(--tj-color-theme-primary);
  opacity: 1;
  right: 30px;
  visibility: visible;
}
.site_navigation.navigation-2 nav {
  background-color: transparent;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) {
  column-gap: 30px;
  row-gap: 10px;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a {
  color: var(--tj-color-light-2);
  padding: 11px 12px;
  position: relative;
  z-index: 1;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a::after, .site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a::before {
  font-size: 16px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-border-3);
  position: absolute;
  z-index: 1;
  transition: 0.4s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a::before {
  content: "[";
  left: 0;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a::after {
  content: "]";
  right: 0;
  top: auto;
  height: auto;
  width: auto;
  background: none;
  border-radius: 0;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text {
  display: flex;
  overflow: hidden;
  text-shadow: 0 24px 0;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span {
  display: block;
  font-style: normal;
  backface-visibility: hidden;
  transform: translateY(var(--m));
  transition: transform 0.3s ease;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(1) {
  transition-delay: 0.05s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(2) {
  transition-delay: 0.1s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(3) {
  transition-delay: 0.15s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(4) {
  transition-delay: 0.2s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(5) {
  transition-delay: 0.25s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(6) {
  transition-delay: 0.3s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(7) {
  transition-delay: 0.35s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(8) {
  transition-delay: 0.4s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(9) {
  transition-delay: 0.45s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(10) {
  transition-delay: 0.5s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(11) {
  transition-delay: 0.55s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(12) {
  transition-delay: 0.6s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(13) {
  transition-delay: 0.65s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(14) {
  transition-delay: 0.7s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a .tj-nav-text span:nth-child(15) {
  transition-delay: 0.75s;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li > a:hover span {
  --m: calc(24px * -1);
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li.menu-item-has-children > a, .site_navigation.navigation-2 nav ul:not(.sub-menu) > li.has-dropdown > a {
  position: relative;
  z-index: 1;
  padding-left: 12px;
  padding-right: 12px;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li.current-menu-item > a, .site_navigation.navigation-2 nav ul:not(.sub-menu) > li.current-menu-ancestor > a, .site_navigation.navigation-2 nav ul:not(.sub-menu) > li.current-menu-parent > a {
  color: var(--tj-color-theme-primary);
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li:hover > a::after, .site_navigation.navigation-2 nav ul:not(.sub-menu) > li:hover > a::before {
  color: var(--tj-color-theme-primary);
  transform: rotate(0);
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li:hover > a::before {
  left: -4px;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li:hover > a::after {
  right: -4px;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li .sub-menu {
  background: var(--tj-color-theme-bg-dark-2);
  left: -18px;
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li .sub-menu > li > a {
  color: var(--tj-color-light-1);
}
.site_navigation.navigation-2 nav ul:not(.sub-menu) > li .sub-menu > li:hover > a {
  background-color: rgba(112, 112, 112, 0.5);
  color: var(--tj-color-light-1);
}

/* !END: Navigation CSS */
/**----------------------------------------
START: Offcanvas CSS
----------------------------------------*/
.tj-offcanvas {
  position: fixed;
  top: 0;
  right: 0;
  width: 507px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 0.5s;
  z-index: 999;
  scrollbar-width: none;
  overflow-y: scroll;
  transform: translateX(110%);
  transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.tj-offcanvas.opened {
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.9, 0.03, 0, 0.96) 0.3s;
}
.tj-offcanvas-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  z-index: 998;
  left: 0;
  background-color: rgba(12, 12, 12, 0.1);
  backdrop-filter: blur(15px);
  transition: all 0.5s ease-in 0.7s;
  transform: translateX(110%);
}
.tj-offcanvas-overlay.overlay-2 {
  background-color: rgba(252, 245, 234, 0.1);
}
.tj-offcanvas-overlay.opened {
  transform: translateX(0);
  transition: all 0.3s ease-out 0.1s;
}
.tj-offcanvas .offcanvas_bg {
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tj-offcanvas .offcanvas_wrapper {
  padding: 45px 50px;
  height: 100%;
  overflow-y: auto;
  scrollbar-width: none;
}
.tj-offcanvas .offcanvas_top {
  border-bottom: 1px solid var(--tj-color-border-1);
  padding-bottom: 31px;
}
.tj-offcanvas .offcanvas_logo .logo {
  display: inline-flex;
  max-width: 120px;
  width: 100%;
}
.tj-offcanvas .offcanvas_close {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tj-color-heading-primary);
  z-index: 1;
}
.tj-offcanvas .offcanvas_close .close-text {
  pointer-events: none;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.tj-offcanvas .offcanvas_close .tj_sidebar_toggle {
  padding: 4px;
  background-color: transparent;
}
.tj-offcanvas .offcanvas_close .tj_sidebar_toggle > span:nth-child(even) {
  opacity: 0;
}
.tj-offcanvas .offcanvas_close .tj_sidebar_toggle:hover > span {
  animation: none;
}
.tj-offcanvas .offcanvas_close:hover .close-text {
  transform: translate(0, -50%);
  opacity: 1;
  visibility: visible;
}
.tj-offcanvas .offcanvas_close_2 .tj_sidebar_toggle {
  width: 30px;
  height: 30px;
  position: relative;
  padding: 0;
}
.tj-offcanvas .offcanvas_close_2 .tj_sidebar_toggle > span {
  width: 100%;
  height: 2px;
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  border-radius: 0;
  transition: all 0.4s ease-in-out 0s;
}
.tj-offcanvas .offcanvas_close_2 .tj_sidebar_toggle > span:nth-child(even) {
  transform: translateY(-50%) rotate(-45deg);
  opacity: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas .offcanvas_close_2 .tj_sidebar_toggle {
    width: 24px;
    height: 24px;
  }
}
.tj-offcanvas .offcanvas_close_2 .tj_sidebar_toggle:hover > span {
  animation: none;
  transform: rotate(0deg) translateY(-50%);
}
.tj-offcanvas .offcanvas_action {
  margin-top: 40px;
}
.tj-offcanvas .offcanvas_action .greetings {
  margin: 0;
  font-weight: var(--tj-fw-sbold);
  line-height: 1.4;
  letter-spacing: -0.015em;
}
.tj-offcanvas .offcanvas_action .greetings img {
  display: inline-flex;
  max-width: 28px;
  height: auto;
  margin-top: -8px;
}
.tj-offcanvas .offcanvas_action .tj_text_btn {
  margin-top: 14px;
}
.tj-offcanvas .offcanvas_action .tj_text_btn:hover {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas .offcanvas_action .tj_text_btn:hover i {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas .offcanvas_gallery {
  margin-top: 30px;
}
.tj-offcanvas .offcanvas_menu {
  margin-top: 46px;
  margin-bottom: 100px;
}
.tj-offcanvas .offcanvas_contact {
  margin-top: 46px;
}
.tj-offcanvas .offcanvas_contact .address {
  margin-top: 64px;
}
.tj-offcanvas .offcanvas_socials {
  margin-top: 46px;
}
.tj-offcanvas-2 .offcanvas_bg {
  background-color: var(--tj-color-theme-bg-dark);
}
.tj-offcanvas-2 .offcanvas_top {
  border-color: var(--tj-color-border-3);
}
.tj-offcanvas-2 .offcanvas_close {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_close .tj_sidebar_toggle > span {
  background-color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_action .greetings {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_action .tj_text_btn {
  color: var(--tj-color-light-2);
}
.tj-offcanvas-2 .offcanvas_action .tj_text_btn::before {
  background-color: currentColor;
}
.tj-offcanvas-2 .offcanvas_action .tj_text_btn:hover {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .offcanvas_action .tj_text_btn:hover i {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .tj_contact .contact_title span {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .tj_contact .contact_info {
  color: var(--tj-color-light-2);
}
.tj-offcanvas-2 .tj_contact a.contact_info:hover, .tj-offcanvas-2 .tj_contact a.contact_info:focus {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .tj_socials > li > a:not(:hover) {
  border-color: var(--tj-color-border-3);
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand) {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand:hover, .tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand:focus {
  color: var(--tj-color-light-1);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li > a:not(.mean-expand) {
  color: var(--tj-color-light-2);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand:hover, .tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand:focus {
  color: var(--tj-color-light-2);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-2 .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-offcanvas {
    max-width: 450px;
  }
  .tj-offcanvas .offcanvas_wrapper {
    padding: 45px 50px;
  }
}
@media (max-width: 575px) {
  .tj-offcanvas {
    max-width: 100%;
  }
  .tj-offcanvas .offcanvas_wrapper {
    padding: 30px 15px 60px 15px;
  }
  .tj-offcanvas .offcanvas_menu {
    margin-top: 36px;
  }
}
.tj_gallery {
  height: 264px;
  position: relative;
}
.tj_gallery .gallery_img {
  --i: 0;
  max-width: 146px;
  width: 100%;
  aspect-ratio: 146/167;
  object-fit: cover;
  position: absolute;
  left: calc(var(--i) * 82px);
  bottom: calc(var(--i) * 32px);
  z-index: 0;
  transform: translateY(0) scale(1);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}
.tj_gallery .gallery_img:nth-child(2) {
  --i: 1;
}
.tj_gallery .gallery_img:nth-child(3) {
  --i: 2;
}
.tj_gallery .gallery_img:nth-child(4) {
  --i: 3;
}
.tj_gallery .gallery_img:hover {
  z-index: 1;
  transform: translateY(-5px) scale(1.02);
}
.tj_gallery .gallery_img:hover ~ .gallery_img {
  z-index: 0;
}
.tj_contact {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.tj_contact .contact_title {
  margin-bottom: 14px;
}
.tj_contact .contact_info {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.01em;
  color: var(--tj-color-heading-primary);
  margin: 0;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.tj_contact a.contact_info::before {
  content: "";
  height: 1px;
  width: 100%;
  background-color: currentColor;
  position: absolute;
  right: 0;
  bottom: 4px;
  transition: transform 0.3s ease-in-out;
}
.tj_contact a.contact_info:hover, .tj_contact a.contact_info:focus {
  color: var(--tj-color-theme-primary);
}
.tj_contact a.contact_info:hover::before, .tj_contact a.contact_info:focus::before {
  animation: lineHover 0.5s linear;
}
.tj_socials {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.tj_socials > li {
  display: inline-flex;
  line-height: 1;
}
.tj_socials > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  z-index: 1;
  overflow: hidden;
}
.tj_socials > li > a i {
  text-shadow: -30px 0 0;
  transition: all 0.5s;
}
.tj_socials > li > a::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  left: 0;
  right: 0;
  transform: scale(0);
  transform-origin: center;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.tj_socials > li > a:hover {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-theme-primary);
}
.tj_socials > li > a:hover i {
  transform: translateX(30px);
}
.tj_socials > li > a:hover::before {
  transform: scale(1.1);
}
.tj-offcanvas-wrapper {
  display: flex;
  height: 100%;
  overflow: hidden;
}
@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-offcanvas-wrapper {
    flex-wrap: wrap;
    overflow: auto;
  }
}
.tj-offcanvas-default {
  width: 50%;
  overflow: auto;
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: all 0.6s ease-in-out 0s;
}
.tj-offcanvas-default::-webkit-scrollbar {
  display: none;
}
.tj-offcanvas-default .offcanvas_logo .logo {
  max-width: 174px;
}
@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-offcanvas-default .offcanvas_logo {
    padding-bottom: 43px;
    border-bottom: 1px solid var(--tj-color-border-1);
    line-height: 1;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-default .offcanvas_logo {
    padding-bottom: 28px;
  }
  .tj-offcanvas-default .offcanvas_logo .logo {
    max-width: 120px;
  }
}
.tj-offcanvas-default .offcanvas_close {
  margin-inline-start: auto;
}
.tj-offcanvas-default .offcanvas_close_wrapper {
  text-align: end;
}
@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-offcanvas-default {
    width: 100%;
  }
  .tj-offcanvas-default .offcanvas_close {
    position: absolute;
    inset-inline-end: 60px;
    top: 33px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-offcanvas-default .offcanvas_close {
    inset-inline-end: 45px;
    top: 47px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-default .offcanvas_close {
    inset-inline-end: 15px;
    top: 33px;
  }
}
.tj-offcanvas-left {
  background-color: var(--tj-color-theme-bg-2);
  transform: translateY(-80%);
  padding: 33px 60px 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-offcanvas-left {
    padding: 33px 40px 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-offcanvas-left {
    padding: 33px 30px 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) {
  .tj-offcanvas-left {
    background-color: var(--tj-color-theme-bg);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-offcanvas-left {
    padding: 45px 45px 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-offcanvas-left {
    padding: 30px 30px 60px;
  }
}
@media (max-width: 575px) {
  .tj-offcanvas-left {
    padding: 30px 15px 60px;
  }
}
.tj-offcanvas-right {
  background-color: var(--tj-color-theme-bg);
  transform: translateY(80%);
}
.tj-offcanvas-right-wrapper {
  padding: 33px 60px 60px;
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100%;
  z-index: 0;
  overflow-x: hidden;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-offcanvas-right-wrapper {
    padding: 33px 40px 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-offcanvas-right-wrapper {
    padding: 33px 30px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-offcanvas-right-wrapper {
    padding: 60px 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-offcanvas-right-wrapper {
    padding: 60px 30px;
  }
}
@media (max-width: 575px) {
  .tj-offcanvas-right-wrapper {
    padding: 60px 15px;
  }
}
.tj-offcanvas-right .scroll-slider {
  width: 100%;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  transform: translateY(-50%);
  overflow: visible;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-offcanvas-right .scroll-slider {
    top: -7%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-right .scroll-slider {
    top: 11%;
  }
}
.tj-offcanvas-right .scroll-wrapper {
  gap: 30px;
}
.tj-offcanvas-right .marquee-text {
  font-size: 63px;
  color: var(--tj-color-theme-bg-2);
}
.tj-offcanvas-right .marquee-text span {
  margin-inline-start: 30px;
}
.tj-offcanvas-shape-wrapper {
  text-align: center;
  margin-top: 80px;
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 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-offcanvas-shape-wrapper {
    display: none;
  }
}
.tj-offcanvas-shape-animation {
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-shape-animation {
    margin-top: 50px;
  }
}
.tj-offcanvas-shape-animation img {
  mix-blend-mode: multiply;
}
.tj-offcanvas-infos {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.tj-offcanvas-infos .address,
.tj-offcanvas-infos .contact {
  max-width: 285px;
}
.tj-offcanvas-infos .tj_socials {
  max-width: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-offcanvas-infos .tj_contact .contact_info {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-infos {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
  .tj-offcanvas-infos .offcanvas_contact,
  .tj-offcanvas-infos .offcanvas_socials {
    margin-top: 0;
  }
  .tj-offcanvas-infos .offcanvas_socials {
    margin-top: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-infos {
    gap: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-offcanvas-infos .offcanvas_contact,
  .tj-offcanvas-infos .offcanvas_socials {
    margin-top: 0;
  }
  .tj-offcanvas-infos .offcanvas_socials {
    margin-top: 5px;
  }
}
@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-offcanvas-infos {
    gap: 48px;
  }
}
.tj-offcanvas-full {
  width: 100%;
  max-width: 100%;
  height: 100%;
  background-color: transparent;
  overflow: hidden;
  transform: translateY(0);
  z-index: -111;
  pointer-events: none;
  transition: all 0.5s ease-in-out 0s;
}
.tj-offcanvas-full.opened {
  z-index: 999;
  transform: translateY(0);
  pointer-events: auto;
  transition: all 0.5s ease-in-out 0s;
}
.tj-offcanvas-full.opened .tj-offcanvas-default {
  opacity: 1;
}
.tj-offcanvas-full.opened .tj-offcanvas-left, .tj-offcanvas-full.opened .tj-offcanvas-right {
  transform: translateY(0);
}

.tj-megamenu {
  margin-top: 114px;
  padding-inline-start: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-megamenu {
    padding-inline-start: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-megamenu {
    padding-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-megamenu {
    margin-top: 70px;
    padding-inline-start: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-megamenu {
    margin-top: 45px;
    padding-inline-start: 0;
  }
}
.tj-megamenu-item {
  padding: 0;
  border: 0;
  background-color: transparent;
}
.tj-megamenu-item:first-of-type, .tj-megamenu-item:last-of-type {
  border-radius: 0;
}
.tj-megamenu-item:not(:last-child) {
  margin-bottom: 52px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-megamenu-item:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-megamenu-item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-megamenu-item:not(:last-child) {
    margin-bottom: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-megamenu-item:not(:last-child) {
    margin-bottom: 35px;
  }
}
.tj-megamenu-item.accordion-item .tj-megamenu-title::after {
  content: "\e92f";
  font-family: var(--tj-ff-icons);
  font-size: 20px;
  font-weight: var(--tj-fw-regular);
  line-height: 0.4;
  color: var(--tj-color-heading-primary);
  position: absolute;
  inset-inline-end: -2px;
  top: 0;
  transition: all 0.4s ease-in-out 0s;
}
.tj-megamenu-item.accordion-item .tj-megamenu-title:not(.collapsed) .flip-text span {
  color: var(--tj-color-theme-primary);
}
.tj-megamenu-item.accordion-item .tj-megamenu-title:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.tj-megamenu-title {
  font-family: var(--tj-ff-heading);
  font-size: 72px;
  font-weight: var(--tj-fw-sbold);
  line-height: 0.7;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  width: 100%;
  display: flex;
  gap: 15px;
  position: relative;
}
.tj-megamenu-title .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.tj-megamenu-title .flip-text span {
  color: var(--tj-color-heading-primary);
}
.tj-megamenu-title .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.tj-megamenu-title .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-megamenu-title {
    font-size: 54px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-megamenu-title {
    font-size: 54px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-megamenu-title {
    font-size: 30px;
    line-height: 0.75;
  }
}
.tj-megamenu-title:hover .flip-text span {
  color: var(--tj-color-theme-primary);
}
.tj-megamenu-title:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj-megamenu-title:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj-megamenu-sl {
  font-family: var(--tj-ff-body);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-megamenu-sl {
    display: none;
  }
}
.tj-megamenu-sl::before, .tj-megamenu-sl::after {
  color: var(--tj-color-theme-primary);
}
.tj-megamenu-sl::before {
  content: "[";
}
.tj-megamenu-sl::after {
  content: "]";
}
.tj-megamenu-body {
  padding: 0;
  padding-top: 36px;
  padding-inline-start: 54px;
  padding-bottom: 9px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-megamenu-body {
    padding-top: 18px;
    padding-inline-start: 48px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-megamenu-body {
    padding-inline-start: 30px;
    padding-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-megamenu-body {
    padding-inline-start: 15px;
    padding-top: 26px;
  }
}
.tj-megamenu-dropdown {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tj-megamenu-dropdown li a {
  font-size: 20px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  display: flex;
  gap: 6px;
  align-items: center;
}
.tj-megamenu-dropdown li a i {
  font-size: 17px;
  transform: rotate(-45deg) translateX(-8px);
  margin-bottom: -2px;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}
.tj-megamenu-dropdown li a:hover i {
  transform: rotate(-45deg) translateX(0px);
  opacity: 1;
}

.offcanvas_menu {
  position: relative;
  overflow: hidden;
}
.offcanvas_menu.mean-container .mean-bar {
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0;
}
.offcanvas_menu.mean-container .mean-bar a.meanmenu-reveal {
  display: none;
}
.offcanvas_menu.mean-container .mean-bar * {
  box-sizing: border-box;
}
.offcanvas_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.offcanvas_menu .mean-nav > ul {
  display: block !important;
}
.offcanvas_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li {
  position: relative;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li:not(:last-child) {
  margin-bottom: 17px;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand) {
  color: var(--tj-color-heading-primary);
  width: 100%;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  padding: 0;
  border: none;
  transition: all 0.4s ease-in-out 0s;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand):hover, .offcanvas_menu .mean-nav ul:not(.sub-menu) > li > a:not(.mean-expand):focus {
  color: inherit;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand {
  padding: 0;
  width: 100%;
  height: 39px;
  text-align: right;
  line-height: 39px;
  transition: all 0.4s ease-in-out 0s;
  margin-top: 0;
  font-size: inherit !important;
  color: var(--tj-color-heading-primary);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand:hover, .offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand:focus {
  color: inherit;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 10px;
  transition: all 0.4s ease-in-out 0s;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li {
  padding-left: 15px;
  position: relative;
  margin-top: 5px;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li > a:not(.mean-expand) {
  width: 100%;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  padding: 0;
  text-transform: inherit;
  color: var(--tj-color-text-body);
  border: none;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand {
  width: calc(100% - 15px);
  padding: 0;
  height: 28px;
  line-height: 28px;
  margin: 0;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand:hover, .offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand:focus {
  color: inherit;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand i {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 4px;
  transition: all 0.4s ease-in-out 0s;
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
}
.offcanvas_menu .mean-nav ul:not(.sub-menu) > li ul.sub-menu > li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}

/* !END: Offcanvas CSS */
/**----------------------------------------
START:  Footer CSS
----------------------------------------*/
.h1_footer_widgets {
  padding-top: 130px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--tj-color-border-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_footer_widgets {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_footer_widgets {
    padding-top: 90px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_footer_widgets {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}
.h1_footer_widgets_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_footer_widgets_wrap {
    row-gap: 80px;
  }
}
.h1_footer_widgets_wrap hr {
  opacity: 1;
  background-color: var(--tj-color-border-3);
  width: 1px;
  height: auto;
  margin: 0;
}
.h1_footer_widgets_wrap .tj_footer_widget .tj_socials > li > a {
  border-color: var(--tj-color-border-3);
  color: var(--tj-color-light-1);
}
.h1_footer_widgets_wrap .tj_footer_widget .tj_contact .sec_subtitle span {
  color: var(--tj-color-light-1);
}
.h1_footer_widgets_wrap .tj_footer_widget .tj_contact .contact_info {
  color: var(--tj-color-light-2);
}
.h1_footer_widgets_wrap .tj_footer_widget.footer_info {
  max-width: 345px;
  width: 100%;
}
.h1_footer_widgets_wrap .tj_footer_widget.footer_info .footer_subscription {
  max-width: 321px;
  width: 100%;
}
.h1_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_footer_contact {
  align-items: end;
}
.h1_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_socials {
  justify-content: end;
  margin-top: 24px;
}
.h1_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_contact {
  max-width: 285px;
  width: 100%;
  margin-left: auto;
  margin-top: 43px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_footer_widgets_wrap .tj_footer_widget.footer_info {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 30px;
    justify-content: space-between;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_info .subscription_wrap {
    max-width: 340px;
    width: 100%;
  }
  .h1_footer_widgets_wrap hr:nth-child(2) {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_footer_widgets_wrap {
    row-gap: 70px;
  }
  .h1_footer_widgets_wrap hr:nth-child(2) {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_footer_widgets_wrap {
    column-gap: 30px;
    justify-content: unset;
  }
  .h1_footer_widgets_wrap_wrap {
    row-gap: 50px;
  }
  .h1_footer_widgets_wrap hr {
    display: none;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_info {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    column-gap: 30px;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_info .subscription_wrap {
    max-width: 100%;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_info .subscription_wrap .footer_subscription {
    max-width: 100%;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.widget-nav-menu {
    max-width: calc(50% - 15px);
    width: 100%;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_footer_contact {
    align-items: start;
  }
  .h1_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_socials {
    justify-content: start;
  }
}
@media (max-width: 575px) {
  .h1_footer_widgets_wrap .tj_footer_widget.widget-nav-menu {
    max-width: 100%;
  }
}
.h1_footer_bottom {
  padding-top: 27px;
  padding-bottom: 27px;
}
.h1_footer_bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_footer_bottom_wrap {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .h1_footer_bottom {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .h1_footer_bottom_wrap {
    gap: 10px;
  }
}

.tj_footer_widget .widget_title {
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  margin-bottom: 45px;
}
.tj_footer_widget .widget_title > span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_footer_widget .widget_title {
    margin-bottom: 20px;
  }
}
.tj_footer_widget.widget-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tj_footer_widget.widget-nav-menu ul li {
  width: 100%;
  display: block;
}
.tj_footer_widget.widget-nav-menu ul li:not(:last-child) {
  margin-bottom: 11px;
}
.tj_footer_widget.widget-nav-menu ul li > ul,
.tj_footer_widget.widget-nav-menu ul li ol {
  margin-top: 11px;
  padding-left: 20px;
}
.tj_footer_widget.widget-nav-menu ul li > a {
  font-size: 18px;
  line-height: 1.45;
  color: var(--tj-color-light-2);
}
.tj_footer_widget.widget-nav-menu ul li > a:hover {
  color: var(--tj-color-theme-primary);
}
.tj_footer_widget.widget-nav-menu ul li > a:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj_footer_widget.widget-nav-menu ul li > a:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_footer_widget.footer_info .footer_logo {
  display: inline-flex;
  margin-bottom: 32px;
}
.tj_footer_widget.footer_info .footer_logo .logo {
  display: inline-block;
  max-width: 180px;
  width: 100%;
}
.tj_footer_widget.footer_info .footer_desc {
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.01em;
  color: var(--tj-color-light-2);
}
.tj_footer_widget.footer_info .footer_subscription {
  margin-top: 23px;
}
.tj_footer_widget.footer_info .footer_subscription form {
  position: relative;
  z-index: 1;
}
.tj_footer_widget.footer_info .footer_subscription form input[type=email] {
  border-radius: 0;
  border-width: 0 0 1px 0;
  border-color: var(--tj-color-light-1);
  padding: 13px 50px 13px 0;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.01em;
  color: var(--tj-color-light-1);
}
.tj_footer_widget.footer_info .footer_subscription form input[type=email]::placeholder {
  color: var(--tj-color-light-2);
  opacity: 0.7;
}
.tj_footer_widget.footer_info .footer_subscription form input[type=submit],
.tj_footer_widget.footer_info .footer_subscription form button[type=submit] {
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 2;
}
.tj_footer_widget.footer_info .footer_subscription form input[type=submit]:hover > span i:first-child,
.tj_footer_widget.footer_info .footer_subscription form input[type=submit]:hover > span svg:first-child,
.tj_footer_widget.footer_info .footer_subscription form button[type=submit]:hover > span i:first-child,
.tj_footer_widget.footer_info .footer_subscription form button[type=submit]:hover > span svg:first-child {
  transform: translateX(150%);
}
.tj_footer_widget.footer_info .footer_subscription form input[type=submit]:hover > span i:last-child,
.tj_footer_widget.footer_info .footer_subscription form input[type=submit]:hover > span svg:last-child,
.tj_footer_widget.footer_info .footer_subscription form button[type=submit]:hover > span i:last-child,
.tj_footer_widget.footer_info .footer_subscription form button[type=submit]:hover > span svg:last-child {
  transform: translateX(0);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_footer_widget.footer_info .footer_logo .logo {
    max-width: 150px;
  }
}
.tj_footer_contact {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.tj_footer_contact .contact_link {
  display: inline-block;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 64px;
  line-height: 74px;
  color: var(--tj-color-light-1);
  position: relative;
  z-index: 1;
}
.tj_footer_contact .contact_link:not(:last-child) {
  margin-bottom: 8px;
}
.tj_footer_contact .contact_link::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5%;
  background-color: currentColor;
  bottom: 13%;
  transform: scaleX(1);
  transform-origin: left center;
  transition: transform 0.4s;
}
.tj_footer_contact .contact_link .char {
  display: inline-block;
  opacity: 1;
  will-change: opacity;
}
.tj_footer_contact .contact_link:hover::before {
  transform: scaleX(0);
  transform-origin: right center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_footer_contact .contact_link {
    font-size: 50px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_footer_contact .contact_link {
    font-size: 40px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_footer_contact .contact_link {
    font-size: 32px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_footer_contact .contact_link {
    font-size: 28px;
    line-height: 1.1;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_footer_contact .contact_link {
    font-size: 25px;
    line-height: 1.1;
  }
}
@media (max-width: 575px) {
  .tj_footer_contact .contact_link {
    font-size: 22px;
    line-height: 1.1;
  }
}
.tj_footer_nav ul {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tj_footer_nav ul li {
  position: relative;
  display: inline-flex;
}
.tj_footer_nav ul li:not(:first-child) {
  margin-left: 15px;
  padding-left: 16px;
}
.tj_footer_nav ul li:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: var(--tj-color-border-3);
}
.tj_footer_nav ul li > a {
  display: flex;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--tj-color-light-2);
}
.tj_footer_nav ul li > a:hover {
  color: var(--tj-color-theme-primary);
}
.tj_footer_nav ul li > a:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj_footer_nav ul li > a:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_copyright {
  display: inline-block;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--tj-color-light-2);
}
.tj_copyright a {
  color: var(--tj-color-light-1);
}
.tj_copyright a:hover {
  color: var(--tj-color-theme-primary);
}
.tj_back_to_top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--tj-color-light-2);
}
.tj_back_to_top > span {
  position: relative;
  display: inline-flex;
  overflow: hidden;
}
.tj_back_to_top > span i,
.tj_back_to_top > span svg {
  display: inline-flex;
  line-height: 1;
  position: relative;
  top: 0;
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  transition: all 0.3s;
}
.tj_back_to_top > span i svg,
.tj_back_to_top > span svg svg {
  max-width: 18px;
  height: auto;
}
.tj_back_to_top > span i:last-child,
.tj_back_to_top > span svg:last-child {
  position: absolute;
  transform: translateY(150%);
}
.tj_back_to_top:hover {
  color: var(--tj-color-light-2);
}
.tj_back_to_top:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj_back_to_top:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_back_to_top:hover > span i:first-child,
.tj_back_to_top:hover > span svg:first-child {
  transform: translateY(-150%);
}
.tj_back_to_top:hover > span i:last-child,
.tj_back_to_top:hover > span svg:last-child {
  transform: translateY(0);
}

.h2-footer-area {
  will-change: transform;
  position: relative;
  z-index: -1;
}
.h2_footer_marquee {
  padding: 8px 0;
}
.h2_footer_marquee .marquee-text {
  font-size: 230px;
}
.h2_footer_marquee .marquee-text i {
  font-size: 0.57em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_marquee .marquee-text {
    font-size: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_footer_marquee .marquee-text {
    font-size: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_footer_marquee .marquee-text {
    font-size: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_marquee .marquee-text {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_marquee {
    padding: 20px 0;
  }
}
.h2_footer_left {
  width: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_left {
    width: 44%;
  }
}
@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) {
  .h2_footer_left {
    width: 100%;
  }
}
.h2_footer_right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-inline-start: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_right {
    width: 56%;
  }
}
@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) {
  .h2_footer_right {
    width: 100%;
    padding-inline-start: 0;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_right {
    padding-top: 40px;
    gap: 50px;
  }
}
.h2_footer_widgets {
  padding-top: 120px;
  padding-bottom: 203px;
  border-top: 1px solid var(--tj-color-border-3);
  border-bottom: 1px solid var(--tj-color-border-3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.h2_footer_widgets::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: var(--tj-color-border-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_widgets::after {
    left: 44%;
  }
}
@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) {
  .h2_footer_widgets::after {
    display: none;
  }
}
.h2_footer_widgets .blocks-shape {
  max-width: 400px;
  bottom: 0;
  right: -1px;
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_footer_widgets .blocks-shape {
    max-width: 330px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_footer_widgets .blocks-shape {
    max-width: 260px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_widgets .blocks-shape {
    max-width: 200px;
  }
}
.h2_footer_widgets_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.h2_footer_widgets_wrap hr {
  opacity: 1;
  background-color: var(--tj-color-border-3);
  width: 1px;
  height: auto;
  margin: 0;
}
.h2_footer_widgets_wrap .tj_footer_widget .newsletter_title {
  color: var(--tj-color-light-1);
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.h2_footer_widgets_wrap .tj_footer_widget .newsletter_title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_widgets_wrap .tj_footer_widget .newsletter_title {
    font-size: 42px;
  }
}
.h2_footer_widgets_wrap .tj_footer_widget .tj_socials > li > a {
  border-color: var(--tj-color-border-3);
  color: var(--tj-color-light-1);
}
.h2_footer_widgets_wrap .tj_footer_widget .widget_title > span {
  color: var(--tj-color-text-body-2);
}
.h2_footer_widgets_wrap .tj_footer_widget.widget-nav-menu ul li:not(:last-child) {
  margin-bottom: 6px;
}
.h2_footer_widgets_wrap .tj_footer_widget.widget-nav-menu ul li > a {
  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) {
  .h2_footer_widgets_wrap .tj_footer_widget.widget-nav-menu ul li > a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_widgets_wrap .tj_footer_widget.widget-nav-menu {
    width: 100%;
  }
}
.h2_footer_widgets_wrap .tj_footer_widget .tj_contact .contact_info {
  color: var(--tj-color-light-2);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_widgets_wrap .tj_footer_widget .tj_contact .contact_info {
    font-size: 18px;
  }
}
.h2_footer_widgets_wrap .tj_footer_widget .tj_contact a.contact_info:hover {
  color: var(--tj-color-theme-primary);
}
.h2_footer_widgets_wrap .tj_footer_widget.footer_info {
  max-width: 530px;
  width: 100%;
}
.h2_footer_widgets_wrap .tj_footer_widget.footer_info .footer_subscription {
  max-width: 524px;
  margin-top: 18px;
}
.h2_footer_widgets_wrap .tj_footer_widget.footer_info .tj_socials {
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_footer_widgets_wrap .tj_footer_widget.footer_info {
    max-width: 460px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_footer_widgets_wrap .tj_footer_widget.footer_info {
    max-width: 440px;
  }
}
.h2_footer_widgets_wrap .tj_footer_widget.footer_contact {
  max-width: 287px;
  width: 100%;
}
.h2_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_contact {
  max-width: 222px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_footer_widgets_wrap .tj_footer_widget.footer_contact {
    max-width: 240px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_footer_widgets {
    padding-top: 100px;
    padding-bottom: 175px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_footer_widgets {
    padding-top: 90px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_widgets {
    padding-top: 70px;
    padding-bottom: 130px;
  }
}
.h2_footer_bottom {
  padding-top: 32px;
  padding-bottom: 32px;
}
.h2_footer_bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_footer_bottom_wrap {
    flex-direction: column;
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .h2_footer_bottom_wrap {
    gap: 10px;
  }
}

.footer-nav {
  display: flex;
  justify-content: stretch;
  padding-inline-start: 34px;
  padding-inline-end: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-nav {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-nav {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav {
    padding-inline-start: 4px;
    padding-inline-end: 4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-nav {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-nav {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
@media (max-width: 575px) {
  .footer-nav {
    padding: 0;
  }
}
.footer-nav-item {
  width: 100%;
}
.footer-nav-item:not(:last-child) {
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-width: 0;
  border-inline-end-width: 1px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-nav-item:not(:last-child) {
    border-inline-end-width: 0;
    border-bottom-width: 1px;
  }
}
.footer-nav-item .tj_icon_btn {
  width: 100%;
  justify-content: space-between;
  color: var(--tj-color-light-1);
  font-family: var(--tj-ff-heading);
  font-size: 24px;
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 110px 34px 34px 25px;
}
.footer-nav-item .tj_icon_btn .icon_btn {
  font-size: 23px;
  height: auto;
  width: auto;
  font-weight: var(--tj-fw-regular);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav-item .tj_icon_btn {
    padding: 70px 24px 24px 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-nav-item .tj_icon_btn {
    font-size: 18px;
    padding: 34px 24px 24px 24px;
  }
  .footer-nav-item .tj_icon_btn .icon_btn {
    font-size: 17px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-nav-item .tj_icon_btn {
    padding: 22px 15px 24px;
  }
}
.footer-nav-item .tj_icon_btn:hover .icon_btn.scale {
  transform: scale(1);
}
.footer-nav-item .tj_icon_btn:hover,
.footer-nav-item .tj_icon_btn:hover .icon_btn > span i,
.footer-nav-item .tj_icon_btn:hover .icon_btn > span svg {
  color: var(--tj-color-theme-primary);
}
.footer_socials {
  border-bottom: 1px solid var(--tj-color-border-3);
}
.footer_socials_item {
  border-top: 1px solid var(--tj-color-border-3);
}
.footer_socials_item .tj_icon_btn {
  width: 100%;
  justify-content: space-between;
  color: var(--tj-color-light-2);
  font-size: 20px;
  font-weight: var(--tj-fw-regular);
  line-height: 1.3;
  padding: 10px 0;
}
.footer_socials_item .tj_icon_btn .icon_btn {
  font-size: 16px;
  height: auto;
  width: auto;
  font-weight: var(--tj-fw-regular);
}
.footer_socials_item .tj_icon_btn .icon_btn > span {
  transform: rotate(0);
}
.footer_socials_item .tj_icon_btn .icon_btn > span i,
.footer_socials_item .tj_icon_btn .icon_btn > span svg {
  color: var(--tj-color-light-2);
}
.footer_socials_item .tj_icon_btn:hover .icon_btn.scale {
  transform: scale(1);
}
.footer_socials_item .tj_icon_btn:hover,
.footer_socials_item .tj_icon_btn:hover .icon_btn > span i,
.footer_socials_item .tj_icon_btn:hover .icon_btn > span svg {
  color: var(--tj-color-theme-primary);
}

.h3-footer-area {
  padding-top: 0;
  will-change: transform;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-footer-area {
    transform: none !important;
    margin-top: -1px;
  }
}
.h3_footer_left {
  width: 280px;
}
.h3_footer_right {
  width: 800px;
}
.h3_footer_right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_footer_left {
    width: 235px;
  }
  .h3_footer_right {
    width: 635px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_footer_left {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_footer_right {
    width: 100%;
  }
}
.h3_footer_widgets {
  padding-top: 116px;
  padding-bottom: 111px;
  border-top: 1px solid var(--tj-color-border-3);
  border-bottom: 1px solid var(--tj-color-border-3);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_footer_widgets {
    padding-top: 86px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_footer_widgets {
    padding-top: 66px;
    padding-bottom: 70px;
  }
}
.h3_footer_widgets .blocks-shape {
  max-width: 400px;
  bottom: 0;
  right: -1px;
  background-color: var(--tj-color-theme-primary);
}
.h3_footer_widgets_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.h3_footer_widgets_wrap hr {
  opacity: 1;
  background-color: var(--tj-color-border-3);
  width: 1px;
  height: auto;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_footer_widgets_wrap .tj_footer_widget:first-child {
    margin-bottom: 40px;
  }
}
.h3_footer_widgets_wrap .tj_footer_widget .widget_title {
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_footer_widgets_wrap .tj_footer_widget.footer_socials {
    margin-bottom: 40px;
  }
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_socials .widget_title {
  margin-bottom: 24px;
}
.h3_footer_widgets_wrap .tj_footer_widget .newsletter_title {
  color: var(--tj-color-light-1);
  line-height: 1.16;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.h3_footer_widgets_wrap .tj_footer_widget .newsletter_title span {
  color: var(--tj-color-theme-primary);
}
.h3_footer_widgets_wrap .tj_footer_widget .tj_socials > li > a {
  border-color: var(--tj-color-border-3);
  color: var(--tj-color-light-1);
}
.h3_footer_widgets_wrap .tj_footer_widget .widget_title > span {
  color: var(--tj-color-text-body-2);
}
.h3_footer_widgets_wrap .tj_footer_widget.widget-nav-menu ul li:not(:last-child) {
  margin-bottom: 6px;
}
.h3_footer_widgets_wrap .tj_footer_widget.widget-nav-menu ul li > a {
  font-size: 20px;
}
.h3_footer_widgets_wrap .tj_footer_widget .tj_contact .contact_info {
  color: var(--tj-color-light-2);
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 4px;
}
.h3_footer_widgets_wrap .tj_footer_widget .tj_contact a.contact_info:hover {
  color: var(--tj-color-theme-primary);
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_info {
  max-width: 530px;
  width: 100%;
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_info .footer_subscription {
  max-width: 524px;
  margin-top: 18px;
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_info .tj_socials {
  margin-top: 40px;
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_contact {
  max-width: 320px;
  width: 100%;
}
.h3_footer_widgets_wrap .tj_footer_widget.footer_contact .tj_contact {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_footer_widgets_wrap .tj_footer_widget.footer_contact {
    max-width: 300px;
  }
}
.h3_footer_bottom {
  padding-top: 27px;
  padding-bottom: 27px;
  border-bottom: 1px solid var(--tj-color-border-3);
}
.h3_footer_bottom_wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_footer_bottom_wrap {
    flex-direction: column;
    gap: 18px;
  }
}
.h3_footer_large_text {
  font-weight: var(--tj-fw-sbold);
  font-size: 12.05vw;
  line-height: 0.95;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, var(--tj-color-light-1) 0%, var(--tj-color-theme-primary) 20%, var(--tj-color-light-1) 30%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
  margin-inline-start: -12px;
  margin-bottom: 0;
  text-wrap: nowrap;
  transition: all 0.3s ease-in-out;
}
.h3_footer_large_text_area {
  padding: 15px 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_footer_large_text_area {
    padding: 6px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_footer_large_text_area {
    padding: 10px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_footer_large_text_area {
    padding: 14px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_footer_large_text_area {
    padding: 17px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_footer_large_text_area {
    padding: 20px;
  }
}
@media (max-width: 575px) {
  .h3_footer_large_text_area {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_footer_large_text a {
    margin-inline-start: -7px;
  }
}
@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) {
  .h3_footer_large_text {
    font-size: 12.4vw;
    margin-inline-start: -4px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_footer_large_text {
    margin-inline-start: 4px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_footer_large_text {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_footer_large_text {
    margin-inline-start: -6px;
    font-size: 12.2vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_footer_large_text {
    margin-inline-start: 2px;
  }
}
@media (max-width: 575px) {
  .h3_footer_large_text {
    margin-inline-start: 14px;
  }
}

.tj-char {
  position: static !important;
}

/* !END:  Footer CSS */
.tj_icon_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tj_icon_list li {
  display: flex;
  align-items: start;
  gap: 6px;
}
.tj_icon_list li .icon {
  display: inline-flex;
  font-size: 18px;
  line-height: 1;
  margin-top: 3px;
  color: var(--tj-color-theme-primary);
}
.tj_icon_list li .icon i,
.tj_icon_list li .icon svg {
  display: inline-flex;
  line-height: 1;
}
.tj_icon_list li .icon svg {
  max-width: 18px;
  height: auto;
}
.tj_icon_list li .text {
  display: inline-flex;
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tj-color-heading-primary);
}
.tj_list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tj_list li {
  display: flex;
  align-items: start;
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.015em;
  padding-left: 16px;
  position: relative;
}
.tj_list li::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--tj-color-heading-primary);
}

.tj_user_profile {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  background-color: var(--tj-color-theme-bg-dark);
  padding: 12px 30px 12px 12px;
}
.tj_user_profile .avatar {
  max-width: 48px;
  width: 100%;
  background-color: var(--tj-color-theme-primary);
}
.tj_user_profile .avatar img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.tj_user_profile .name {
  font-weight: var(--tj-fw-sbold);
  font-size: 16px;
  line-height: 1.5;
  color: var(--tj-color-light-1);
}
.tj_user_profile .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.tj_user_profile .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.tj_user_profile .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}
.tj_user_profile:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj_user_profile:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_user_profile {
    padding: 12px 24px 12px 12px;
  }
  .tj_user_profile .avatar {
    max-width: 45px;
  }
}
@media (max-width: 575px) {
  .tj_user_profile {
    padding: 10px 20px 10px 10px;
  }
  .tj_user_profile .avatar {
    max-width: 40px;
  }
}
.tj_users_list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj_users_list li {
  width: 66px;
  height: 66px;
  background-color: var(--tj-color-theme-bg);
  border-radius: 50%;
  padding: 3px;
}
.tj_users_list li:not(:first-child) {
  margin-left: -25px;
}
.tj_users_list li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tj-author-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.tj-author-profile .author-img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 3px;
  overflow: hidden;
  background: var(--tj-color-theme-bg);
}
.tj-author-profile .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tj-author-profile .author-info .name {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
  margin-top: 10px;
}
.tj-author-profile .author-info .designation {
  color: var(--tj-color-theme-bg-dark-3);
}
@media (max-width: 575px) {
  .tj-author-profile .author-info .name {
    font-size: 22px;
  }
}

.tj_scroll_down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.tj_scroll_down .icon {
  display: inline-flex;
  font-size: 24px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  animation: bounce 3s infinite;
}
.tj_scroll_down .icon i,
.tj_scroll_down .icon svg {
  display: inline-flex;
  line-height: 1;
}
.tj_scroll_down .icon svg {
  max-width: 24px;
  height: auto;
}
.tj_scroll_down .text {
  display: inline-block;
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.8;
  color: var(--tj-color-theme-primary);
}
.tj_scroll_down .text span {
  color: var(--tj-color-heading-primary);
}

.tj_circle_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 136px;
  height: 136px;
  background-color: var(--tj-color-theme-bg-dark);
  border-radius: 50%;
  z-index: 1;
  font-size: 16px;
  color: var(--tj-color-light-1);
}
.tj_circle_btn i,
.tj_circle_btn svg {
  display: inline-flex;
  line-height: 1;
}
.tj_circle_btn svg {
  max-width: 16px;
  height: auto;
}
.tj_circle_btn .btn_text {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 85%;
  height: 85%;
  transform: translate(-50%, -50%);
  animation: rotateClock 20s infinite linear;
}
.tj_circle_btn:hover {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_circle_btn {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_circle_btn {
    width: 110px;
    height: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_circle_btn {
    width: 100px;
    height: 100px;
  }
}

@keyframes rotateClock {
  0% {
    -webkit-transform: rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.tj_counter .counter_number,
.tj_counter .counter_number .suffix > span {
  display: inline-flex;
  align-items: end;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--tj-color-heading-primary);
}
.tj_counter .counter_number span,
.tj_counter .counter_number .suffix > span span {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
.tj_counter .counter_number span.suffix,
.tj_counter .counter_number .suffix > span span.suffix {
  font-weight: var(--tj-fw-light);
  font-size: 64px;
  line-height: 1.3;
}
.tj_counter .counter_label {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin-top: 2px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_counter .counter_number,
  .tj_counter .counter_number .suffix > span {
    font-size: 100px;
  }
  .tj_counter .counter_number span.suffix,
  .tj_counter .counter_number .suffix > span span.suffix {
    font-size: 56px;
  }
}
@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_counter .counter_number,
  .tj_counter .counter_number .suffix > span {
    font-size: 80px;
  }
  .tj_counter .counter_number span.suffix,
  .tj_counter .counter_number .suffix > span span.suffix {
    font-size: 46px;
  }
}

.tj_feature_item {
  position: relative;
  width: 100%;
  background-color: var(--tj-color-theme-bg-2);
  padding: 36px 35px 56px 35px;
  min-height: 560px;
  max-height: 565px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
  z-index: 1;
  overflow: hidden;
}
.tj_feature_item .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  object-fit: cover;
}
.tj_feature_item.video {
  background-color: #bc001e;
}
.tj_feature_item.video .counter_number {
  color: var(--tj-color-light-1);
}
.tj_feature_item.video .counter_label {
  color: var(--tj-color-light-2);
}
.tj_feature_item.video .feature_text {
  color: var(--tj-color-light-1);
}
.tj_feature_item.video .bg_image {
  mix-blend-mode: multiply;
  transform: scale(1.1);
}
.tj_feature_item.image {
  padding: 0;
}
.tj_feature_item.image > img {
  width: 100%;
}
.tj_feature_item .feature_text {
  color: var(--tj-color-heading-primary);
  text-align: right;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_feature_item {
    min-height: 430px;
    max-height: 430px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_feature_item {
    min-height: 400px;
    max-height: 400px;
    padding: 36px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_feature_item {
    min-height: 400px;
    max-height: 400px;
    padding: 36px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_feature_item {
    min-height: 350px;
    max-height: 350px;
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .tj_feature_item {
    min-height: 300px;
    max-height: 300px;
    padding: 30px 20px;
  }
  .tj_feature_item img {
    height: 100%;
    object-fit: cover;
    transform: none !important;
  }
}

/**----------------------------------------
START: Section Heading CSS
----------------------------------------*/
.section_heading .sec_title {
  margin-top: 16px;
}
.section_heading_center {
  text-align: center;
}
.section_heading_inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.sec_subtitle {
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  margin: 0;
}
.sec_subtitle > span {
  color: var(--tj-color-heading-primary);
}
.sec_title {
  text-transform: uppercase;
  margin: 0;
}

.section-divider {
  border-top: 1px solid var(--tj-color-border-1);
}

/**----------------------------------------
START: Paginations CSS
----------------------------------------*/
.tj-pagination {
  margin-top: 50px;
}
.tj-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.tj-pagination ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--tj-color-border-1);
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.tj-pagination ul li .page-numbers i {
  line-height: 1;
  color: var(--tj-color-heading-primary);
  transition: all 0.5s;
}
.tj-pagination ul li .page-numbers:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-primary);
}
.tj-pagination ul li .page-numbers:hover i {
  color: var(--tj-color-common-white);
}
.tj-pagination ul li .page-numbers.current {
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-bg-dark);
}
.tj-pagination ul li .page-numbers.current i {
  color: var(--tj-color-common-white);
}
.tj-pagination ul li .page-numbers.next {
  font-size: 22px;
}

/* !END: Paginations CSS */
/**----------------------------------------
START: Tj Filter CSS
----------------------------------------*/
.tj_filter_btn_group {
  padding: 10px;
  border-style: solid;
  border-color: var(--tj-color-border-1);
  border-width: 1px;
  border-radius: 1000px;
  justify-content: center;
}
@media (max-width: 575px) {
  .tj_filter_btn_group {
    gap: 3px;
  }
}
.tj_filter_btn_group .tj_filter_btn {
  padding: 12px 20px;
  font-weight: var(--tj-fw-sbold);
  border: 0;
  background-color: var(--tj-color-theme-bg-2);
  color: var(--tj-color-heading-primary);
}
@media (max-width: 575px) {
  .tj_filter_btn_group .tj_filter_btn {
    padding: 10px 18px;
  }
}
.tj_filter_btn_group .tj_filter_btn:hover, .tj_filter_btn_group .tj_filter_btn.active {
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-light-1);
}

/* !END: Tj Filter CSS */
/**----------------------------------------
START: Hero CSS
----------------------------------------*/
.h1-hero-section {
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 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) {
  .h1-hero-section {
    position: relative;
    transform: none !important;
  }
}
.h1_hero_content_wrap {
  position: relative;
  height: 100vh;
  display: flex;
  padding-bottom: 60px;
  flex-direction: column;
  justify-content: space-between;
}
.h1_hero_content_wrap .hero_title {
  max-width: 1020px;
  width: 100%;
  text-align: right;
  margin: 0;
}
.h1_hero_content_wrap .hero_top_content .h1_hero_shape_animation {
  margin-right: -100px;
  margin-bottom: 0;
}
.h1_hero_content_wrap .hero_top_content .hero_title {
  margin-top: 170px;
  margin-bottom: 110px;
}
.h1_hero_content_wrap .bottom_left_content {
  max-width: 392px;
  width: 100%;
}
.h1_hero_content_wrap .bottom_left_content .desc {
  margin-top: 16px;
}
.h1_hero_content_wrap .bottom_left_content .hero_buttons {
  margin-top: 23px;
  gap: 10px;
}
.h1_hero_content_wrap .bottom_left_content .hero_buttons .tj_bordered_btn {
  padding: 15px 29px;
}
.h1_hero_content_wrap .hero_bottom_content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .h1_hero_content_wrap .hero_title {
    max-width: 935px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_hero_content_wrap .hero_title {
    max-width: 850px;
  }
  .h1_hero_content_wrap .hero_top_content .hero_title {
    margin-top: 140px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_hero_content_wrap {
    min-height: 800px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_hero_content_wrap .hero_title {
    max-width: 685px;
  }
  .h1_hero_content_wrap .hero_top_content .h1_hero_shape_animation {
    margin-right: 0;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .h1_hero_content_wrap .hero_top_content .hero_title {
    margin-top: 140px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_hero_content_wrap .hero_title {
    max-width: 520px;
  }
  .h1_hero_content_wrap .hero_top_content .h1_hero_shape_animation {
    margin-right: 0;
    margin-top: 40px;
    margin-bottom: -40px;
  }
  .h1_hero_content_wrap .hero_top_content .hero_title {
    margin-top: 140px;
    margin-bottom: 60px;
  }
  .h1_hero_content_wrap .hero_bottom_content .tj_scroll_down {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_hero_content_wrap {
    min-height: auto;
    padding-bottom: 30px;
  }
  .h1_hero_content_wrap .hero_title {
    max-width: 625px;
    margin-left: auto;
  }
  .h1_hero_content_wrap .hero_top_content {
    flex-direction: column-reverse;
  }
  .h1_hero_content_wrap .hero_top_content .hero_title {
    margin-top: 140px;
    margin-bottom: 0;
  }
  .h1_hero_content_wrap .hero_top_content .h1_hero_shape_animation {
    margin-right: auto;
    margin-top: -30px;
    margin-bottom: -50px;
  }
  .h1_hero_content_wrap .bottom_left_content {
    max-width: 100%;
  }
  .h1_hero_content_wrap .hero_bottom_content {
    grid-template-columns: auto;
  }
  .h1_hero_content_wrap .hero_bottom_content .tj_scroll_down {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_hero_content_wrap {
    min-height: auto;
    padding-bottom: 35px;
  }
  .h1_hero_content_wrap .hero_title {
    max-width: 450px;
    margin-left: auto;
  }
  .h1_hero_content_wrap .hero_top_content {
    flex-direction: column-reverse;
  }
  .h1_hero_content_wrap .hero_top_content .hero_title {
    margin-top: 110px;
    margin-bottom: 0;
  }
  .h1_hero_content_wrap .hero_top_content .h1_hero_shape_animation {
    margin-right: auto;
    margin-top: -45px;
    margin-bottom: -40px;
  }
  .h1_hero_content_wrap .bottom_left_content {
    max-width: 100%;
  }
  .h1_hero_content_wrap .bottom_left_content .hero_buttons .tj_bordered_btn {
    padding: 15px;
  }
  .h1_hero_content_wrap .hero_bottom_content {
    grid-template-columns: auto;
  }
  .h1_hero_content_wrap .hero_bottom_content .tj_scroll_down {
    display: none;
  }
}
@media (max-width: 575px) {
  .h1_hero_content_wrap .hero_title {
    max-width: 360px;
    margin-left: auto;
  }
}
.h1_hero_shape_animation {
  background-color: var(--tj-color-theme-bg);
  display: inline-flex;
  max-width: 620px;
  width: 100%;
}
.h1_hero_shape_animation img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_hero_shape_animation {
    max-width: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_hero_shape_animation {
    max-width: 450px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_hero_shape_animation {
    max-width: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_hero_shape_animation {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}
.h1_hero_video {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  max-height: 100%;
  overflow: hidden;
  will-change: transform;
}
.h1_hero_video > video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
  will-change: width, height;
}
.h1_hero_video .tj_circle_btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_hero_video {
    width: 390px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_hero_video {
    width: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_hero_video {
    width: 100%;
  }
}
.h1-video-section {
  min-height: 200vh;
  margin-bottom: 200px;
}
.h1_hero_video_wrap {
  display: flex;
  align-items: end;
  justify-content: end;
  position: relative;
  height: 100vh;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_hero_video_wrap {
    min-height: 800px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-video-section {
    min-height: auto;
    margin-bottom: 0;
  }
  .h1_hero_video_wrap {
    height: auto;
    padding-top: 30px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-video-section {
    min-height: auto;
    margin-bottom: 0;
  }
  .h1_hero_video_wrap {
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.h1HeroAnimation .hero_title,
.h1HeroAnimation .h1_hero_shape_animation,
.h1HeroAnimation .bottom_left_content,
.h1HeroAnimation .h1_hero_video,
.h1HeroAnimation .tj_scroll_down {
  opacity: 0;
}
.h1HeroAnimation.activeAnimation .hero_title,
.h1HeroAnimation.activeAnimation .h1_hero_shape_animation,
.h1HeroAnimation.activeAnimation .bottom_left_content,
.h1HeroAnimation.activeAnimation .h1_hero_video,
.h1HeroAnimation.activeAnimation .tj_scroll_down {
  opacity: 1;
}

.h2-hero-section {
  background-color: var(--tj-color-theme-bg-dark);
  padding-top: 240px;
  overflow: hidden;
  width: 100%;
  min-height: 930px;
  position: relative;
  left: 0;
  top: 0;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-hero-section {
    min-height: 863px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-section {
    padding-top: 180px;
    min-height: 770px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-section {
    min-height: 718px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section {
    min-height: 850px;
    padding-top: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section {
    padding-top: 85px;
  }
}
.h2-hero-section .line {
  position: absolute;
  top: 0;
  left: 60px;
  width: 1px;
  height: 100%;
  background: var(--tj-color-border-3);
  z-index: -1;
}
@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) {
  .h2-hero-section .line {
    left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .line {
    display: none;
  }
}
.h2-hero-section .line-2 {
  left: auto;
  right: 60px;
}
@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) {
  .h2-hero-section .line-2 {
    right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .line-2 {
    display: block;
    height: 1px;
    width: 100%;
    right: 0;
    top: auto;
    bottom: 13%;
  }
}
.h2-hero-section .line-3 {
  left: 50%;
  transform: translateX(-50%);
}
.h2-hero-section .line-4 {
  width: 100%;
  height: 1px;
  top: 49%;
  left: 0;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-section .line-4 {
    top: 44%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .line-4 {
    display: block;
    top: 44%;
  }
}
.h2-hero-section .plus-shape {
  display: inline-flex;
  position: absolute;
  left: 53px;
  top: 48%;
  line-height: 1;
}
@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) {
  .h2-hero-section .plus-shape {
    left: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-section .plus-shape {
    top: 43%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .plus-shape {
    display: none;
  }
}
.h2-hero-section .plus-shape-2 {
  left: auto;
  right: 53px;
}
@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) {
  .h2-hero-section .plus-shape-2 {
    right: 22px;
  }
}
.h2-hero-section .plus-shape-3 {
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-section .plus-shape-3 {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .plus-shape-3 {
    display: block;
    top: 43%;
  }
}
.h2-hero-section .tj_gallery {
  max-width: 320px;
  width: 100%;
  height: 225px;
  margin: 80px auto 0;
}
.h2-hero-section .tj_gallery .gallery_img {
  max-width: 118px;
  left: calc(var(--i) * 67px);
  bottom: calc(var(--i) * 30px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-section .tj_gallery {
    margin: 40px auto 0;
  }
}
.h2-hero-section .fade-in,
.h2-hero-section .tj-fade {
  opacity: 0;
}

.h2-hero-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 0 30px;
  position: relative;
  z-index: 100;
}
.h2-hero-content-wrap .hero_title {
  font-size: 28.2vw;
  line-height: 0.7;
  letter-spacing: -0.06em;
  color: var(--tj-color-theme-primary);
  margin-top: 115px;
  margin-bottom: 0;
  margin-left: -65px;
  text-align: center;
  overflow: hidden;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-hero-content-wrap .hero_title {
    font-size: 27.8vw;
    margin-left: -55px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-hero-content-wrap .hero_title {
    font-size: 28.5vw;
    margin-left: -50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-content-wrap .hero_title {
    margin-left: -40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-content-wrap .hero_title {
    margin-top: 60px;
    margin-left: -40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2-hero-content-wrap .hero_title {
    margin-left: -30px;
  }
}
@media (max-width: 575px) {
  .h2-hero-content-wrap .hero_title {
    font-size: 28vw;
    margin-left: -15px;
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content-wrap {
    padding-top: 50px;
    padding-bottom: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-content {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-content {
    padding: 0 10px;
    gap: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content {
    flex-wrap: wrap;
    padding: 0 10px;
  }
}
@media (max-width: 575px) {
  .h2-hero-content {
    padding: 0;
  }
}
.h2-hero-content .desc {
  color: var(--tj-color-light-2);
  max-width: 445px;
  width: 100%;
  line-height: 1.333;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.02em;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-content .desc {
    max-width: 410px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-hero-content .desc {
    max-width: 330px;
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content .desc {
    max-width: 380px;
    font-size: 18px;
  }
}
.h2-hero-content .tj_marquee_btn .text_btn {
  max-width: 156px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content .hero-left {
    min-height: 250px;
  }
}
.h2-hero-content .hero-right {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-hero-content .hero-right {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .h2-hero-content .hero-right {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content .hero-right {
    width: 100%;
    padding-left: 0;
  }
}
.h2-hero-content .tj_icon_list li .text {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-hero-content .tj_icon_list {
    margin-bottom: 20px;
  }
}
.h2-hero-content .tj_socials > li > a {
  border-color: rgba(252, 245, 234, 0.15);
  color: var(--tj-color-light-1);
}

.content__img {
  max-width: 280px;
  width: 100%;
  aspect-ratio: 280/320;
  position: absolute;
  top: 200px;
  left: 0;
  opacity: 0;
  overflow: hidden;
  will-change: transform, opacity;
  pointer-events: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .content__img {
    max-width: 200px;
  }
}
.content__img-inner {
  background-position: 50% 50%;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  top: -10px;
  left: -10px;
}

.h3-hero-section {
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section {
    position: relative;
    width: inherit;
  }
}
.h3-hero-section .tj-bg-image-absolute {
  background-color: var(--tj-color-theme-bg-dark-4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-hero-section .tj-bg-image-absolute {
    background-position: 92%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-hero-section .tj-bg-image-absolute {
    background-position: 33%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .tj-bg-image-absolute {
    background-position: 48.5%;
  }
}
.h3-hero-section .tj-fade {
  opacity: 0;
}
.h3-hero-section .hero_title {
  font-size: 128px;
  letter-spacing: -0.03em;
  line-height: 0.953;
  text-transform: uppercase;
  color: var(--tj-color-light-1);
  margin-inline-start: -8px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3-hero-section .hero_title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3-hero-section .hero_title {
    font-size: 90px;
    margin-inline-start: -4px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-hero-section .hero_title {
    font-size: 70px;
    margin-inline-start: -4px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .hero_title {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .hero_title {
    font-size: 50px;
    margin-inline-start: -2px;
  }
}
.h3-hero-section .category {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
  font-weight: var(--tj-fw-regular);
  align-items: center;
}
.h3-hero-section .category-wrap {
  max-width: 267px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .category-wrap {
    margin-top: 100px;
  }
}
.h3-hero-section .category:has(i) {
  width: 32px;
  height: 32px;
  padding: 0;
  justify-content: center;
}
.h3-hero-section .category:has(i):hover i {
  animation-play-state: paused;
}
.h3-hero-section .category .flip-text {
  overflow: hidden;
  display: inline-flex;
  position: relative;
}
.h3-hero-section .category .flip-text .front {
  display: block;
  transition: all 0.5s;
}
.h3-hero-section .category .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}
.h3-hero-section .category:hover {
  background-color: transparent;
  border-color: var(--tj-color-light-1);
}
.h3-hero-section .category:hover .flip-text .front {
  transform: translateY(-150%);
}
.h3-hero-section .category:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.h3-hero-section .desc {
  max-width: 344px;
  margin-top: 11px;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--tj-color-light-1);
  margin-bottom: 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) {
  .h3-hero-section .desc {
    margin-top: 0;
  }
}
.h3-hero-section .tj_icon_btn.rounded_icon {
  color: var(--tj-color-light-1);
}
.h3-hero-section .tj_icon_btn.rounded_icon .icon_btn {
  background-color: var(--tj-color-light-1);
  color: var(--tj-color-heading-primary);
}
.h3-hero-section .tj_icon_btn.rounded_icon .flip-text::after {
  background-color: var(--tj-color-light-1);
}
.h3-hero-section .trusted_features {
  max-width: 347px;
  margin-inline-start: auto;
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .trusted_features {
    max-width: 347px;
    margin-top: 100px;
  }
}
.h3-hero-section .tj_users_list {
  margin-bottom: 22px;
}
.h3-hero-section .tj_users_list li {
  width: 64px;
  height: 64px;
  padding: 2px;
}
.h3-hero-section .trusted_text {
  color: var(--tj-color-light-1);
  font-family: var(--tj-ff-body);
}
.h3-hero-section .trusted_text span {
  color: var(--tj-color-light-1);
}
.h3-hero-section .hero_content {
  display: flex;
  min-height: 100vh;
  justify-content: space-between;
}
.h3-hero-section .hero_content_default {
  padding-top: 141px;
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h3-hero-section .hero_content_left {
  width: 64.2%;
}
.h3-hero-section .hero_content_right {
  width: 35.8%;
  backdrop-filter: blur(40px);
  background: var(--tj-color-theme-bg-3);
  margin-right: -15px;
  overflow: hidden;
}
.h3-hero-section .hero_content_right.container-space {
  padding-inline-start: 60px;
  padding-inline-end: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3-hero-section .hero_content_right.container-space {
    padding-inline-start: 40px;
    padding-inline-end: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-hero-section .hero_content_right.container-space {
    padding-inline-start: 30px;
    padding-inline-end: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-hero-section .hero_content_right.container-space {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3-hero-section .hero_content_right.container-space {
    padding-inline-start: 5px;
    padding-inline-end: 5px;
  }
}
@media (max-width: 575px) {
  .h3-hero-section .hero_content_right.container-space {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3-hero-section .hero_content_left {
    width: 60%;
  }
  .h3-hero-section .hero_content_right {
    width: 40%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-hero-section .hero_content_left {
    width: 55%;
  }
  .h3-hero-section .hero_content_right {
    width: 45%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .hero_content {
    flex-wrap: wrap;
  }
  .h3-hero-section .hero_content_left {
    width: 100%;
    padding-top: 170px;
    padding-bottom: 16px;
  }
  .h3-hero-section .hero_content_right {
    width: 100%;
    background: transparent;
    margin-right: 0;
    backdrop-filter: inherit;
    padding-top: 0;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-hero-section .hero_content_left {
    padding-top: 150px;
  }
  .h3-hero-section .hero_content_right {
    width: 100%;
    background: transparent;
    margin-right: 0;
    backdrop-filter: inherit;
    padding-top: 0;
    padding-bottom: 26px;
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}

/* !END: Hero CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.h1-about-section {
  padding-top: 60px;
  padding-bottom: 100px;
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-about-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h1_about_content_wrap {
  position: relative;
  z-index: 1;
}
.h1_about_content_wrap .section_heading .sec_title {
  max-width: 1315px;
  width: 100%;
  margin-top: 0;
}
.h1_about_content_wrap .about_bottom_content {
  max-width: 956px;
  width: 100%;
  display: flex;
  align-items: center;
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 1px solid var(--tj-color-border-1);
  padding-top: 52px;
  padding-bottom: 60px;
  margin-left: calc(33.333% + 10px);
  margin-top: 84px;
}
.h1_about_content_wrap .about_bottom_content .desc {
  max-width: 475px;
  width: 100%;
}
.h1_about_content_wrap .about_bottom_content .about_btn {
  margin-top: 23px;
}
.h1_about_content_wrap .about_bottom_content .trusted_features {
  max-width: 310px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-left: 60px;
  padding-left: 61px;
}
.h1_about_content_wrap .about_bottom_content .trusted_features::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--tj-color-border-1);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.h1_about_content_wrap .about_bottom_content .trusted_text {
  margin-top: 20px;
}
.h1_about_content_wrap .about_img {
  display: inline-flex;
  max-width: 230px;
  width: 100%;
  position: absolute;
  left: 8%;
  top: 35%;
  z-index: -1;
}
.h1_about_content_wrap .about_img img {
  width: 100%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 1280px;
  }
  .h1_about_content_wrap .about_img {
    left: 0%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 1060px;
  }
  .h1_about_content_wrap .about_bottom_content {
    margin-left: auto;
  }
  .h1_about_content_wrap .about_img {
    left: 0%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 1020px;
  }
  .h1_about_content_wrap .about_bottom_content {
    margin-left: auto;
  }
  .h1_about_content_wrap .about_img {
    max-width: 150px;
    left: 0%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content {
    margin-left: 0;
  }
  .h1_about_content_wrap .about_img {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content {
    margin-left: 0;
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .h1_about_content_wrap .about_bottom_content .desc_wrap {
    max-width: calc(100% - 290px);
    width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content .desc {
    max-width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content .trusted_features {
    max-width: 260px;
    padding-left: 31px;
    margin-left: 30px;
  }
  .h1_about_content_wrap .about_img {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_about_content_wrap .section_heading .sec_title {
    max-width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content {
    margin-left: 0;
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    max-width: 100%;
    flex-wrap: wrap;
  }
  .h1_about_content_wrap .about_bottom_content .desc {
    max-width: 100%;
  }
  .h1_about_content_wrap .about_bottom_content .trusted_features {
    max-width: 280px;
    padding-left: 0;
    margin-left: 0;
    margin-top: 30px;
  }
  .h1_about_content_wrap .about_bottom_content .trusted_features::before {
    display: none;
  }
  .h1_about_content_wrap .about_img {
    display: none;
  }
}

.h2-about-section {
  padding-top: 100px;
  padding-bottom: 140px;
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h2-about-header {
  max-width: 1335px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.h2-about-header .section_heading .sec_title {
  letter-spacing: -0.02em;
}
.h2-about-header .section_heading .sec_title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-about-header {
    max-width: 1120px;
  }
}
.h2-about-content-wrap {
  padding-top: 80px;
}
.h2-about-content-wrap .tj-author-profile .author-img {
  width: 78px;
  height: 78px;
}
.h2-about-content-wrap .about-content-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 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) {
  .h2-about-content-wrap .about-content-inner {
    flex-wrap: wrap;
    padding-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .about-content-inner {
    gap: 20px;
  }
}
.h2-about-content-wrap .about-left {
  max-width: 400px;
  width: 100%;
  text-align: end;
}
.h2-about-content-wrap .about-left .counter {
  font-size: 180px;
  line-height: 0.7;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-about-content-wrap .about-left .counter {
    font-size: 164px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-left .counter {
    font-size: 145px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .about-left .counter {
    font-size: 100px;
    margin-bottom: 20px;
  }
}
.h2-about-content-wrap .about-left .text {
  font-size: 24px;
  margin-bottom: 0;
}
@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), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-left .text {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .about-left .text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-left {
    order: 1;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-left {
    max-width: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .about-left {
    max-width: 370px;
    text-align: start;
  }
}
.h2-about-content-wrap .about-right {
  max-width: 425px;
  width: 100%;
}
.h2-about-content-wrap .about-right .desc {
  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) {
  .h2-about-content-wrap .about-right .desc {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-right {
    order: 2;
  }
}
@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), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap .about-right {
    max-width: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .about-right {
    max-width: 100%;
  }
}
.h2-about-content-wrap .image-wrapper {
  width: 300px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.h2-about-content-wrap .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.h2-about-content-wrap .image-wrapper .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-about-content-wrap .image-wrapper {
    width: 240px;
    height: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-about-content-wrap .image-wrapper {
    order: 3;
    width: 800px;
    margin: 20px auto 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) {
  .h2-about-content-wrap .image-wrapper {
    order: 3;
    width: 100%;
    height: 400px;
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap .image-wrapper {
    order: inherit;
    height: 300px;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-about-content-wrap {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-about-content-wrap {
    padding-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-about-content-wrap {
    padding-top: 30px;
  }
}

.video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.video-btn .video-icon {
  color: var(--tj-color-light-1);
  background: var(--tj-color-theme-primary);
  font-size: 15px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
}
.video-btn .video-icon i {
  margin-left: 2px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .video-btn .video-icon {
    width: 62px;
    height: 62px;
  }
}
.video-btn .video-text {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.03em;
}
.video-btn:hover {
  color: var(--tj-color-light-1);
}

.h3_about_section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  padding-top: 130px;
  padding-bottom: 130px;
  display: flex;
  align-items: center;
  z-index: 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) {
  .h3_about_section {
    min-height: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_about_section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_about_section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h3_about_content_wrap {
  position: relative;
  z-index: 1;
}
.h3_about_content_wrap .section_heading .sec_title {
  width: 100%;
  margin-top: -8px;
  max-width: 1038px;
}
.h3_about_content_wrap .section_heading .sec_title .title-img-anim {
  margin-top: -10px;
  display: inline-block;
  width: 194px;
  height: 79px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_about_content_wrap .section_heading .sec_title .title-img-anim {
    width: 154px;
    height: 66px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about_content_wrap .section_heading .sec_title .title-img-anim {
    width: 154px;
    height: 64px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about_content_wrap .section_heading .sec_title .title-img-anim {
    width: 134px;
    height: 56px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_about_content_wrap .section_heading .sec_title .title-img-anim {
    width: 80px;
    height: 39px;
  }
}
.h3_about_content_wrap .section_heading .sec_title img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin-top: -10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about_content_wrap .section_heading .sec_title {
    font-size: 50px;
  }
  .h3_about_content_wrap .section_heading .sec_title img {
    margin-top: -5px;
  }
}
@media (max-width: 575px) {
  .h3_about_content_wrap .section_heading .sec_title {
    font-size: 31px;
  }
  .h3_about_content_wrap .section_heading .sec_title img {
    margin-top: -1px;
  }
}
.h3_about_counter_wrap {
  max-width: 284px;
  margin-top: 14px;
}
.h3_about_counter_wrap .counter {
  font-size: 120px;
  line-height: 1;
  margin-bottom: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about_counter_wrap .counter {
    font-size: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about_counter_wrap .counter {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_about_counter_wrap .counter {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_about_counter_wrap .counter {
    font-size: 60px;
  }
}
.h3_about_counter_wrap .text {
  font-size: 20px;
  letter-spacing: -0.02em;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_about_counter_wrap .text {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.h3_about_right {
  max-width: 1190px;
  max-width: 1190px;
  width: 100%;
  margin-inline-start: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h3_about_right {
    max-width: 1030px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_about_right {
    max-width: 876px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_about_right {
    max-width: 618px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_about_right {
    max-width: 100%;
  }
}
.h3_about_action {
  margin-top: 20px;
}

.tj-about-section {
  padding-bottom: 120px;
}
.tj-about-section .sec_title {
  margin-top: 0;
  margin-bottom: 45px;
}
@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-about-section .sec_title {
    margin-top: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-about-section .sec_title {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section .sec_title {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-about-section .sec_title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-about-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section {
    padding-bottom: 70px;
  }
}

.about_text {
  max-width: 1145px;
  width: 100%;
}
.about_text span:not(.space) {
  color: var(--tj-color-light-2);
}
.about_text .space {
  padding-inline-start: 235px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_text .space {
    padding-inline-start: 180px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_text .space {
    padding-inline-start: 140px;
  }
}
@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_text .space {
    padding-inline-start: 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about_text {
    max-width: 1020px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_text {
    max-width: 920px;
  }
}

.about_gallery_wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 15px;
  margin-top: 85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_gallery_wrap {
    margin-top: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_gallery_wrap {
    margin-top: 45px;
    gap: 20px;
    padding: 0 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_gallery_wrap {
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
    padding: 0;
  }
}
.about_gallery_item {
  width: 21%;
  height: 375px;
  transition: all 0.6s ease-in-out;
}
.about_gallery_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about_gallery_item.active {
  width: 32%;
  height: 650px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about_gallery_item.active {
    height: 530px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_gallery_item.active {
    height: 480px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_gallery_item.active {
    height: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_gallery_item.active {
    height: 260px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_gallery_item.active {
    width: calc(50% - 8px);
    height: auto;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about_gallery_item {
    height: 310px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_gallery_item {
    height: 280px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_gallery_item {
    height: 210px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_gallery_item {
    height: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_gallery_item {
    width: calc(50% - 8px);
    height: auto;
  }
}

.tj-future-goal-section {
  padding-top: 120px;
  padding-bottom: 160px;
  border-top: 1px solid var(--tj-color-border-1);
}
.tj-future-goal-section .section_heading {
  margin-bottom: 84px;
}
.tj-future-goal-section .section_heading .sec_title {
  max-width: 885px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj-future-goal-section .section_heading .sec_title {
    max-width: 730px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-future-goal-section .section_heading .sec_title {
    max-width: 710px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-future-goal-section .section_heading {
    margin-bottom: 54px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-future-goal-section .section_heading {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-future-goal-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-future-goal-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-future-goal-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.future-goal-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .future-goal-wrap {
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-wrap {
    gap: 40px;
  }
}
.future-goal-content {
  max-width: 550px;
  width: 100%;
}
.future-goal-content-wrap {
  width: 50%;
  flex: 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) {
  .future-goal-content-wrap {
    width: 100%;
    flex: auto;
  }
}
.future-goal-content .desc {
  font-size: 18px;
  margin-bottom: 39px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .future-goal-content .desc {
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-content .desc {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
.future-goal-content .tj_counter .counter_number {
  font-size: 72px;
}
.future-goal-content .tj_counter .counter_number .suffix {
  font-size: 72px;
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .future-goal-content .tj_counter .counter_number .suffix {
    font-size: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-content .tj_counter .counter_number .suffix {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .future-goal-content .tj_counter .counter_number {
    font-size: 66px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-content .tj_counter .counter_number {
    font-size: 60px;
  }
}
.future-goal-content .tj_counter .counter_label {
  margin-top: 6px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-content .tj_counter .counter_label {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .future-goal-content {
    max-width: 445px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .future-goal-content {
    max-width: 385px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .future-goal-content {
    max-width: 520px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-content {
    max-width: 100%;
  }
}
.future-goal-item {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--tj-color-border-1);
  padding: 30px 0;
}
.future-goal-item:last-child {
  border-bottom: 1px solid var(--tj-color-border-1);
}
.future-goal-item .subtitle {
  font-weight: var(--tj-fw-sbold);
}
.future-goal-item .subtitle span {
  color: var(--tj-color-light-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .future-goal-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.future-goal-img-wrap {
  width: 50%;
  flex: 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) {
  .future-goal-img-wrap {
    width: 100%;
    flex: auto;
  }
}
.future-goal-img {
  height: 940px;
  overflow: hidden;
}
.future-goal-img img {
  width: 100%;
  height: 130%;
  object-fit: cover;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .future-goal-img {
    height: 1020px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .future-goal-img {
    height: 1040px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .future-goal-img {
    height: 560px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .future-goal-img {
    height: 400px;
  }
  .future-goal-img img {
    height: 150%;
    object-position: 50% 20%;
  }
}
@media (max-width: 575px) {
  .future-goal-img {
    height: 300px;
  }
  .future-goal-img img {
    height: 100%;
    transform: none !important;
  }
}

/* !END: About CSS */
/**----------------------------------------
START: Feature CSS
----------------------------------------*/
.h1-features-section {
  position: relative;
  background-color: var(--tj-color-theme-bg);
  z-index: 2;
  margin-top: -2px;
  padding-bottom: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-features-section {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-features-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-features-section {
    padding-bottom: 70px;
  }
}
.h1_features_wrap {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr 1fr 2fr;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_features_wrap {
    grid-template-columns: 1fr 1fr;
  }
  .h1_features_wrap .tj_feature_item:last-child {
    grid-column: 1/3;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_features_wrap {
    grid-template-columns: auto;
  }
}

/**----------------------------------------
START: Process CSS
----------------------------------------*/
.h1-process-section {
  position: relative;
  background-color: var(--tj-color-theme-bg);
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-process-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .h1-process-section .mobile_button {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-process-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .h1-process-section .mobile_button {
    margin-top: 40px;
  }
}
.h1_process_wrapper .section_heading .sec_title {
  max-width: 655px;
  width: 100%;
}
.h1_process_wrapper .section_heading_inner {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_process_wrapper .section_heading .sec_title {
    max-width: 590px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_process_wrapper .section_heading .sec_title {
    max-width: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_process_wrapper .section_heading .sec_title {
    max-width: 520px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_process_wrapper .section_heading {
    margin-bottom: 50px;
  }
  .h1_process_wrapper .section_heading .sec_title {
    max-width: 510px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_process_wrapper .section_heading {
    margin-bottom: 40px;
  }
  .h1_process_wrapper .section_heading .sec_title {
    max-width: 400px;
  }
}
.h1_process_wrap {
  position: relative;
  min-height: 100vh;
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  align-content: center;
  gap: 30px;
  grid-template-columns: 1fr 35.9% 580px;
  z-index: 1;
}
.h1_process_wrap .process_section_left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}
.h1_process_wrap .h1_process_images {
  grid-column: 2;
}
.h1_process_wrap .h1_process_items {
  grid-column: 3;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.h1_process_no {
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 120px;
  line-height: 1;
  height: 120px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  z-index: 1;
  display: inline-flex;
  position: relative;
  overflow: hidden;
  margin-bottom: -20px;
}
.h1_process_images {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}
.h1_process_images .tj_process_img {
  width: 100%;
  height: 100%;
}
.h1_process_images .tj_process_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_process_wrap {
    grid-template-columns: 1fr 520px 500px;
  }
  .h1_process_no {
    font-size: 100px;
    height: 100px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_process_wrap {
    grid-template-columns: 1fr 359px 450px;
  }
  .h1_process_no {
    font-size: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_process_wrap {
    grid-template-columns: 1fr 1fr;
  }
  .h1_process_wrap .h1_process_images {
    grid-column: 1/2;
  }
  .h1_process_wrap .h1_process_items {
    grid-column: 2/3;
  }
  .h1_process_no {
    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) {
  .h1_process_wrap {
    grid-template-columns: unset;
    min-height: auto;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .h1_process_wrap .h1_process_no,
  .h1_process_wrap .h1_process_images {
    display: none;
    grid-column: unset;
  }
  .h1_process_wrap .h1_process_items {
    grid-column: unset;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}

.tj_process_item {
  position: relative;
  background-color: var(--tj-color-theme-bg-2);
  z-index: 1;
  overflow: hidden;
}
.tj_process_item .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  object-fit: cover;
}
.tj_process_item.video {
  background-color: #bc001e;
}
.tj_process_item.video .bg_image {
  mix-blend-mode: multiply;
  transform: scale(1.1);
}
.tj_process_item.video .process_title, .tj_process_item.video .process_desc {
  color: var(--tj-color-light-1);
}
.tj_process_item.video .process_bottom {
  border-color: var(--tj-color-border-3);
}
.tj_process_item.video .step_count {
  color: var(--tj-color-light-1);
}
.tj_process_item.video .step_tag {
  color: var(--tj-color-light-2);
}
.tj_process_item.video .step_tag {
  border-color: var(--tj-color-border-3);
}
.tj_process_item.video .sec_subtitle span {
  color: var(--tj-color-light-1);
}
.tj_process_item .process_title {
  font-weight: var(--tj-fw-sbold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  margin: 0;
}
.tj_process_item .process_desc {
  margin-top: 15px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.tj_process_item .process_top {
  padding: 60px 40px 70px 40px;
}
.tj_process_item .process_bottom {
  border-top: 1px solid var(--tj-color-border-2);
  padding: 60px 40px 60px 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
.tj_process_item .process_bottom .step_tags {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
  padding-top: 15px;
}
.tj_process_item .process_bottom .step_tags .sec_subtitle {
  margin-bottom: 16px;
}
.tj_process_item .step_count {
  display: inline-flexv;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.tj_process_item .step_tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--tj-fw-regular);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  background-color: transparent;
  color: var(--tj-color-text-body);
  border: 1px solid var(--tj-color-border-2);
  border-radius: 50px;
  padding: 3px 9px;
}
.tj_process_item .step_taga:hover {
  border-color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.tj_process_item_2 {
  background-color: var(--tj-color-theme-bg-2);
}
.tj_process_item_2 .process_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.tj_process_item_2 .process_no {
  display: inline-flex;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  z-index: 1;
}
.tj_process_item_2 .process_img {
  max-width: 240px;
  width: 100%;
}
.tj_process_item_2 .process_title {
  font-weight: var(--tj-fw-sbold);
  line-height: 40px;
  letter-spacing: -0.015em;
  color: var(--tj-color-heading-primary);
  margin: 0;
}
.tj_process_item_2 .process_desc {
  margin-top: 23px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.tj_process_item_2 .process_top {
  padding: 30px 30px 33px 30px;
}
.tj_process_item_2 .process_bottom {
  border-top: 1px solid var(--tj-color-border-2);
  padding: 33px 40px 30px 40px;
}
.tj_process_item_2 .process_bottom .step_tags {
  max-width: 350px;
  width: 100%;
}
.tj_process_item_2 .process_bottom .step_tags .sec_subtitle {
  margin-bottom: 22px;
}
.tj_process_item_2 .process_bottom .step_tags .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tj_process_item_2 .process_bottom .step_tags .tags .category {
  background-color: var(--tj-color-theme-bg);
  border-color: var(--tj-color-theme-bg);
  color: var(--tj-color-heading-primary);
  cursor: pointer;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_process_item_2 .process_desc {
    margin-top: 15px;
  }
  .tj_process_item_2 .process_top {
    padding: 20px 20px;
  }
  .tj_process_item_2 .process_bottom {
    padding: 30px 20px;
  }
  .tj_process_item_2 .process_bottom .step_tags .sec_subtitle {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .tj_process_item_2 .process_wrap {
    margin-bottom: 20px;
  }
  .tj_process_item_2 .process_no {
    font-size: 40px;
  }
  .tj_process_item_2 .process_img {
    max-width: 180px;
  }
  .tj_process_item_2 .process_desc {
    margin-top: 15px;
  }
  .tj_process_item_2 .process_top {
    padding: 20px 20px;
  }
  .tj_process_item_2 .process_bottom {
    padding: 30px 20px;
  }
  .tj_process_item_2 .process_bottom .step_tags .sec_subtitle {
    margin-bottom: 15px;
  }
}

/* !END: Process CSS */
/**----------------------------------------
START: Projects CSS
----------------------------------------*/
.h1-project-section {
  border-top: 1px solid var(--tj-color-border-1);
  padding-top: 115px;
  padding-bottom: 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-project-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-project-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-project-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h1_projects_wrapper .section_heading {
  margin-bottom: 0;
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.h1_projects_wrapper .section_heading .sec_title {
  max-width: 1200px;
  width: 100%;
  font-size: 120px;
  line-height: 1;
  margin-top: 0;
}
.h1_projects_wrapper .section_heading .sec_title .space {
  display: inline-block;
  padding-left: 155px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 1000px;
    font-size: 100px;
  }
  .h1_projects_wrapper .section_heading .sec_title .space {
    padding-left: 128px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 800px;
    font-size: 80px;
  }
  .h1_projects_wrapper .section_heading .sec_title .space {
    padding-left: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 600px;
    font-size: 60px;
  }
  .h1_projects_wrapper .section_heading .sec_title .space {
    padding-left: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_projects_wrapper .section_heading {
    margin-bottom: 50px;
    gap: 0;
  }
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 550px;
    font-size: 52px;
    margin-top: 16px;
    line-height: 1.11;
  }
  .h1_projects_wrapper .section_heading .sec_title .space {
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_projects_wrapper .section_heading {
    margin-bottom: 40px;
    gap: 0;
  }
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 450px;
    font-size: 42px;
    margin-top: 16px;
    line-height: 1.11;
  }
  .h1_projects_wrapper .section_heading .sec_title .space {
    padding-left: 0;
  }
}
@media (max-width: 575px) {
  .h1_projects_wrapper .section_heading .sec_title {
    max-width: 450px;
    font-size: 36px;
  }
}
.h1_projects_wrap {
  padding-top: 40px;
  padding-bottom: 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.h1_projects_wrap .projects-progress {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--tj-color-border-1);
  margin-top: 60px;
}
.h1_projects_wrap .projects-progress > span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  background-color: var(--tj-color-heading-primary);
}
.h1_projects_wrap .projects_more_button {
  margin-top: 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) {
  .h1_projects_wrap {
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }
  .h1_projects_wrap .projects-progress {
    display: none;
  }
  .h1_projects_wrap .projects_more_button {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_projects_wrap .projects_more_button {
    margin-top: 40px;
  }
}
.h1_projects_items {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
}
.h1_projects_items .tj_project_item {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
  width: 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) {
  .h1_projects_items {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .h1_projects_items .tj_project_item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.tj_project_item {
  display: inline-flex;
  flex-direction: column;
  align-items: start;
}
.tj_project_item .project_image .category {
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 2;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-bg-dark);
  border-color: var(--tj-color-theme-bg-dark);
}
.tj_project_item .project_content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  margin-top: 21px;
}
.tj_project_item .project_content .project_title {
  max-width: calc(100% - 70px);
  width: 100%;
  margin: 0;
  letter-spacing: -0.015em;
}
.tj_project_item .project_content .project_title a {
  display: inline-flex;
  align-items: center;
}
.tj_project_item .project_content .project_title .text {
  display: inline-flex;
  transform: translateX(-24px);
  transition: all 0.3s ease-in-out;
}
.tj_project_item .project_content .project_title .icon_btn {
  width: 24px;
  height: 24px;
  font-size: 16px;
  position: relative;
  top: -1px;
  background-color: var(--tj-color-theme-primary);
  transform: scale(0);
  transform-origin: center;
}
.tj_project_item .project_content .project_title a:hover {
  color: var(--tj-color-text-body-2);
}
.tj_project_item .project_content .project_title a:hover .text {
  transform: translateX(8px);
}
.tj_project_item .project_content .project_title a:hover .icon_btn {
  transform: scale(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) {
  .tj_project_item .project_content {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_project_item .project_image .category {
    left: 20px;
    top: 20px;
  }
}

.tj--hover-item .tj--hover-img {
  overflow: hidden;
  position: relative;
}
.tj--hover-item .tj--hover-img canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.project_image {
  display: inline-flex;
  width: 100%;
  position: relative;
  z-index: 1;
}
.project_image img {
  width: 100%;
  height: auto;
}
.project_image a:not(.category) {
  display: inline-flex;
  width: 100%;
}

.category {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body);
  background-color: transparent;
  border: 1px solid var(--tj-color-border-2);
  border-radius: 50px;
  padding: 5px 10px;
  transition: all 0.3s ease-in-out;
}
.category i,
.category svg {
  display: inline-flex;
  line-height: 1;
  font-size: 12px;
}
.category svg {
  max-width: 12px;
  height: auto;
}
.category:hover {
  background-color: var(--tj-color-theme-bg-dark-2);
  border-color: var(--tj-color-theme-bg-dark-2);
  color: var(--tj-color-light-1);
}
.category:hover .flip-text .front {
  transform: translateY(-150%);
}
.category:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
.category.fill {
  background-color: var(--tj-color-theme-bg-dark-2);
  border-color: var(--tj-color-theme-bg-dark-2);
}

.category-wrap {
  display: flex;
  flex-wrap: wrap;
}

.project_year {
  display: inline-flex;
  gap: 5px;
  font-weight: var(--tj-fw-bold);
  font-size: 17px;
  line-height: 1.5;
  color: var(--tj-color-theme-primary);
}
.project_year > span {
  color: var(--tj-color-heading-primary);
}

.h2-project-section {
  position: relative;
  z-index: 1;
  padding-top: 180px;
  padding-bottom: 140px;
}
.h2-project-section .blocks-shape {
  top: -1px;
  right: -1px;
  background-color: transparent;
  transform: scaleY(-1);
  color: var(--tj-color-theme-bg);
}
.h2-project-section .blocks-shape svg {
  width: 100%;
}
.h2-project-section .blocks-shape svg path {
  animation-play-state: paused;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-project-section .blocks-shape {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-project-section .blocks-shape {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-project-section .blocks-shape {
    max-width: 210px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-project-section .blocks-shape {
    max-width: 160px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-project-section {
    padding-top: 140px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-project-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-project-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h2_projects_header {
  padding: 0 60px;
  margin-bottom: 105px;
}
.h2_projects_header .section_heading .sec_subtitle span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_projects_header {
    padding: 0 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_header {
    padding: 0 30px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_header {
    padding: 0 20px;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_header {
    padding: 0 15px;
    margin-bottom: 40px;
  }
}
.h2_projects_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--tj-color-border-3);
  padding: 30px 60px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--tj-color-theme-bg-dark);
}
.h2_projects_item:last-child {
  border-bottom: 1px solid var(--tj-color-border-3);
}
.h2_projects_item.active .project_sl {
  color: var(--tj-color-theme-primary);
}
.h2_projects_item.active .project_title {
  font-size: 48px;
  opacity: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_item.active .project_title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item.active .project_title {
    font-size: 34px;
  }
}
.h2_projects_item.active .project_btn_wrap,
.h2_projects_item.active .project_content,
.h2_projects_item.active .project_year {
  opacity: 1;
  height: auto;
}
.h2_projects_item.active .project_image {
  height: 380px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_projects_item.active .project_image {
    height: 300px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_item.active .project_image {
    height: 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_item.active .project_image {
    height: 380px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_projects_item.active .project_image {
    height: 350px;
  }
}
@media (max-width: 575px) {
  .h2_projects_item.active .project_image {
    height: 260px;
  }
}
.h2_projects_item.active .project_image:hover img {
  transform: scale(1.1);
}
.h2_projects_item .project_sl {
  color: var(--tj-color-light-3);
}
.h2_projects_item .project_title {
  color: var(--tj-color-light-1);
  font-size: 40px;
  opacity: 0.2;
  margin-bottom: 25px;
}
.h2_projects_item .project_title_wrap {
  max-width: 320px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_item .project_title_wrap {
    max-width: 290px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_item .project_title_wrap {
    max-width: 235px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_title_wrap {
    max-width: 100%;
  }
}
.h2_projects_item .project_title .char-wrap > span:nth-child(2) {
  transform-origin: 50% 80%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_item .project_title {
    font-size: 36px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_title {
    font-size: 34px;
    opacity: 1;
  }
}
.h2_projects_item .project_year {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  opacity: 0;
  transition: all 0.4s;
}
.h2_projects_item .project_year > span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_year {
    opacity: 1;
  }
}
.h2_projects_item .project_content {
  max-width: 350px;
  width: 100%;
  display: flex;
  flex-direction: column;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_projects_item .project_content {
    max-width: 330px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_item .project_content {
    max-width: 280px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_content {
    max-width: 100%;
    opacity: 1;
  }
}
.h2_projects_item .project_desc {
  color: var(--tj-color-light-2);
  letter-spacing: 0.01em;
  margin-bottom: 25px;
}
.h2_projects_item .project_btn_wrap {
  opacity: 0;
  height: 0;
  transition: all 0.4s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_btn_wrap {
    opacity: 1;
  }
}
.h2_projects_item .tj_marquee_btn .text_btn {
  max-width: 148px;
}
.h2_projects_item .project_image {
  max-width: 524px;
  height: 195px;
  transition: height 0.4s ease-in-out;
}
.h2_projects_item .project_image > a {
  overflow: hidden;
}
.h2_projects_item .project_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_projects_item .project_image {
    max-width: 450px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_projects_item .project_image {
    max-width: 380px;
    height: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_item .project_image {
    max-width: 300px;
    height: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item .project_image {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_projects_item {
    padding: 30px 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_projects_item {
    padding: 30px 30px;
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_projects_item {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_projects_item {
    padding: 20px 15px;
  }
}

.h3-project-section {
  padding-bottom: 150px;
}
.h3-project-section .section_heading {
  padding: 40px 0 38px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-project-section .section_heading {
    padding: 0;
    padding-bottom: 38px;
  }
  .h3-project-section .section_heading_inner {
    gap: 5px 20px;
  }
  .h3-project-section .section_heading .tj_icon_btn {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-project-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-project-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-project-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h3_projects_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.h3_projects_items {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.h3_projects_items .tj_project_item {
  width: calc(50% - 15px);
}
.h3_projects_items .tj_project_item-inner {
  position: relative;
  z-index: 0;
  overflow: hidden;
  height: 100%;
}
.h3_projects_items .tj_project_item-inner,
.h3_projects_items .tj_project_item-inner .project_image,
.h3_projects_items .tj_project_item-inner a,
.h3_projects_items .tj_project_item-inner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.h3_projects_items .tj_project_item:first-child {
  width: 100%;
  aspect-ratio: 1800/851;
}
.h3_projects_items .tj_project_item:not(:first-child) {
  aspect-ratio: 885/658;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_projects_items .tj_project_item {
    width: 100%;
  }
  .h3_projects_items .tj_project_item:first-child, .h3_projects_items .tj_project_item:not(:first-child) {
    aspect-ratio: 1800/1110;
  }
}
.h3_projects_items .tj_project_item .project_content {
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
  display: inline-flex;
  flex-direction: column;
  z-index: 1;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_projects_items .tj_project_item .project_content {
    inset-inline-start: 20px;
    bottom: 20px;
  }
}
.h3_projects_items .tj_project_item .project_title {
  padding: 6px 15px 0;
  background-color: var(--tj-color-light-1);
  display: inline-block;
  max-width: inherit;
  width: auto;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out 0s;
}
.h3_projects_items .tj_project_item .project_year {
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  padding: 14px 15px 16px;
  background-color: var(--tj-color-light-1);
  display: inline-block;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out 0.1s;
}
.h3_projects_items .tj_project_item:hover .project_content {
  opacity: 1;
  transform: translateY(0);
}
.h3_projects_items .tj_project_item:hover .project_title {
  transform: translateX(0);
}
.h3_projects_items .tj_project_item:hover .project_year {
  transform: translateX(0);
}

.project-filter-section {
  padding-top: 90px;
  padding-bottom: 150px;
}

.tj_project_grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  padding-top: 80px;
}
.tj_project_grid .tj_project_item {
  padding: 0 15px;
  margin-bottom: 60px;
}
.tj_project_grid .tj_project_item .project_title_wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.w-66 {
  width: 66% !important;
}

.w-34 {
  width: 34% !important;
}

/* !END: Projects CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.marquee-item {
  width: auto;
  display: flex;
  align-items: center;
  gap: var(--gap);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item {
    --gap: 25px;
  }
}
@media (max-width: 575px) {
  .marquee-item {
    --gap: 20px;
  }
}
.marquee-text {
  font-size: 72px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-heading);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.marquee-text span {
  display: inline-flex;
  margin-inline-start: var(--gap);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-text span {
    margin-inline-start: var(--gap);
  }
}
@media (max-width: 575px) {
  .marquee-text span {
    margin-inline-start: var(--gap);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-text {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-text {
    font-size: 40px;
  }
}
.marquee-icon i {
  position: relative;
  top: 4px;
  font-size: 40px;
  line-height: 1;
}
.marquee-icon i,
.marquee-icon svg {
  display: inline-flex;
  line-height: 1;
}
.marquee-icon svg {
  max-width: 27px;
  height: auto;
}
.marquee-icon img {
  height: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-icon {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-icon {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-icon {
    font-size: 22px;
  }
}

.scroll-slider {
  position: relative;
  user-select: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap, 30px);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .scroll-slider {
    gap: 25px;
  }
}
@media (max-width: 575px) {
  .scroll-slider {
    gap: 20px;
  }
}
.scroll-wrapper {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  animation: scroll var(--duration, 30s) linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .scroll-wrapper {
    --gap: 25px;
  }
}
@media (max-width: 575px) {
  .scroll-wrapper {
    --gap: 20px;
  }
}

/* RTL */
[dir=rtl] .scroll-wrapper {
  direction: ltr;
  animation-name: scroll-rtl;
}

.h2-marquee-section {
  min-height: 385px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-marquee-section {
    min-height: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-marquee-section {
    min-height: 300px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-marquee-section {
    min-height: 210px;
  }
}

.h2-marquee-slider {
  position: relative;
  padding-top: 28px;
  padding-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h2-marquee-slider {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .h2-marquee-slider {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-marquee-slider .scroll-slider {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-marquee-slider .scroll-slider {
    gap: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-marquee-slider .scroll-slider {
    gap: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-marquee-slider .scroll-wrapper {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-marquee-slider .scroll-wrapper {
    gap: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-marquee-slider .scroll-wrapper {
    gap: 16px;
  }
}
.h3-marquee-slider .marquee-text {
  font-size: 140px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-light-1);
  align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-marquee-slider .marquee-text span {
    margin-inline-start: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-marquee-slider .marquee-text span {
    margin-inline-start: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-marquee-slider .marquee-text span {
    margin-inline-start: 16px;
  }
}
.h3-marquee-slider .marquee-text i {
  font-size: 80px;
  animation: rotateImg2 6s infinite linear;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-marquee-slider .marquee-text {
    font-size: 82px;
  }
  .h3-marquee-slider .marquee-text i {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-marquee-slider .marquee-text {
    font-size: 70px;
  }
  .h3-marquee-slider .marquee-text i {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-marquee-slider .marquee-text {
    font-size: 50px;
  }
  .h3-marquee-slider .marquee-text i {
    font-size: 24px;
  }
}
.h3-marquee-slider:nth-child(2) .marquee-text i {
  animation: rotateImg 6s infinite linear;
}

/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/
.h1-services-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-services-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-services-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-services-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h1_services_wrapper .sec_subtitle span {
  color: var(--tj-color-light-1);
}
.h1_services_wrapper .view-more-btn {
  border-color: var(--tj-color-light-1);
  color: var(--tj-color-light-1);
}
.h1_services_wrapper .view-more-btn .icon_btn {
  background-color: var(--tj-color-theme-primary);
}
.h1_services_wrapper .section_heading {
  margin-bottom: 60px;
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.h1_services_wrapper .section_heading_bottom {
  margin-bottom: 55px;
}
.h1_services_wrapper .section_heading_bottom .service_desc {
  max-width: 390px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_services_wrapper .section_heading {
    max-width: 500px;
    margin-bottom: 20px;
  }
  .h1_services_wrapper .section_heading_bottom {
    margin-bottom: 50px;
  }
  .h1_services_wrapper .section_heading_bottom .service_desc {
    max-width: 530px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .h1_services_wrapper .view-more-btn {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_services_wrapper .section_heading {
    max-width: 450px;
    margin-bottom: 20px;
  }
  .h1_services_wrapper .section_heading_bottom {
    margin-bottom: 40px;
  }
  .h1_services_wrapper .section_heading_bottom .service_desc {
    max-width: 500px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .h1_services_wrapper .view-more-btn {
    margin-top: 40px;
  }
}
.h1_services_items {
  border-top: 1px solid var(--tj-color-border-3);
}

.tj_service_item {
  position: relative;
  padding: 25px 0px;
  border-bottom: 1px solid var(--tj-color-border-3);
}
.tj_service_item:not(.is-active) .service_content {
  opacity: 0.25;
}
.tj_service_item .service_link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.tj_service_item .service_content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  transition: all 0.3s ease-in-out;
}
.tj_service_item .service_count {
  min-width: 65px;
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  margin: 0;
  align-self: flex-start;
}
.tj_service_item .service_count > span {
  color: var(--tj-color-light-1);
  transition: all 0.3s ease-in-out;
}
.tj_service_item .service_title {
  font-size: 44px;
  color: var(--tj-color-light-1);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 0;
  margin-left: 205px;
  transition: all 0.3s ease-in-out;
}
.tj_service_item .service_categories {
  align-self: center;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: end;
  margin-left: auto;
  transition: all 0.3s ease-in-out;
}
.tj_service_item .service_categories .category {
  border-color: var(--tj-color-light-1);
  background-color: transparent;
  color: var(--tj-color-light-1);
}
.tj_service_item:hover .service_count > span {
  padding: 0 10px;
}
.tj_service_item:hover .service_categories .category:not(:first-child) {
  margin-left: 8px;
}
.tj_service_item:hover .reveal-hover-text .reveal-line .front {
  transform: translateY(-150%);
}
.tj_service_item:hover .reveal-hover-text .reveal-line .back {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_service_item .service_title {
    margin-left: 0;
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_service_item .service_content {
    flex-direction: column;
    align-items: start;
  }
  .tj_service_item .service_title {
    margin-left: 0;
    font-size: 36px;
  }
  .tj_service_item .service_categories {
    align-self: flex-start;
  }
}
@media (max-width: 575px) {
  .tj_service_item .service_content {
    gap: 25px;
  }
  .tj_service_item .service_title {
    font-size: 28px;
  }
  .tj_service_item .service_categories {
    margin-left: 0;
    margin-top: 10px;
  }
}

.h2-service-section {
  padding-top: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-section {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-section {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-section {
    padding-top: 70px;
  }
}
.h2-service-heading-wrap {
  margin-bottom: 40px;
  padding-inline-start: 45px;
  padding-inline-end: 45px;
}
.h2-service-heading-wrap .section_heading {
  max-width: 885px;
  width: 100%;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .h2-service-heading-wrap .section_heading {
    max-width: 840px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-service-heading-wrap .section_heading {
    max-width: 700px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-heading-wrap .section_heading {
    max-width: 660px;
  }
}
@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) {
  .h2-service-heading-wrap {
    padding-inline-start: 15px;
    padding-inline-end: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-heading-wrap {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h2-service-heading-wrap {
    padding-inline-start: 5px;
    padding-inline-end: 5px;
  }
}
@media (max-width: 575px) {
  .h2-service-heading-wrap {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
.h2-service-left {
  max-width: 455px;
  width: 100%;
  margin-inline-start: 150px;
}
.h2-service-left .desc {
  margin-bottom: 25px;
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .h2-service-left {
    margin-inline-start: 90px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-service-left {
    margin-inline-start: 60px;
  }
}
@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) {
  .h2-service-left {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-service-left {
    max-width: 440px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-left {
    max-width: 400px;
  }
}
.h2-service-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 30px;
  height: 100vh;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-wrap {
    gap: 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) {
  .h2-service-wrap {
    flex-wrap: wrap;
    height: auto;
    padding: 0 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-wrap {
    padding: 0 15px;
  }
}
.h2-service-item {
  background-color: var(--tj-color-theme-bg-2);
  padding: 30px 30px 60px 30px;
}
.h2-service-item-wrap {
  flex-shrink: 0;
  flex: none;
  will-change: transform;
  width: 30.5%;
}
.h2-service-item-wrap:nth-child(even) .h2-service-item {
  background-color: var(--tj-color-theme-bg-dark);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .service-sl {
  color: var(--tj-color-light-1);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .service-title {
  color: var(--tj-color-light-1);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .service-desc {
  color: var(--tj-color-light-2);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .category {
  color: var(--tj-color-light-2);
  border-color: var(--tj-color-border-3);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .category:hover {
  background-color: var(--tj-color-theme-bg-dark-2);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .tj_icon_btn.no-border {
  color: var(--tj-color-light-1);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .tj_icon_btn.no-border .icon_btn {
  background-color: var(--tj-color-light-1);
  color: var(--tj-color-heading-primary);
}
.h2-service-item-wrap:nth-child(even) .h2-service-item .tj_icon_btn.no-border:hover .icon_btn {
  color: var(--tj-color-light-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) {
  .h2-service-item-wrap {
    width: 100%;
  }
}
.h2-service-item:hover .service-icon i {
  animation: inOut 0.4s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-item {
    padding: 30px 20px 50px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-item {
    padding: 20px 20px 40px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-item {
    padding: 15px 15px 30px 15px;
  }
}
.h2-service-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.h2-service-top .service-sl {
  font-size: 48px;
  line-height: 1;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-top .service-sl {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-top .service-sl {
    font-size: 36px;
  }
}
.h2-service-top .service-icon {
  width: 100px;
  height: 100px;
  font-size: 52px;
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.h2-service-top .service-icon i {
  display: inline-flex;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-service-top .service-icon {
    width: 90px;
    height: 90px;
    font-size: 44px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-top .service-icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-top .service-icon {
    width: 70px;
    height: 70px;
    font-size: 36px;
  }
}
.h2-service-content {
  padding: 120px 0;
}
.h2-service-content .service-title {
  margin-bottom: 20px;
}
.h2-service-content .service-title a:hover {
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-content .service-title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-content .service-title {
    margin-bottom: 10px;
  }
}
.h2-service-content .service-desc {
  font-size: 18px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-content .service-desc {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-service-content {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-content {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-service-content {
    padding: 45px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-service-content {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-service-content {
    padding: 40px 0;
  }
}

.split-flip-text-2 {
  position: relative;
  overflow: hidden;
}
.split-flip-text-2 .flip-layer {
  transition: all 0.3s ease-in-out;
  text-wrap: nowrap;
  overflow: hidden;
  color: transparent;
}
.split-flip-text-2 .flip-layer:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  width: 0;
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-bg);
}

.h3-service-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.h3-service-section .section_heading {
  max-width: 305px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h3-service-section .section_heading .desc_wrapper {
  margin-top: 18px;
}
.h3-service-section .section_heading .desc_wrapper .desc {
  margin-bottom: 28px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-service-section .section_heading .desc_wrapper .desc {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-service-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-service-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-service-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h3_service_wrapper {
  max-width: 1037px;
  margin-inline-start: auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_service_wrapper {
    max-width: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_service_wrapper {
    max-width: 644px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_service_wrapper {
    display: block;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_service_wrapper {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_service_wrapper {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_service_wrapper .service_icons {
    display: none;
  }
}
.h3_service_wrapper .service_icon i {
  width: 160px;
  height: 160px;
  font-size: 84px;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  will-change: transform;
  transition: transform 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_service_wrapper .service_icon i {
    width: 140px;
    height: 140px;
    font-size: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_service_wrapper .service_icon i {
    width: 120px;
    height: 120px;
    font-size: 64px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_service_wrapper .service_icon i {
    width: 100px;
    height: 100px;
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .h3_service_wrapper .service_icon i {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}
.h3_service_wrapper .split-flip-text-2 .flip-layer:first-child {
  color: var(--tj-color-heading-primary);
}
.h3_service_wrapper .tj_service_item {
  max-width: 626px;
  gap: 15px;
  border-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) {
  .h3_service_wrapper .tj_service_item {
    max-width: 100%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.h3_service_wrapper .tj_service_item:not(.is-active) .service_content {
  opacity: 1;
}
.h3_service_wrapper .tj_service_item:first-child {
  padding-top: 0;
}
.h3_service_wrapper .tj_service_item .icon_btn_rounded {
  flex-shrink: 0;
  opacity: 0;
  transform-origin: left center;
  transform: translateX(-50%) scale(0.6);
  transition-delay: 0.6;
}
.h3_service_wrapper .tj_service_item .service_link {
  cursor: none;
}
.h3_service_wrapper .tj_service_item .service_icon {
  display: none;
}
.h3_service_wrapper .tj_service_item .service_count {
  min-width: inherit;
  flex-shrink: 0;
  align-self: flex-start;
  line-height: 1;
}
.h3_service_wrapper .tj_service_item .service_count > span {
  color: var(--tj-color-heading-primary);
}
@media (max-width: 575px) {
  .h3_service_wrapper .tj_service_item .service_count {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_service_wrapper .tj_service_item .service_icon {
    display: inline-flex;
  }
}
.h3_service_wrapper .tj_service_item .service_title {
  margin-left: 0;
  color: var(--tj-color-heading-primary);
  font-size: 72px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  line-height: 0.7;
  text-transform: uppercase;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_service_wrapper .tj_service_item .service_title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_service_wrapper .tj_service_item .service_title {
    font-size: 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) {
  .h3_service_wrapper .tj_service_item .service_title {
    width: 100%;
    margin-bottom: -2px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_service_wrapper .tj_service_item .service_title {
    font-size: 58px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3_service_wrapper .tj_service_item .service_title {
    font-size: 44px;
  }
}
@media (max-width: 575px) {
  .h3_service_wrapper .tj_service_item .service_title {
    font-size: 26px;
  }
}
.h3_service_wrapper .tj_service_item .service_content {
  flex-wrap: nowrap;
  align-items: center;
  gap: 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) {
  .h3_service_wrapper .tj_service_item .service_content {
    flex-direction: column;
    justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .h3_service_wrapper .tj_service_item .service_content {
    gap: 8px;
  }
}
.h3_service_wrapper .tj_service_item:hover .service_count > span, .h3_service_wrapper .tj_service_item.active .service_count > span {
  padding: 0;
}
.h3_service_wrapper .tj_service_item:hover .split-flip-text-2 .flip-layer:nth-child(2), .h3_service_wrapper .tj_service_item.active .split-flip-text-2 .flip-layer:nth-child(2) {
  width: 100%;
}
.h3_service_wrapper .tj_service_item:hover .icon_btn_rounded, .h3_service_wrapper .tj_service_item.active .icon_btn_rounded {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.h3_service-content {
  padding: 120px 0;
}
.h3_service-content .service-title {
  margin-bottom: 20px;
}
.h3_service-content .service-desc {
  font-size: 18px;
  margin-bottom: 30px;
}

.tj-services-section {
  padding-top: 150px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-services-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-services-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-services-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.tj_services_wrapper .section_heading {
  max-width: 820px;
  width: 100%;
  margin-bottom: 80px;
}

.tj_services_items {
  width: 75%;
  margin-inline-start: auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_services_items {
    width: 85%;
  }
}
@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_services_items {
    width: 100%;
  }
}

.tj_service_item.tj_service_item_2 {
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 0;
  padding: 38px 30px;
  transition: all 0.3s;
}
.tj_service_item.tj_service_item_2:last-child {
  border-bottom: 1px solid var(--tj-color-border-1);
}
.tj_service_item.tj_service_item_2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--tj-color-theme-bg-2);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.tj_service_item.tj_service_item_2 .service_link {
  cursor: none;
}
.tj_service_item.tj_service_item_2 .service_count > span {
  color: var(--tj-color-heading-primary);
}
.tj_service_item.tj_service_item_2 .service_title {
  color: var(--tj-color-heading-primary);
  font-size: 32px;
  margin-left: 0;
  margin-bottom: 24px;
}
.tj_service_item.tj_service_item_2 .service_title_wrap {
  margin-inline-start: 90px;
}
.tj_service_item.tj_service_item_2 .service_content {
  opacity: 1;
}
.tj_service_item.tj_service_item_2 .service_categories .category {
  border-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-heading-primary);
}
.tj_service_item.tj_service_item_2 .service_list {
  max-width: 400px;
  width: 100%;
  margin-inline-start: auto;
}
.tj_service_item.tj_service_item_2:hover {
  border-color: var(--tj-color-theme-bg);
}
.tj_service_item.tj_service_item_2:hover + div {
  border-color: var(--tj-color-theme-bg);
}
.tj_service_item.tj_service_item_2:hover + div:last-child {
  border-bottom-color: var(--tj-color-border-1);
}
.tj_service_item.tj_service_item_2:hover::before {
  opacity: 1;
}
.tj_service_item.tj_service_item_2:hover .service_count > span {
  padding: 0;
}
.tj_service_item.tj_service_item_2:hover .service_categories .category:not(:first-child) {
  margin: 0;
}

/* !END: Service CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.h1-team-section {
  padding-top: 133px;
  padding-bottom: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-team-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-team-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .h1-team-section .view-all-btn {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-team-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .h1-team-section .view-all-btn {
    margin-top: 40px;
  }
}
.h1_team_wrapper .team_section_header {
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}
.h1_team_wrapper .team_desc {
  max-width: 390px;
  width: 100%;
}
.h1_team_wrapper .section_heading {
  max-width: calc(100% - (50% + 15px));
  width: 100%;
}
.h1_team_wrapper .section_heading .view-all-btn {
  margin-top: 24px;
}
.h1_team_wrapper .team_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_team_wrapper .section_heading {
    max-width: 615px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_team_wrapper .section_heading {
    max-width: 48%;
  }
  .h1_team_wrapper .team_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_team_wrapper .team_section_header {
    flex-direction: column-reverse;
    align-items: start;
    margin-bottom: 50px;
  }
  .h1_team_wrapper .section_heading {
    max-width: 600px;
  }
  .h1_team_wrapper .team_desc {
    max-width: 600px;
    margin-top: 15px;
  }
  .h1_team_wrapper .team_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_team_wrapper .team_section_header {
    flex-direction: column-reverse;
    align-items: start;
    margin-bottom: 40px;
  }
  .h1_team_wrapper .section_heading {
    max-width: 450px;
  }
  .h1_team_wrapper .team_desc {
    max-width: 600px;
    margin-top: 15px;
  }
  .h1_team_wrapper .team_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .h1_team_wrapper .team_items {
    grid-template-columns: 1fr;
  }
}

.tj_team_member {
  border-bottom: 1px solid var(--tj-color-theme-bg-dark);
  padding-bottom: 21px;
}
.tj_team_member .member_image {
  position: relative;
  background-color: var(--tj-color-theme-bg-2);
  text-align: center;
  z-index: 1;
  overflow: hidden;
  transition: 0.4s;
}
.tj_team_member .member_image > img {
  width: 100%;
}
.tj_team_member .member_image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 156px;
  background-image: linear-gradient(180deg, rgba(12, 12, 12, 0) 0%, #0c0c0c 100%);
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}
.tj_team_member .member_image .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  object-fit: cover;
  mix-blend-mode: multiply;
  transform: scale(1.1);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.tj_team_member .member_info {
  margin-top: 10px;
}
.tj_team_member .member_info .name {
  margin: 0;
  letter-spacing: -0.015em;
}
.tj_team_member .member_info .name a:hover {
  color: var(--tj-color-text-body-2);
}
.tj_team_member .member_info .designation {
  display: flex;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: var(--tj-color-text-body-2);
}
.tj_team_member .member_info .socials {
  margin-top: 10px;
  gap: 8px;
}
.tj_team_member .member_info .socials > li > a {
  border-color: var(--tj-color-heading-primary);
}
.tj_team_member .member_info .socials > li > a:hover {
  border-color: var(--tj-color-theme-primary);
}
.tj_team_member:hover .member_image {
  background-color: #bc001e;
}
.tj_team_member:hover .member_image .tj-glitch-item:nth-child(n+2) {
  animation-duration: 1.5s;
}
.tj_team_member:hover .member_image .bg_image {
  opacity: 1;
}

.h3-team-section {
  padding-top: 140px;
  background-color: var(--tj-color-theme-bg-2);
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-team-section {
    padding-top: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-team-section {
    padding-top: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-team-section {
    padding-top: 70px;
  }
}
.h3_team_wrapper .team_section_header {
  max-width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}
.h3_team_wrapper .section_heading {
  max-width: 635px;
  width: 100%;
}
.h3_team_wrapper .section_heading .sec_title {
  font-size: 120px;
  line-height: 1;
}
.h3_team_wrapper .section_heading .team-action {
  margin-top: 16px;
}
.h3_team_wrapper .section_heading .team_badge {
  position: absolute;
  inset-inline-start: 6%;
  top: 40%;
  transform: rotate(-15.13deg);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_team_wrapper .section_heading .sec_title {
    font-size: 85px;
  }
  .h3_team_wrapper .section_heading .team_badge {
    max-width: 110px;
    inset-inline-start: 15%;
    top: 33%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_team_wrapper .section_heading {
    max-width: 413px;
  }
  .h3_team_wrapper .section_heading .sec_title {
    font-size: 61px;
  }
  .h3_team_wrapper .section_heading .team_badge {
    max-width: 81px;
    inset-inline-start: 14%;
    top: 40%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_team_wrapper .section_heading {
    margin-bottom: 50px;
  }
  .h3_team_wrapper .section_heading .sec_title {
    font-size: 100px;
  }
  .h3_team_wrapper .section_heading .team_badge {
    inset-inline-start: 11%;
    top: 40%;
    max-width: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_team_wrapper .section_heading {
    margin-bottom: 40px;
  }
  .h3_team_wrapper .section_heading .sec_title {
    font-size: 58px;
  }
  .h3_team_wrapper .section_heading .team_badge {
    inset-inline-start: 9%;
    top: 40%;
    max-width: 59px;
  }
}

.team_items_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1498px;
  margin: 0 auto;
  padding-top: 150px;
  pointer-events: 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) {
  .team_items_wrapper {
    padding-top: 0;
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team_items_wrapper {
    flex-direction: column;
    gap: 30px;
  }
}
.team_items_wrapper .team_items {
  max-width: 428px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team_items_wrapper .team_items {
    max-width: 340px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team_items_wrapper .team_items {
    max-width: 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) {
  .team_items_wrapper .team_items {
    gap: 30px;
    max-width: 100%;
  }
}
.team_items_wrapper .tj_team_member {
  border-bottom: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  pointer-events: all;
}
.team_items_wrapper .tj_team_member .member_image {
  position: relative;
  background-color: var(--tj-color-theme-bg-dark);
  text-align: start;
}
.team_items_wrapper .tj_team_member .member_image:after {
  content: "";
  height: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0) 50%, var(--tj-color-theme-bg-dark) 100%);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.team_items_wrapper .tj_team_member .member_info {
  margin-top: 10px;
  position: absolute;
  inset-inline-start: 30px;
  bottom: 30px;
  z-index: 1;
  overflow: hidden;
}
.team_items_wrapper .tj_team_member .member_info .name,
.team_items_wrapper .tj_team_member .member_info .designation,
.team_items_wrapper .tj_team_member .member_info .socials {
  opacity: 0;
  transform: translateX(-30%);
  transition: all 0.3s ease-in-out;
}
.team_items_wrapper .tj_team_member .member_info .name {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team_items_wrapper .tj_team_member .member_info .name {
    font-size: 24px;
  }
}
.team_items_wrapper .tj_team_member .member_info .designation {
  color: var(--tj-color-light-3);
  transition-delay: 0.1s;
}
.team_items_wrapper .tj_team_member .member_info .socials {
  transition-delay: 0.2s;
  margin-top: 9px;
}
.team_items_wrapper .tj_team_member .member_info .socials > li > a {
  border-color: var(--tj-color-light-1);
  color: var(--tj-color-light-1);
}
.team_items_wrapper .tj_team_member .member_info .socials > li > a:hover {
  border-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team_items_wrapper .tj_team_member .member_info {
    inset-inline-start: 20px;
    bottom: 20px;
  }
}
.team_items_wrapper .tj_team_member:hover .member_image {
  background-color: var(--tj-color-theme-bg-dark);
}
.team_items_wrapper .tj_team_member:hover .member_image:after {
  opacity: 1;
  height: 100%;
}
.team_items_wrapper .tj_team_member:hover .member_info .name,
.team_items_wrapper .tj_team_member:hover .member_info .designation,
.team_items_wrapper .tj_team_member:hover .member_info .socials {
  opacity: 1;
  transform: translateX(0);
}

.about-team-section .section_heading {
  max-width: 66%;
}
.about-team-section .section_heading .sec_title {
  max-width: 880px;
  width: 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) {
  .about-team-section .section_heading {
    max-width: 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) {
  .about-team-section .team_section_header {
    flex-direction: column;
  }
}

.more-team-section {
  padding-top: 60px;
  padding-bottom: 160px;
}
.more-team-section .section_heading {
  max-width: 66%;
}
.more-team-section .section_heading .sec_title {
  max-width: 880px;
  width: 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) {
  .more-team-section .section_heading {
    max-width: 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) {
  .more-team-section .team_section_header {
    flex-direction: column;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .more-team-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .more-team-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .more-team-section {
    padding-bottom: 70px;
  }
}
.more_team_member .tj_team_member {
  position: relative;
  border-color: var(--tj-color-border-1);
  padding: 40px 0;
}
.more_team_member .tj_team_member:first-child {
  border-top: 1px solid var(--tj-color-border-1);
}
.more_team_member .tj_team_member .member_image {
  max-width: 265px;
  width: 100%;
  position: absolute;
  top: 50%;
  right: 10%;
  opacity: 0;
  transform: translate(-50%, -50%) rotateX(270deg);
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
  pointer-events: none;
}
.more_team_member .tj_team_member .member_image:after {
  height: 96px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .more_team_member .tj_team_member .member_image {
    max-width: 220px;
    right: 8%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .more_team_member .tj_team_member .member_image {
    max-width: 190px;
    right: 6%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .more_team_member .tj_team_member .member_image {
    position: relative;
    top: 0;
    right: 0;
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 575px) {
  .more_team_member .tj_team_member .member_image {
    max-width: 100%;
  }
}
.more_team_member .tj_team_member .member_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 0;
}
.more_team_member .tj_team_member .member_info .name {
  width: 35%;
}
.more_team_member .tj_team_member .member_info .designation {
  width: 35%;
}
.more_team_member .tj_team_member .member_info .socials {
  margin-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) {
  .more_team_member .tj_team_member .member_info {
    flex-direction: column;
    gap: 10px;
    align-items: start;
    margin-top: 20px;
  }
  .more_team_member .tj_team_member .member_info .name,
  .more_team_member .tj_team_member .member_info .designation {
    width: 100%;
  }
}
.more_team_member .tj_team_member:hover .member_image {
  background-color: var(--tj-color-theme-bg-2);
  opacity: 1;
  transform: translate(-50%, -50%) rotateX(360deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .more_team_member .tj_team_member:hover .member_image {
    transform: 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) {
  .more_team_member .tj_team_member {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .more_team_member .tj_team_member {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}

.tj-glitch {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.tj-glitch .tj-glitch-item {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
}
.tj-glitch .tj-glitch-item:nth-child(n+2) {
  opacity: 0;
  animation-delay: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.tj-glitch .tj-glitch-item:nth-child(2) {
  background-color: transparent;
  background-blend-mode: none;
  animation-name: tj-glitch-2;
}
.tj-glitch .tj-glitch-item:nth-child(3) {
  background-color: transparent;
  background-blend-mode: none;
  animation-name: tj-glitch-3;
  display: none;
}
.tj-glitch .tj-glitch-item:nth-child(4) {
  background-color: #af4949;
  background-blend-mode: overlay;
  animation-name: tj-glitch-flash;
}
.tj-glitch-hover {
  position: relative;
  overflow: hidden;
}
.tj-glitch-anim {
  position: relative;
  overflow: hidden;
}
.tj-glitch-anim .tj-glitch .tj-glitch-item:nth-child(n+2) {
  animation-duration: 4s;
}

@keyframes tj-glitch-flash {
  0%, 5% {
    opacity: 0.2;
  }
  5.5%, 100% {
    opacity: 0;
  }
}
@keyframes tj-glitch-2 {
  0% {
    opacity: 1;
    transform: translate3d(10px, 0, 0);
    -webkit-clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
    clip-path: polygon(0 2%, 100% 2%, 100% 5%, 0 5%);
  }
  2% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
    clip-path: polygon(0 15%, 100% 15%, 100% 15%, 0 15%);
  }
  4% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
    clip-path: polygon(0 10%, 100% 10%, 100% 20%, 0 20%);
  }
  6% {
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
    clip-path: polygon(0 1%, 100% 1%, 100% 2%, 0 2%);
  }
  8% {
    -webkit-clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
    clip-path: polygon(0 33%, 100% 33%, 100% 33%, 0 33%);
  }
  10% {
    -webkit-clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
    clip-path: polygon(0 44%, 100% 44%, 100% 44%, 0 44%);
  }
  12% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
    clip-path: polygon(0 50%, 100% 50%, 100% 20%, 0 20%);
  }
  14% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
    clip-path: polygon(0 70%, 100% 70%, 100% 70%, 0 70%);
  }
  16% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
    clip-path: polygon(0 80%, 100% 80%, 100% 80%, 0 80%);
  }
  18% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
    clip-path: polygon(0 50%, 100% 50%, 100% 55%, 0 55%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
    clip-path: polygon(0 70%, 100% 70%, 100% 80%, 0 80%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(10px, 0, 0);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
@keyframes tj-glitch-3 {
  0% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale3d(-1, -1, 1);
    -webkit-clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
    clip-path: polygon(0 1%, 100% 1%, 100% 3%, 0 3%);
  }
  1.5% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
    clip-path: polygon(0 10%, 100% 10%, 100% 9%, 0 9%);
  }
  2% {
    -webkit-clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
    clip-path: polygon(0 5%, 100% 5%, 100% 6%, 0 6%);
  }
  2.5% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
    clip-path: polygon(0 20%, 100% 20%, 100% 20%, 0 20%);
  }
  3% {
    -webkit-clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
    clip-path: polygon(0 10%, 100% 10%, 100% 10%, 0 10%);
  }
  5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
    clip-path: polygon(0 30%, 100% 30%, 100% 25%, 0 25%);
  }
  5.5% {
    -webkit-clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
    clip-path: polygon(0 15%, 100% 15%, 100% 16%, 0 16%);
  }
  7% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
    clip-path: polygon(0 40%, 100% 40%, 100% 39%, 0 39%);
  }
  8% {
    -webkit-clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
    clip-path: polygon(0 20%, 100% 20%, 100% 21%, 0 21%);
  }
  9% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
    clip-path: polygon(0 60%, 100% 60%, 100% 55%, 0 55%);
  }
  10.5% {
    -webkit-clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
    clip-path: polygon(0 30%, 100% 30%, 100% 31%, 0 31%);
  }
  11% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
    clip-path: polygon(0 70%, 100% 70%, 100% 69%, 0 69%);
  }
  13% {
    -webkit-clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
    clip-path: polygon(0 40%, 100% 40%, 100% 41%, 0 41%);
  }
  14% {
    -webkit-clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
    clip-path: polygon(0 80%, 100% 80%, 100% 75%, 0 75%);
  }
  14.5% {
    -webkit-clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
    clip-path: polygon(0 50%, 100% 50%, 100% 51%, 0 51%);
  }
  15% {
    -webkit-clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
    clip-path: polygon(0 90%, 100% 90%, 100% 90%, 0 90%);
  }
  16% {
    -webkit-clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
    clip-path: polygon(0 60%, 100% 60%, 100% 60%, 0 60%);
  }
  18% {
    -webkit-clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
    clip-path: polygon(0 100%, 100% 100%, 100% 99%, 0 99%);
  }
  20% {
    -webkit-clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
    clip-path: polygon(0 70%, 100% 70%, 100% 71%, 0 71%);
  }
  21.9% {
    opacity: 1;
    transform: translate3d(0, -5px, 0) scale3d(-1, -1, 1);
  }
  22%, 100% {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    -webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }
}
/* !END: Team CSS */
/**----------------------------------------
START: Testimonial CSS
----------------------------------------*/
.h1-testimonial-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-testimonial-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-testimonial-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h1_testimonial_wrapper .section_heading {
  margin-bottom: 52px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_testimonial_wrapper .section_heading {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_testimonial_wrapper .section_heading {
    margin-bottom: 40px;
  }
}
.h1_testimonial_slider_wrap {
  max-width: 1330px;
  width: 100%;
  position: relative;
  z-index: 1;
  margin: auto;
}
.h1_testimonial_slider_wrap .tj_swiper_nav {
  position: absolute;
  right: 0;
  top: calc(50% - 56.5px);
  transform: translateY(-50%);
  z-index: 2;
  background-color: var(--tj-color-light-1);
}
.h1_testimonial_slider_wrap .tj_swiper_nav > span i,
.h1_testimonial_slider_wrap .tj_swiper_nav > span svg {
  color: var(--tj-color-heading-primary);
}
.h1_testimonial_slider_wrap .tj_swiper_nav > span i:last-child,
.h1_testimonial_slider_wrap .tj_swiper_nav > span svg:last-child {
  color: var(--tj-color-light-1);
}
.h1_testimonial_slider_wrap .tj_swiper_nav:hover {
  background-color: var(--tj-color-theme-primary);
}
.h1_testimonial_slider_wrap .tj_swiper_nav.prev {
  right: auto;
  left: 0;
}
.h1_testimonial_slider {
  background-color: var(--tj-color-theme-bg);
  max-width: calc(100% - 216px);
  width: 100%;
}
.h1_testimonial_slider .testimonial_content .rating {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s;
}
.h1_testimonial_slider .testimonial_content .review_text {
  overflow: hidden;
}
.h1_testimonial_slider .testimonial_content .review_text > div {
  display: block;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.8s;
}
.h1_testimonial_slider .swiper-slide-active .testimonial_content .rating {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.h1_testimonial_slider .swiper-slide-active .testimonial_content .review_text > div {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.h1_testimonial_author_slider {
  max-width: calc(100% - 216px);
  width: 100%;
  height: 157px;
  margin-top: -45px;
}
.h1_testimonial_author_slider .author .author-img {
  transition: all 0.8s;
}
.h1_testimonial_author_slider .author .name {
  overflow: hidden;
}
.h1_testimonial_author_slider .author .name > span {
  display: inline-block;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s;
}
.h1_testimonial_author_slider .author .designation {
  overflow: hidden;
}
.h1_testimonial_author_slider .author .designation > span {
  display: inline-block;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s;
}
.h1_testimonial_author_slider .swiper-slide-active .author .author-img {
  transform: scale(1);
  transition-delay: 0.5s;
}
.h1_testimonial_author_slider .swiper-slide-active .author .name > span {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
.h1_testimonial_author_slider .swiper-slide-active .author .designation > span {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_testimonial_slider {
    max-width: calc(100% - 156px);
  }
  .h1_testimonial_author_slider {
    max-width: calc(100% - 156px);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_testimonial_slider_wrap .testimonial_navigations {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
  }
  .h1_testimonial_slider_wrap .testimonial_navigations .tj_swiper_nav {
    position: inherit;
    top: inherit;
    transform: inherit;
  }
  .h1_testimonial_slider {
    max-width: 100%;
  }
  .h1_testimonial_author_slider {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .h1_testimonial_slider_wrap .testimonial_navigations {
    margin-top: 30px;
  }
  .h1_testimonial_slider {
    max-width: 100%;
  }
  .h1_testimonial_author_slider {
    max-width: 100%;
  }
}

.tj_testimonial_item {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 60px 40px 98px 40px;
}
.tj_testimonial_item .rating {
  margin-bottom: 56px;
}
.tj_testimonial_item .review_text {
  font-weight: var(--tj-fw-medium);
  font-size: 46px;
  line-height: 1.26;
  text-align: center;
  color: var(--tj-color-theme-primary);
}
.tj_testimonial_item .review_text span {
  color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_testimonial_item .review_text {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_testimonial_item {
    padding: 40px 30px 75px 30px;
  }
  .tj_testimonial_item .rating {
    margin-bottom: 40px;
  }
  .tj_testimonial_item .review_text {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_testimonial_item {
    padding: 40px 30px 75px 30px;
  }
  .tj_testimonial_item .rating {
    margin-bottom: 30px;
  }
  .tj_testimonial_item .review_text {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_testimonial_item {
    padding: 30px 20px 70px 20px;
  }
  .tj_testimonial_item .rating {
    margin-bottom: 30px;
  }
  .tj_testimonial_item .review_text {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .tj_testimonial_item {
    padding: 30px 30px 70px 30px;
  }
  .tj_testimonial_item .rating {
    margin-bottom: 30px;
  }
  .tj_testimonial_item .review_text {
    font-size: 18px;
  }
}

.h2-testimonial-section {
  padding-bottom: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-testimonial-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-testimonial-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-testimonial-section {
    padding-bottom: 70px;
  }
}
.h2_testimonial_header {
  margin-bottom: 100px;
}
.h2_testimonial_header .trusted-area {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_header .trusted-area {
    max-width: 260px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_header .trusted-area {
    margin-top: 15px;
  }
}
.h2_testimonial_header .trusted_text {
  max-width: 255px;
  width: 100%;
  font-size: 20px;
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_header .trusted_text {
    font-size: 18px;
  }
}
.h2_testimonial_header .quote-icon {
  font-size: 40px;
  color: var(--tj-color-light-1);
  width: 80px;
  height: 80px;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_header .quote-icon {
    font-size: 34px;
    width: 74px;
    height: 74px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_header .quote-icon {
    font-size: 30px;
    width: 66px;
    height: 66px;
  }
}
.h2_testimonial_header .section_heading {
  max-width: 880px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_testimonial_header .section_heading {
    max-width: 720px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_header .section_heading {
    max-width: 630px;
  }
  .h2_testimonial_header .section_heading .sec_title {
    font-size: 52px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_header {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_header {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_header {
    margin-bottom: 40px;
  }
}
.h2_testimonial_slider {
  border-top: 1px solid var(--tj-color-border-3);
  border-bottom: 1px solid var(--tj-color-border-3);
}
.h2_testimonial_slider .scroll-slider {
  user-select: auto;
  gap: 0;
}
.h2_testimonial_slider .scroll-slider .scroll-wrapper {
  gap: 0;
}
.h2_testimonial_slider .scroll-slider:hover .scroll-wrapper {
  animation-play-state: paused;
}
.h2_testimonial_item.tj_testimonial_item {
  max-width: 730px;
  width: 100%;
  border-right: 1px solid var(--tj-color-border-3);
  padding: 60px 40px 44px 40px;
  will-change: transform;
}
.h2_testimonial_item.tj_testimonial_item .rating {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_item.tj_testimonial_item .rating {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .rating {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .rating {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .h2_testimonial_item.tj_testimonial_item .rating .label {
    font-size: 16px;
  }
}
.h2_testimonial_item.tj_testimonial_item .testimonial_content {
  text-align: start;
  padding: 0;
  margin-bottom: 130px;
  background-color: transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_content {
    margin-bottom: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_content {
    margin-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_content {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_content {
    margin-bottom: 40px;
  }
}
.h2_testimonial_item.tj_testimonial_item .review_text {
  font-size: 30px;
  line-height: 1.33;
  text-align: start;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_testimonial_item.tj_testimonial_item .review_text {
    font-size: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_item.tj_testimonial_item .review_text {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .review_text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .review_text {
    font-size: 20px;
  }
}
.h2_testimonial_item.tj_testimonial_item .testimonial_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--tj-color-border-1);
}
.h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile {
  flex-direction: row;
  justify-content: start;
  text-align: start;
  gap: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile .author-img {
    width: 76px;
    height: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile .author-img {
    width: 66px;
    height: 66px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile .author-info .name {
    font-size: 22px;
    margin-bottom: 6px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile .author-info .name {
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile {
    gap: 10px;
  }
}
.h2_testimonial_item.tj_testimonial_item .testimonial_bottom .testimonial_client_img {
  max-width: 205px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .testimonial_client_img {
    max-width: 155px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom .testimonial_client_img {
    max-width: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item .testimonial_bottom {
    padding-top: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_testimonial_item.tj_testimonial_item {
    max-width: 680px;
    padding: 50px 40px 40px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_testimonial_item.tj_testimonial_item {
    max-width: 610px;
    padding: 50px 30px 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_testimonial_item.tj_testimonial_item {
    max-width: 550px;
    padding: 40px 25px 30px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_testimonial_item.tj_testimonial_item {
    max-width: 400px;
    padding: 25px 20px 20px 20px;
  }
}

.trusted_text {
  font-family: var(--tj-ff-heading);
}
.trusted_text span {
  text-decoration: underline;
}

.h3-testimonial-section {
  padding-top: 120px;
  padding-bottom: 200px;
  margin-top: 90px;
  overflow: hidden;
  border-top: 1px solid var(--tj-color-border-3);
}
.h3-testimonial-section-wrapper {
  padding-top: 100px;
  position: relative;
  z-index: 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) {
  .h3-testimonial-section-wrapper {
    transform: none !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-testimonial-section {
    padding-top: 104px;
    padding-bottom: 120px;
  }
  .h3-testimonial-section-wrapper {
    padding-top: 104px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-testimonial-section {
    padding-top: 80px;
    padding-bottom: 90px;
    margin-top: 70px;
  }
  .h3-testimonial-section-wrapper {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-testimonial-section {
    padding-top: 60px;
    padding-bottom: 70px;
    margin-top: 55px;
  }
  .h3-testimonial-section-wrapper {
    padding-top: 60px;
  }
}
.h3-testimonial-section .tj_swiper_nav_wrapper {
  display: inline-flex;
  gap: 15px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-testimonial-section .tj_swiper_nav_wrapper {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-testimonial-section .tj_swiper_nav_wrapper {
    margin-bottom: 0;
  }
}
.h3-testimonial-section .h3-slider-prev, .h3-testimonial-section .h3-slider-next {
  border: 1px solid var(--tj-color-light-1);
}
.h3-testimonial-section .h3-slider-prev:hover, .h3-testimonial-section .h3-slider-next:hover {
  border-color: var(--tj-color-theme-primary);
}
.h3_testimonial_header {
  margin-bottom: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_testimonial_header {
    margin-bottom: 40px;
  }
}
.h3_testimonial_header .section_heading {
  max-width: 700px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_testimonial_header .section_heading {
    max-width: 550px;
  }
}
.h3_testimonial_header .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.h3_testimonial_header .section_heading .sec_title {
  color: var(--tj-color-light-1);
}
.h3_testimonial_slider {
  overflow: visible;
}
.h3_testimonial_slider_wrapper {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.h3_testimonial_slider_wrapper::after, .h3_testimonial_slider_wrapper::before {
  content: "";
  width: 110%;
  height: 1px;
  position: absolute;
  inset-inline-start: -16px;
  background-color: var(--tj-color-border-3);
}
.h3_testimonial_slider_wrapper::before {
  top: 0;
}
.h3_testimonial_slider_wrapper::after {
  bottom: 0;
}
.h3_testimonial_item.tj_testimonial_item {
  border-right: 1px solid var(--tj-color-border-3);
  padding: 0;
  padding-inline-start: 30px;
  padding-inline-end: 30px;
  display: flex;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_testimonial_item.tj_testimonial_item {
    flex-wrap: wrap;
    padding-inline-start: 15px;
    padding-inline-end: 15px;
    gap: 27px;
  }
}
.h3_testimonial_item.tj_testimonial_item .rating {
  margin-bottom: 22px;
}
.h3_testimonial_item.tj_testimonial_item .review_text {
  font-size: 22px;
  line-height: 1.545;
  text-align: start;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
.h3_testimonial_item.tj_testimonial_item .review_text > span {
  color: var(--tj-color-light-2);
}
.h3_testimonial_item.tj_testimonial_item .author-img {
  max-width: 325px;
  flex-shrink: 0;
  overflow: hidden;
}
.h3_testimonial_item.tj_testimonial_item .author-img img {
  height: 100%;
  aspect-ratio: 327/385;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_testimonial_item.tj_testimonial_item .author-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    flex-shrink: 1;
  }
  .h3_testimonial_item.tj_testimonial_item .author-img img {
    aspect-ratio: 1/1;
    width: 100%;
  }
}
.h3_testimonial_item.tj_testimonial_item .author-info .name {
  color: var(--tj-color-light-1);
}
.h3_testimonial_item.tj_testimonial_item .testimonial_content {
  text-align: start;
  padding: 0;
  margin-bottom: 0;
  background-color: transparent;
}
.h3_testimonial_item.tj_testimonial_item .testimonial_content_wrapper {
  max-width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h3_testimonial_item.tj_testimonial_item .testimonial_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 15px;
  border-top: 1px solid var(--tj-color-border-3);
}
.h3_testimonial_item.tj_testimonial_item .testimonial_bottom .tj-author-profile {
  flex-direction: row;
  justify-content: start;
  text-align: start;
  gap: 15px;
}
.h3_testimonial_item.tj_testimonial_item:hover .author-img {
  max-width: 325px;
  flex-shrink: 0;
}
.h3_testimonial_item.tj_testimonial_item:hover .author-img img {
  transform: scale(1.1);
}

.about-testimonial-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.about-testimonial-section .section_heading {
  max-width: 700px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-testimonial-section .section_heading {
    max-width: 550px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-testimonial-section .section_heading {
    max-width: 400px;
  }
}
.about-testimonial-section .tj_swiper_nav_wrapper {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-testimonial-section .tj_swiper_nav_wrapper {
    margin-top: 20px;
  }
}
.about-testimonial-section .h3-slider-prev, .about-testimonial-section .h3-slider-next {
  background-color: transparent;
  border: 1px solid var(--tj-color-theme-bg-dark);
}
.about-testimonial-section .h3-slider-prev > span i, .about-testimonial-section .h3-slider-next > span i {
  color: var(--tj-color-theme-bg-dark);
}
.about-testimonial-section .h3-slider-prev:hover, .about-testimonial-section .h3-slider-next:hover {
  border-color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-primary);
}
.about-testimonial-section .h3-slider-prev:hover > span i, .about-testimonial-section .h3-slider-next:hover > span i {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-testimonial-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-testimonial-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.about_testimonial_slider {
  overflow: visible;
}
.about_testimonial_slider_wrapper {
  padding-top: 60px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_slider_wrapper {
    padding-top: 30px;
  }
}
.about_testimonial_item.tj_testimonial_item {
  background-color: var(--tj-color-theme-bg);
  padding: 50px 0;
}
.about_testimonial_item.tj_testimonial_item .testimonial_top {
  display: flex;
  align-items: center;
  padding: 0 40px 30px;
  border-bottom: 1px solid var(--tj-color-border-1);
}
.about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile {
  flex-direction: row;
  justify-content: start;
  text-align: start;
  gap: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile .author-img {
    width: 76px;
    height: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile .author-img {
    width: 66px;
    height: 66px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile .author-info .name {
    font-size: 22px;
    margin-bottom: 6px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile .author-info .name {
    font-size: 18px;
    margin-bottom: 4px;
    margin-top: 4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top .tj-author-profile {
    gap: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top {
    padding: 0 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_top {
    padding: 0 20px 20px;
  }
}
.about_testimonial_item.tj_testimonial_item .testimonial_content {
  text-align: start;
  padding: 0;
  background-color: transparent;
  padding: 24px 40px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_content {
    padding: 24px 30px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .testimonial_content {
    padding: 20px 20px 0;
  }
}
.about_testimonial_item.tj_testimonial_item .review_text {
  font-size: 26px;
  line-height: 1.46;
  text-align: start;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_testimonial_item.tj_testimonial_item .review_text {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_testimonial_item.tj_testimonial_item .review_text {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_testimonial_item.tj_testimonial_item .review_text {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .review_text {
    font-size: 18px;
  }
}
.about_testimonial_item.tj_testimonial_item .rating {
  margin-top: 40px;
  margin-bottom: 0;
}
@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) {
  .about_testimonial_item.tj_testimonial_item .rating {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item .rating {
    font-size: 16px;
    margin-top: 25px;
  }
  .about_testimonial_item.tj_testimonial_item .rating .label {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about_testimonial_item.tj_testimonial_item {
    padding: 40px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about_testimonial_item.tj_testimonial_item {
    padding: 30px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about_testimonial_item.tj_testimonial_item {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about_testimonial_item.tj_testimonial_item {
    padding: 20px 0;
  }
}
.about_testimonial_item.tj_testimonial_item.tj-theme-bg-dark {
  background-color: var(--tj-color-theme-bg-dark);
}
.about_testimonial_item.tj_testimonial_item.tj-theme-bg-dark .testimonial_top {
  border-color: var(--tj-color-border-3);
}
.about_testimonial_item.tj_testimonial_item.tj-theme-bg-dark .testimonial_top .tj-author-profile .author-info .name {
  color: var(--tj-color-light-1);
}
.about_testimonial_item.tj_testimonial_item.tj-theme-bg-dark .testimonial_top .tj-author-profile .author-info .designation {
  color: var(--tj-color-light-3);
}
.about_testimonial_item.tj_testimonial_item.tj-theme-bg-dark .review_text span {
  color: var(--tj-color-light-1);
}

/* !END: Testimonial CSS */
/**----------------------------------------
START: Award CSS
----------------------------------------*/
.h2-award-section {
  padding-top: 60px;
  padding-bottom: 180px;
  position: relative;
  z-index: 1;
}
.h2-award-section .blocks-shape {
  top: 46%;
  left: -110px;
  transform: scaleX(-1) rotate(-90deg);
  background-color: var(--tj-color-theme-bg-2);
  z-index: 5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-award-section .blocks-shape {
    max-width: 340px;
    left: -95px;
    top: 42%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-award-section .blocks-shape {
    max-width: 300px;
    left: -82px;
    top: 42%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-section .blocks-shape {
    display: none;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-award-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-award-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h2-award-header {
  margin-inline-start: 300px;
}
.h2-award-header .section_heading {
  max-width: 790px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-award-header .section_heading {
    max-width: 670px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-award-header .section_heading {
    max-width: 620px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-header .section_heading {
    max-width: 500px;
  }
}
.h2-award-header .sec_heading_right {
  margin-bottom: 15px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-award-header {
    margin-inline-start: 220px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-award-header {
    margin-inline-start: 150px;
  }
}
@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) {
  .h2-award-header {
    margin-inline-start: 0;
  }
}
.h2-award-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-top: 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-award-wrapper {
    margin-top: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-wrapper {
    margin-top: 25px;
  }
}
.h2-award-img {
  max-width: 440px;
  width: 100%;
  margin-inline-start: auto;
  margin-inline-end: 185px;
  mix-blend-mode: luminosity;
}
.h2-award-img-wrap {
  width: 50%;
  position: relative;
  background-color: var(--tj-color-theme-bg);
  z-index: 1;
}
.h2-award-img-wrap .award-title-img {
  position: absolute;
  max-width: 498px;
  width: 100%;
  left: 45px;
  bottom: 115px;
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-award-img-wrap .award-title-img {
    max-width: 450px;
    bottom: 96px;
    left: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-award-img-wrap .award-title-img {
    max-width: 380px;
    bottom: 120px;
    left: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-award-img-wrap .award-title-img {
    max-width: 350px;
    bottom: 100px;
    left: 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) {
  .h2-award-img-wrap .award-title-img {
    max-width: 360px;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-img-wrap {
    width: 100%;
    order: 2;
  }
}
.h2-award-img img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2-award-img {
    margin-inline-end: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2-award-img {
    max-width: 400px;
    margin-inline-end: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-award-img {
    max-width: 360px;
    margin-inline-end: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-img {
    max-width: 360px;
    margin-inline-end: auto;
  }
}
.h2-award-item {
  border-top: 1px solid var(--tj-color-border-3);
  position: relative;
  z-index: 1;
}
.h2-award-item-wrap {
  width: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-item-wrap {
    width: 100%;
    order: 1;
  }
}
.h2-award-item:last-child {
  border-bottom: 1px solid var(--tj-color-border-3);
}
.h2-award-item::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  background-color: var(--tj-color-theme-primary);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.h2-award-item .award-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  transition: all 0.5s ease-in-out;
}
@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) {
  .h2-award-item .award-inner {
    padding: 25px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-item .award-inner {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
.h2-award-item .award-title {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-award-item .award-title {
    font-size: 26px;
  }
}
.h2-award-item .sec_subtitle {
  transition: all 0.3s ease-in-out;
}
.h2-award-item .sec_subtitle > span {
  transition: all 0.3s ease-in-out;
}
.h2-award-item:hover {
  border-color: var(--tj-color-theme-primary);
}
.h2-award-item:hover + .h2-award-item {
  border-color: var(--tj-color-theme-primary);
}
.h2-award-item:hover + .h2-award-item:last-child {
  border-bottom-color: var(--tj-color-border-3);
}
.h2-award-item:hover::before {
  height: 100%;
}
.h2-award-item:hover .award-inner {
  padding-inline-start: 30px;
  padding-inline-end: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-award-item:hover .award-inner {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-award-item:hover .award-inner {
    padding-inline-start: 20px;
    padding-inline-end: 20px;
  }
}
.h2-award-item:hover .award-title {
  color: var(--tj-color-light-1);
}
.h2-award-item:hover .sec_subtitle {
  color: var(--tj-color-light-1);
}
.h2-award-item:hover .sec_subtitle > span {
  color: var(--tj-color-light-1);
}

.blocks-shape {
  max-width: 400px;
  width: 100%;
  aspect-ratio: 400/185;
  overflow: hidden;
  pointer-events: none;
  mask-image: url(../images/shapes/blocks-shape.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: top left;
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  z-index: -1;
}

/**----------------------------------------
START: Client CSS
----------------------------------------*/
.h1-client-section {
  border-top: 1px solid var(--tj-color-border-2);
  padding-top: 60px;
  padding-bottom: 60px;
}
.h1_client_wrapper .section_heading {
  margin-bottom: 52px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_client_wrapper .section_heading {
    margin-bottom: 40px;
  }
}

.tj_client_item {
  width: 100%;
  background-color: var(--tj-color-theme-bg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 11px;
  z-index: 1;
  transition: all 0.4s ease-in-out 0s;
}
.tj_client_item::before {
  content: "";
  background-color: var(--tj-color-theme-primary);
  width: 100%;
  height: 0;
  bottom: 0;
  position: absolute;
  z-index: -1;
  transition: all 0.5s;
}
.tj_client_item > span {
  max-width: 204px;
  width: 100%;
  overflow: hidden;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.tj_client_item > span img {
  max-width: 100%;
  height: auto;
}
.tj_client_item > span .front {
  display: block;
  transition: all 0.5s;
}
.tj_client_item > span .back {
  position: absolute;
  top: 100%;
  display: block;
  transition: all 0.5s;
}
.tj_client_item:hover, .tj_client_item:focus {
  background-color: var(--tj-color-theme-bg);
}
.tj_client_item:hover::before, .tj_client_item:focus::before {
  height: 100%;
}
.tj_client_item:hover > span .front, .tj_client_item:focus > span .front {
  transform: translateY(-150%);
}
.tj_client_item:hover > span .back, .tj_client_item:focus > span .back {
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_client_item > span {
    max-width: 170px;
  }
}
@media (max-width: 575px) {
  .tj_client_item > span {
    max-width: 130px;
  }
}

.h2-client-section {
  padding-bottom: 150px;
}
.h2-client-section .section_heading {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-client-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-client-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-client-section {
    padding-bottom: 70px;
  }
}
.h2_client_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tj-color-border-3);
  border-left: 1px solid var(--tj-color-border-3);
}
.h2_client_wrap .tj_client_item {
  min-height: 260px;
  border-bottom: 1px solid var(--tj-color-border-3);
  border-right: 1px solid var(--tj-color-border-3);
  position: relative;
}
.h2_client_wrap .tj_client_item::before {
  display: none;
}
.h2_client_wrap .tj_client_item > span img {
  transition: opacity 0.4s ease, transform 0.8s ease;
  transition-delay: 0.5s;
}
.h2_client_wrap .tj_client_item > span .back {
  top: 0;
  opacity: 0;
}
.h2_client_wrap .tj_client_item:hover > span .front, .h2_client_wrap .tj_client_item:focus > span .front {
  transform: translate(0);
}
.h2_client_wrap .tj_client_item:hover > span .back, .h2_client_wrap .tj_client_item:focus > span .back {
  top: 0;
  transform: translate(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .h2_client_wrap .tj_client_item {
    min-height: 200px;
  }
}
@media (max-width: 575px) {
  .h2_client_wrap .tj_client_item {
    min-height: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_client_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

.h3_client_section {
  padding-top: 150px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_client_section {
    padding-top: 94px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_client_section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_client_section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h3_client_section_header .sec_subtitle {
  margin-top: 26px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_client_section_header .sec_subtitle {
    margin-top: 0;
  }
}
.h3_client_section .section_heading {
  max-width: 885px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_client_section .section_heading {
    max-width: 730px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_client_section .section_heading {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_client_section .section_heading {
    margin-bottom: 40px;
  }
}
.h3_client_section .section_heading .sec_title {
  margin-bottom: 20px;
}
.h3_client_card {
  max-width: 290px;
  padding: 30px;
  background-color: var(--tj-color-theme-bg-2);
}
.h3_client_card .tj_users_list {
  margin-bottom: 20px;
}
.h3_client_card .trusted_text {
  color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_client_card {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .h3_client_card {
    max-width: 100%;
  }
}
.h3_client_wrap {
  max-width: 886px;
  margin-inline-start: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--tj-color-border-3);
  border-left: 1px solid var(--tj-color-border-3);
  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) {
  .h3_client_wrap {
    margin-inline-start: 0;
  }
}
@media (max-width: 575px) {
  .h3_client_wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.h3_client_wrap::after {
  width: 4px;
  height: calc(33.3333333333% - 1px);
  inset-inline-start: -1px;
  transform: translate(-50%, calc(100% + 1px));
}
.h3_client_wrap .tj_client_item {
  aspect-ratio: 221/210;
  border-bottom: 1px solid var(--tj-color-border-3);
  border-right: 1px solid var(--tj-color-border-3);
  position: relative;
}
.h3_client_wrap .tj_client_item::before {
  display: none;
}
.h3_client_wrap .tj_client_item::after {
  content: "";
  position: absolute;
  background-color: var(--tj-color-theme-bg);
  opacity: 0;
}
.h3_client_wrap .tj_client_item:nth-child(3)::after {
  width: 100%;
  height: 4px;
  inset-inline-end: 0;
  top: -1px;
  transform: translateY(-50%);
  opacity: 1;
}
.h3_client_wrap .tj_client_item:nth-child(5)::after {
  width: 4px;
  height: 100%;
  inset-inline-start: 0;
  transform: translateX(-50%);
  opacity: 1;
}
.h3_client_wrap .tj_client_item:nth-child(8), .h3_client_wrap .tj_client_item:nth-child(10) {
  border-right: 0;
}
.h3_client_wrap .tj_client_item:nth-child(10), .h3_client_wrap .tj_client_item:nth-child(11) {
  border-bottom: 0;
}
.h3_client_wrap .tj_client_item > span {
  aspect-ratio: 205/72;
  max-width: 180px;
}
.h3_client_wrap .tj_client_item > span img {
  transition: opacity 0.4s ease, transform 0.8s ease;
  transition-delay: 0.5s;
  width: 100%;
}
.h3_client_wrap .tj_client_item > span .back {
  top: 0;
  opacity: 0;
}
.h3_client_wrap .tj_client_item > span .middle {
  position: absolute;
  top: 0;
  display: block;
  opacity: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_client_wrap .tj_client_item:not(:has(span)) {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_client_wrap .tj_client_item {
    max-width: 150px;
  }
  .h3_client_wrap .tj_client_item > span {
    max-width: 135px;
  }
}
.h3_client_wrap .tj_client_item:hover > span .front, .h3_client_wrap .tj_client_item:focus > span .front {
  transform: translate(0);
}
.h3_client_wrap .tj_client_item:hover > span .back, .h3_client_wrap .tj_client_item:focus > span .back {
  top: 0;
  transform: translate(0);
}

/* !END: Client CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.h1-blog-section {
  padding-top: 135px;
  padding-bottom: 150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1-blog-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1-blog-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .h1-blog-section .view-more-btn {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1-blog-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .h1-blog-section .view-more-btn {
    margin-top: 40px;
  }
}
.h1_blog_wrapper .blog_section_header {
  max-width: calc(100% - (33.333% + 10px));
  width: 100%;
  margin-left: auto;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
}
.h1_blog_wrapper .blog_section_header .blog_desc {
  max-width: 390px;
  width: 100%;
}
.h1_blog_wrapper .blog_section_header .section_heading {
  max-width: 680px;
  width: 100%;
}
.h1_blog_wrapper .blog_section_header .section_heading .view-more-btn {
  margin-top: 24px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h1_blog_wrapper .blog_section_header {
    max-width: 75%;
  }
  .h1_blog_wrapper .blog_section_header .section_heading {
    max-width: 560px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h1_blog_wrapper .blog_section_header {
    max-width: 100%;
  }
  .h1_blog_wrapper .blog_section_header .section_heading {
    max-width: 550px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h1_blog_wrapper .blog_section_header {
    max-width: 100%;
  }
  .h1_blog_wrapper .blog_section_header .section_heading {
    max-width: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_blog_wrapper .blog_section_header {
    flex-direction: column;
    align-items: start;
    max-width: 100%;
    margin-bottom: 50px;
  }
  .h1_blog_wrapper .blog_section_header .section_heading {
    max-width: 550px;
  }
  .h1_blog_wrapper .blog_section_header .blog_desc {
    margin-top: 15px;
    max-width: 600px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h1_blog_wrapper .blog_section_header {
    margin-bottom: 40px;
  }
}
.h1_blog_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 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) {
  .h1_blog_grid {
    grid-template-columns: 1fr;
  }
}

.tj_blog_item {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom: 1px solid var(--tj-color-heading-primary);
  padding-bottom: 31px;
}
.tj_blog_item .blog_image {
  display: flex;
  margin-bottom: 20px;
  overflow: hidden;
}
.tj_blog_item .blog_image img {
  width: 100%;
  height: auto;
  transition: transform 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.tj_blog_item .blog_meta {
  margin-bottom: 15px;
}
.tj_blog_item .blog_title {
  margin: 0;
  letter-spacing: -0.015em;
}
.tj_blog_item .blog_title a:hover .reveal-line .front {
  transform: translateY(-150%);
}
.tj_blog_item .blog_title a:hover .reveal-line .back {
  top: 50%;
  transform: translateY(-50%);
}
.tj_blog_item .blog_btn {
  margin-top: 24px;
}
.tj_blog_item:hover .blog_image img {
  transform: scale(1.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_item .blog_title {
    font-size: 26px;
  }
}

.blog_meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_meta_item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--tj-color-text-body);
  letter-spacing: -0.015em;
  position: relative;
}
.blog_meta_item:not(:first-child) {
  padding-left: 13px;
  margin-left: 12px;
}
.blog_meta_item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 12px;
  transform: translateY(-50%);
  background-color: var(--tj-color-heading-primary);
}
.blog_meta_item .author_img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}
.blog_meta_item a {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
}
.blog_meta_item a:hover {
  color: var(--tj-color-theme-primary);
}

.h2-blog-section {
  padding-bottom: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-blog-section {
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-blog-section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-blog-section {
    padding-bottom: 70px;
  }
}
.h2_blog_header {
  margin-bottom: 75px;
}
.h2_blog_header .section_heading {
  max-width: 700px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_blog_header .section_heading {
    max-width: 550px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_header .section_heading {
    max-width: 400px;
  }
}
.h2_blog_header .sec_heading_right {
  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) {
  .h2_blog_header .sec_heading_right {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_blog_header {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_header {
    margin-bottom: 40px;
  }
}
.h2_blog_header .tj_marquee_btn .text_btn {
  max-width: 138px;
}
.h2_blog_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  height: 790px;
  overflow: hidden;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_blog_wrap {
    height: 700px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_blog_wrap {
    height: 620px;
  }
}
@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) {
  .h2_blog_wrap {
    height: auto;
  }
}
.h2_blog_left {
  flex: 1;
  height: 790px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_blog_left {
    height: 700px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_blog_left {
    height: 620px;
  }
}
@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) {
  .h2_blog_left {
    height: auto;
    flex: auto;
  }
}
.h2_blog_right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 30px;
}
@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) {
  .h2_blog_right {
    flex: auto;
    gap: 40px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_right {
    grid-template-columns: 100%;
    gap: 30px 20px;
  }
}
.h2_blog_item {
  border: 0;
  padding: 0;
}
.h2_blog_item_big {
  border: 0;
  padding: 0;
  position: relative;
}
.h2_blog_item_big .blog_image {
  margin: 0;
  height: 790px;
  position: relative;
}
.h2_blog_item_big .blog_image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(12, 12, 12, 0) 50%, rgb(12, 12, 12) 80%);
  z-index: 1;
}
.h2_blog_item_big .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_item_big .blog_image img {
    min-height: 400px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .h2_blog_item_big .blog_image {
    height: 700px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_blog_item_big .blog_image {
    height: 620px;
  }
}
@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) {
  .h2_blog_item_big .blog_image {
    height: auto;
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_item_big .blog_image {
    min-height: 400px;
  }
}
.h2_blog_item_big .blog_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 30px 40px 30px;
  z-index: 2;
}
.h2_blog_item_big .blog_content .blog_meta_item {
  color: var(--tj-color-light-1);
}
.h2_blog_item_big .blog_content .blog_meta_item:not(:first-child) {
  padding-left: 0;
}
.h2_blog_item_big .blog_content .blog_meta_item:not(:first-child)::before {
  display: none;
}
.h2_blog_item_big .blog_content .blog_meta_item .category {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
}
.h2_blog_item_big .blog_content .blog_meta_item .category:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.h2_blog_item_big .blog_content .blog_title {
  font-size: 48px;
  line-height: 1.16;
  color: var(--tj-color-light-1);
  margin-bottom: 18px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h2_blog_item_big .blog_content .blog_title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_item_big .blog_content .blog_title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_blog_item_big .blog_content {
    padding: 20px 20px 25px 20px;
  }
}
.h2_blog_item .blog_meta_item:not(:first-child) {
  padding-left: 0;
}
.h2_blog_item .blog_meta_item:not(:first-child)::before {
  display: none;
}
.h2_blog_item .category {
  color: var(--tj-color-heading-primary);
  border-color: var(--tj-color-heading-primary);
}
.h2_blog_item .category:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.h2_blog_item .blog_title {
  line-height: 1.36;
  margin-bottom: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h2_blog_item .blog_title {
    font-size: 24px;
  }
}

.tj-sticky-right {
  will-change: transform;
}

.h3-blog-section {
  padding-bottom: 140px;
  padding-top: 120px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-blog-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-blog-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-blog-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h3_blog_header {
  margin-bottom: 83px;
  flex-direction: row-reverse;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_blog_header {
    margin-bottom: 50px;
    gap: 10px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_header {
    margin-bottom: 40px;
    gap: 10px !important;
  }
}
.h3_blog_header .section_heading {
  max-width: 882px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_blog_header .section_heading {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_blog_header .section_heading {
    max-width: 566px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_header .section_heading {
    max-width: 100%;
  }
}
.h3_blog_header .desc_wrapper {
  max-width: 305px;
}
.h3_blog_header .desc_wrapper .desc {
  margin-bottom: 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) {
  .h3_blog_header .desc_wrapper {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_header .desc_wrapper .desc {
    margin-bottom: 20px;
  }
}
.h3_blog_wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_blog_wrap {
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_blog_wrap {
    gap: 30px;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_wrap {
    gap: 20px;
    flex-wrap: wrap;
  }
}
.h3_blog_item {
  width: 50%;
  border: 0;
  padding: 0;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h3_blog_item {
    width: calc(50% - 15px);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_item {
    width: 100%;
  }
}
.h3_blog_item::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--tj-color-theme-bg-dark);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.h3_blog_item .blog_meta_item:not(:first-child) {
  padding-left: 0;
}
.h3_blog_item .blog_meta_item:not(:first-child)::before {
  display: none;
}
.h3_blog_item .blog_meta_item.date {
  color: var(--tj-color-light-2);
}
.h3_blog_item .blog_image {
  min-height: 520px;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_item .blog_image {
    min-height: 450px;
  }
}
.h3_blog_item .blog_image img {
  object-fit: cover;
}
.h3_blog_item .blog_content {
  position: absolute;
  inset: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_item .blog_content {
    inset: 25px;
    inset-inline-start: 20px;
    inset-inline-end: 20px;
  }
}
.h3_blog_item .category {
  color: var(--tj-color-light-2);
  border-color: var(--tj-color-border-3);
}
.h3_blog_item .blog_title {
  font-size: 24px;
  line-height: 1.3333;
  margin-bottom: 20px;
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3_blog_item .blog_title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3_blog_item .blog_title {
    max-width: 97%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3_blog_item .blog_title {
    font-size: 24px;
  }
}
.h3_blog_item .tj_icon_btn .icon_btn {
  background-color: var(--tj-color-theme-bg-dark-2);
}
.h3_blog_item .tj_icon_btn.text-underline-btn .underline-text {
  position: relative;
  z-index: 1;
  color: var(--tj-color-light-2);
}
.h3_blog_item:hover::after {
  opacity: 50%;
}
.h3_blog_item:hover .category,
.h3_blog_item:hover .blog_meta_item.date {
  color: var(--tj-color-light-1);
}
.h3_blog_item:hover .category {
  border-color: var(--tj-color-border-2);
}
.h3_blog_item:hover .category:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.h3_blog_item:hover .tj_icon_btn.text-underline-btn .underline-text {
  color: var(--tj-color-light-1);
}
.h3_blog_item:hover .tj_icon_btn.text-underline-btn:hover .icon_btn {
  background-color: var(--tj-color-theme-primary);
}

.tj_blog_section {
  padding-bottom: 150px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_section {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_section {
    padding-bottom: 70px;
  }
}
.tj_blog_item_standard {
  padding-bottom: 0;
  border-bottom: 0;
}
.tj_blog_item_standard:not(:last-child) {
  margin-bottom: 50px;
}
.tj_blog_item_standard .blog_image {
  margin-bottom: 24px;
}
.tj_blog_item_standard .blog_desc {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.55;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_item_standard .blog_desc {
    font-size: 16px;
  }
}
.tj_blog_item_standard .blog_desc p:last-child {
  margin-bottom: 0;
}
.tj_blog_item_standard .blog_btn {
  margin-top: 22px;
}
.tj_blog_item_standard .blog_content .blog_meta_item:not(:first-child) {
  padding-left: 0;
}
.tj_blog_item_standard .blog_content .blog_meta_item:not(:first-child)::before {
  display: none;
}
.tj_blog_item_standard .blog_content .category {
  color: var(--tj-color-heading-primary);
  border-color: var(--tj-color-heading-primary);
}
.tj_blog_item_standard .blog_content .category:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.tj_blog_featured {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_featured {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_featured {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_featured {
    padding-bottom: 70px;
  }
}
.tj_blog_featured .section_heading {
  margin-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_featured .section_heading {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_featured .section_heading {
    margin-bottom: 30px;
  }
}
.tj_blog_featured .section_heading .sec_title {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.05em;
  margin-top: 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 76px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 68px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .tj_blog_featured .section_heading .sec_title {
    font-size: 41px;
  }
}
.tj_blog_featured_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(50% - 15px), 1fr));
  grid-gap: 30px;
  justify-content: center;
}
@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_blog_featured_wrapper {
    grid-template-columns: 100%;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:last-child) {
  margin-bottom: 0;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child {
  grid-row: 1/3;
  flex-direction: column;
  align-items: start;
  gap: 0;
  position: relative;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_image {
  margin: 0;
  height: 790px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_image {
    height: 545px;
  }
}
@media (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_image {
    height: 450px;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(12, 12, 12, 0) 50%, rgb(12, 12, 12) 80%);
  z-index: 1;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_title {
  font-size: 48px;
  line-height: 1.16;
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_title {
    font-size: 28px;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_desc {
  display: none;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_meta_item {
  color: var(--tj-color-light-1);
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_meta_item .category {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_meta_item .category:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 30px 40px;
  z-index: 2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:first-child .blog_content {
    padding: 30px 20px;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) {
  flex-direction: row;
  align-items: stretch;
}
@media (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) {
    flex-wrap: wrap;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_image {
  width: 48.6%;
  height: 380px;
  margin-bottom: 0;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_image img {
  object-fit: cover;
}
@media (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_image {
    width: 100%;
    height: 300px;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_title {
  font-size: 32px;
  line-height: 1.25;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_title {
    font-size: 24px;
  }
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_desc {
  margin-top: 14px;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_btn {
  justify-content: flex-start;
}
.tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_content {
  width: 51.4%;
  padding: 30px;
  border-style: solid;
  border-color: var(--tj-color-border-1);
  border-width: 1px;
  border-inline-start-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_content {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .tj_blog_featured_wrapper .tj_blog_item_standard:not(:first-child) .blog_content {
    border-inline-start-width: 1px;
    border-top-width: 0;
    width: 100%;
  }
}
.tj_blog_grid {
  display: flex;
  flex-wrap: wrap;
  margin-inline-start: -15px;
  margin-inline-end: -15px;
}
.tj_blog_grid_area {
  padding-top: 120px;
  padding-bottom: 130px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_grid_area {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_grid_area {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_grid_area {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}
.tj_blog_grid_area .section_heading .sec_title {
  margin-top: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_blog_grid {
    margin-inline-start: -10px;
    margin-inline-end: -10px;
  }
}
.tj_blog_grid_header {
  margin-bottom: 60px;
  align-items: flex-start;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_grid_header {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_grid_header {
    margin-bottom: 40px;
  }
}
.tj_blog_grid .tj_blog_item_standard {
  width: 25%;
  padding: 0 15px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_grid .tj_blog_item_standard {
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_grid .tj_blog_item_standard {
    width: 33.3333333%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_grid .tj_blog_item_standard {
    width: 50%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_grid .tj_blog_item_standard {
    width: 100%;
  }
}
.tj_blog_grid .tj_blog_item_standard .blog_image {
  aspect-ratio: 427/285;
  margin-bottom: 0;
}
.tj_blog_grid .tj_blog_item_standard .blog_image img {
  object-fit: cover;
}
.tj_blog_grid .tj_blog_item_standard .blog_title {
  font-size: 27px;
  line-height: 1.357;
}
.tj_blog_grid .tj_blog_item_standard .blog_desc {
  margin-top: 4px;
}
.tj_blog_grid .tj_blog_item_standard .blog_btn {
  justify-content: flex-start;
}
.tj_blog_grid .tj_blog_item_standard .blog_content {
  padding: 25px 30px 30px;
  border-style: solid;
  border-color: var(--tj-color-border-1);
  border-width: 1px;
  border-top-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_blog_grid .tj_blog_item_standard .blog_title {
    font-size: 27px;
  }
  .tj_blog_grid .tj_blog_item_standard .blog_desc {
    font-size: 16px;
  }
  .tj_blog_grid .tj_blog_item_standard .blog_content {
    padding: 25px 15px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_grid .tj_blog_item_standard .blog_content {
    padding: 25px 15px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_grid .tj_blog_item_standard .blog_title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_grid .tj_blog_item_standard .blog_title {
    font-size: 24px;
  }
  .tj_blog_grid .tj_blog_item_standard .blog_content {
    padding: 25px 20px 30px;
  }
}

/**----------------------------------------
START: CTA CSS
----------------------------------------*/
.h1-cta-section {
  position: relative;
  background-color: var(--tj-color-theme-primary);
  padding-top: 75px;
  padding-bottom: 75px;
  z-index: 1;
  overflow: hidden;
}
.h1-cta-section .bg_image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  object-fit: cover;
  mix-blend-mode: luminosity;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .h1-cta-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.h1_cta_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.h1_cta_wrapper .cta_title {
  color: var(--tj-color-light-1);
  margin: 0;
}
.h1_cta_wrapper .cta_buttons {
  gap: 10px;
}
.h1_cta_wrapper .cta_buttons .tj_bordered_btn {
  border: none;
  background-color: var(--tj-color-light-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h1_cta_wrapper .cta_title {
    font-size: 72px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h1_cta_wrapper .cta_title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .h1_cta_wrapper .cta_title {
    font-size: 60px;
  }
  .h1_cta_wrapper .tj_bordered_btn {
    padding: 13px;
  }
}

/* !END: CTA CSS */
/**----------------------------------------
START: Pricing CSS
----------------------------------------*/
.h2-pricing-section {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2-pricing-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h2-pricing-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2-pricing-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.h2_pricing_header .section_heading {
  max-width: 770px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h2_pricing_header .section_heading {
    max-width: 600px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_pricing_header .section_heading {
    max-width: 600px;
  }
}
.h2_pricing_header .sec_heading_right {
  margin-bottom: 15px;
}
.h2_pricing_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 75px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h2_pricing_wrap {
    gap: 30px;
    margin-top: 40px;
  }
}

.tj_pricing_item {
  flex: 1;
  background-color: var(--tj-color-theme-bg-2);
  position: relative;
  z-index: 1;
  padding: 30px;
}
.tj_pricing_item .pricing_badge {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-weight: var(--tj-fw-medium);
  padding: 6px 10px;
  display: inline-flex;
  position: absolute;
  top: -27px;
  left: 0;
}
.tj_pricing_item .pricing_header {
  position: relative;
}
.tj_pricing_item .package_name {
  font-size: 24px;
  margin: 12px 0 0 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .package_name {
    margin: 5px 0 0 0;
  }
}
.tj_pricing_item .package_desc {
  margin-top: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_pricing_item .package_desc {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .package_desc {
    font-size: 16px;
    margin-top: 20px;
  }
}
.tj_pricing_item .package_start {
  color: var(--tj-color-text-body-2);
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.015em;
  margin-bottom: 15px;
}
.tj_pricing_item .package_price {
  font-size: 72px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  line-height: 0.8;
  margin-top: 52px;
  margin-bottom: 40px;
}
.tj_pricing_item .package_price_inner {
  display: flex;
}
.tj_pricing_item .package_price .currency {
  font-size: 22px;
  margin-top: 3px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .package_price .currency {
    font-size: 18px;
  }
}
.tj_pricing_item .package_price .period {
  font-size: 22px;
  margin-top: auto;
  margin-bottom: 4px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .package_price .period {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_pricing_item .package_price {
    margin-top: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .package_price {
    font-size: 50px;
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
.tj_pricing_item .pricing_btn {
  width: 100%;
  border-radius: 100px;
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-light-1);
  padding: 13px;
  gap: 4px;
}
.tj_pricing_item .pricing_btn .icon_btn {
  width: auto;
  height: auto;
}
.tj_pricing_item .pricing_btn .icon_btn::before {
  display: none;
}
.tj_pricing_item .pricing_features {
  margin-top: 55px;
  margin-bottom: 18px;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  padding-left: 0;
}
.tj_pricing_item .pricing_features > li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 18px;
  line-height: 1.56;
  position: relative;
  padding-left: 14px;
}
.tj_pricing_item .pricing_features > li::before {
  content: "";
  background-color: var(--tj-color-theme-bg-dark);
  width: 4px;
  height: 4px;
  position: absolute;
  top: 13px;
  left: 0;
}
@media (max-width: 575px) {
  .tj_pricing_item .pricing_features > li::before {
    top: 10px;
  }
}
.tj_pricing_item .pricing_features > li i,
.tj_pricing_item .pricing_features > li svg {
  display: inline-flex;
  line-height: 1;
  font-size: 16px;
  color: var(--tj-color-theme-bg-dark);
  opacity: 0.25;
  margin-top: 5px;
}
.tj_pricing_item .pricing_features > li svg {
  max-width: 16px;
  height: auto;
}
.tj_pricing_item .pricing_features > li span {
  display: inline-flex;
}
.tj_pricing_item .pricing_features > li span:hover i,
.tj_pricing_item .pricing_features > li span:hover svg {
  opacity: 1;
}
@media (max-width: 575px) {
  .tj_pricing_item .pricing_features > li {
    font-size: 16px;
    gap: 7px;
  }
  .tj_pricing_item .pricing_features > li i {
    font-size: 15px;
  }
  .tj_pricing_item .pricing_features > li svg {
    max-width: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_pricing_item .pricing_features {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_pricing_item .pricing_features {
    margin-top: 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) {
  .tj_pricing_item.pricing_popular {
    margin-top: 27px;
  }
}
.tj_pricing_item .blocks-shape {
  max-width: 220px;
  bottom: -8px;
  right: -5px;
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_pricing_item .blocks-shape {
    max-width: 160px;
    bottom: -4px;
  }
}
@media (max-width: 575px) {
  .tj_pricing_item .blocks-shape {
    max-width: 120px;
    bottom: -2px;
  }
}
@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_pricing_item {
    width: 100%;
    flex: 0 0 auto;
  }
}
@media (max-width: 575px) {
  .tj_pricing_item {
    padding: 20px 15px 30px;
  }
}
.tj_pricing_item.tj-theme-dark {
  background-color: var(--tj-color-theme-bg-dark);
}
.tj_pricing_item.tj-theme-dark .package_name {
  color: var(--tj-color-light-1);
}
.tj_pricing_item.tj-theme-dark .package_desc {
  color: var(--tj-color-light-2);
}
.tj_pricing_item.tj-theme-dark .package_start {
  color: var(--tj-color-light-3);
}
.tj_pricing_item.tj-theme-dark .package_price {
  color: var(--tj-color-light-1);
}
.tj_pricing_item.tj-theme-dark .pricing_btn {
  background-color: var(--tj-color-theme-primary);
}
.tj_pricing_item.tj-theme-dark .pricing_btn .icon_btn {
  background-color: var(--tj-color-theme-primary);
}
.tj_pricing_item.tj-theme-dark .pricing_features > li {
  color: var(--tj-color-light-2);
}
.tj_pricing_item.tj-theme-dark .pricing_features > li::before {
  background-color: var(--tj-color-light-1);
}
.tj_pricing_item.tj-theme-dark .pricing_features > li i {
  color: var(--tj-color-light-1);
}
.tj_pricing_item.tj-theme-dark .pricing_switcher {
  border-color: var(--tj-color-border-3);
}
.tj_pricing_item.tj-theme-dark .pricing_switcher .nav-link {
  color: var(--tj-color-light-1);
}
.tj_pricing_item.tj-theme-dark .pricing_switcher .nav-link.active {
  background: var(--tj-color-theme-bg-dark-2);
}

.pricing_switcher {
  border-radius: 50px;
  display: inline-flex;
  max-width: 190px;
  padding: 4px;
  border: 1px solid var(--tj-color-border-2);
  position: absolute;
  top: 0;
  right: 0;
}
.pricing_switcher .nav-link {
  display: inline-flex;
  background: transparent;
  color: var(--tj-color-heading-primary);
  font-size: 16px;
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  text-transform: capitalize;
  border-radius: 30px;
  padding: 6px 10px;
  outline: none;
  border: none;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  z-index: 2;
}
.pricing_switcher .nav-link.active {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing_switcher .nav-link {
    font-size: 14px;
  }
}
.pricing_switcher .tj-active-bg {
  border-radius: 30px;
  top: 50%;
  left: 0px;
  position: absolute;
  transform: translateY(-50%);
  z-index: 1;
  background: var(--tj-color-theme-bg-dark);
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing_switcher {
    top: -4px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing_switcher {
    top: -2px;
  }
}

.pricing-tooltip {
  max-width: 180px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .pricing-tooltip {
    display: none;
  }
}
.pricing-tooltip.tooltip-bg {
  --bs-tooltip-bg: var(--tj-color-theme-bg);
  --bs-tooltip-color: var(--tj-color-heading-primary);
}

.pricing_wrap_2 .tj_pricing_item .package_desc {
  max-width: 250px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .pricing_wrap_2 .tj_pricing_item .pricing_popular:last-child {
    flex: 0 0 auto;
    margin-top: -27px;
  }
}

/**----------------------------------------
START: Purpose CSS
----------------------------------------*/
.purpose {
  margin-top: -1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .purpose {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .purpose {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.purpose-wrapper {
  overflow: hidden;
}
.purpose .sec_subtitle,
.purpose .sec_title,
.purpose .purpose-cta,
.purpose .purpose-video video,
.purpose .purpose-video-title,
.purpose .tj-progress-item {
  opacity: 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) {
  .purpose .sec_subtitle,
  .purpose .sec_title,
  .purpose .purpose-cta,
  .purpose .purpose-video video,
  .purpose .purpose-video-title,
  .purpose .tj-progress-item {
    opacity: 1;
  }
}
.purpose .section_heading {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 74.7vh;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .purpose .section_heading {
    min-height: 60.7vh;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose .section_heading {
    min-height: 60.7vh;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .purpose .section_heading {
    min-height: auto;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .purpose .section_heading .sec_title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose .section_heading .sec_title {
    font-size: 44px;
  }
}
.purpose .section_heading .tj_btn_2 {
  margin-top: 23px;
  margin-bottom: 42px;
}
.purpose-video {
  max-width: 266px;
  margin-top: 50px;
  margin-top: auto;
}
.purpose-video video {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}
.purpose-video-title {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
  max-width: 190px;
  margin-top: 20px;
  margin-bottom: -6px;
}
.purpose-mockup {
  position: absolute;
  width: 30.209vw;
  aspect-ratio: 580/680;
  inset-inline-start: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.5);
}
.purpose-mockup-wrapper {
  width: 130vw;
  height: 130vw;
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  clip-path: polygon(49.9996% 49.9996%, 50.0004% 49.9996%, 50.0004% 50.0004%, 49.9996% 50.0004%);
  background-color: var(--tj-color-theme-bg);
  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) {
  .purpose-mockup-wrapper {
    display: none;
  }
}
.purpose-mockup-wrapper img {
  transition: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .purpose-mockup {
    aspect-ratio: 580/802;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-mockup {
    width: 33.209vw;
    aspect-ratio: 580/845;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .purpose-mockup {
    position: relative;
    inset-inline-start: 0;
    top: 0;
    transform: translate(0 !important, 0 !important) scale(1.5);
  }
}
.purpose-mockup-items {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.purpose-mockup-item {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  inset: 0;
  z-index: 1;
}
.purpose-mockup-item:not(:first-child) {
  transform-origin: top;
  will-change: transform;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-mockup-item {
    flex-wrap: wrap;
  }
}
.purpose-img {
  width: 100%;
  margin-bottom: 25px;
}
.purpose-img img {
  width: 100%;
}
.purpose-title {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.purpose-sln {
  color: var(--tj-color-light-2);
  transition: all 0.4s ease-in-out 0s;
}
.purpose-desc {
  max-width: 305px;
  height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out 0s;
}
.purpose-desc .desc {
  margin-bottom: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .purpose-desc {
    max-width: 265px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .purpose-desc {
    max-width: 236px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-desc {
    max-width: 100%;
  }
  .purpose-desc .desc {
    padding-top: 20px;
  }
}
.purpose-item {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
  position: relative;
  border-color: var(--tj-color-border-1);
  border-style: solid;
  border-width: 0;
  border-bottom-width: 1px;
  z-index: 0;
}
.purpose-item-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-item-wrapper {
    max-width: 369px;
    margin-inline-start: auto;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-item-wrapper {
    max-width: 292px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .purpose-item-wrapper {
    padding-top: 30px;
  }
}
.purpose-item:first-child {
  border-top-width: 1px;
}
.purpose-item::after {
  content: "\e92d";
  font-family: var(--tj-ff-icons);
  position: absolute;
  inset-inline-end: 0;
  top: 35px;
  font-size: 13px;
  color: var(--tj-color-heading-primary);
  transition: all 0.4s ease-in-out 0s;
}
@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) {
  .purpose-item {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .purpose-item {
    flex-wrap: wrap;
  }
  .purpose-item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .purpose-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
  .purpose-item::after {
    display: none;
  }
  .purpose-item .purpose-sln {
    color: var(--tj-color-heading-primary);
  }
  .purpose-item .purpose-desc {
    height: auto;
  }
}
.purpose-item.active::after {
  opacity: 0;
}
.purpose-item.active .purpose-sln {
  color: var(--tj-color-heading-primary);
}
.purpose-item.active .purpose-desc {
  height: 171px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .purpose-item.active .purpose-desc {
    height: 195px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .purpose-item.active .purpose-desc {
    height: 219px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .purpose-item.active .purpose-desc {
    height: 215px;
  }
}

/* !END: Purpose CSS */
/**----------------------------------------
START: Window Shape CSS
----------------------------------------*/
.window-shape-wrapper {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.window-shape-img {
  display: block;
  z-index: 2;
  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) {
  .window-shape-img {
    display: none;
  }
}
.window-shape-img img {
  transform: scale(0) rotate(0);
  z-index: -1;
  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) {
  .window-shape-wrapper {
    height: inherit;
    flex-direction: column;
    opacity: 1 !important;
  }
  .window-shape-img img {
    display: none;
  }
}
.window-shape-screen {
  position: absolute;
  inset: 0;
}
.window-shape-screen-1 {
  z-index: 0;
}
.window-shape-screen-2 {
  z-index: 3;
  pointer-events: 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) {
  .window-shape-screen {
    position: relative;
  }
}

/* !END: Window Shape CSS */
/**----------------------------------------
START: Faq CSS
----------------------------------------*/
.tj-faq-section {
  padding-top: 140px;
  padding-bottom: 160px;
  overflow: hidden;
  position: relative;
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
.tj-faq-section .section_heading {
  max-width: 790px;
  margin-bottom: 45px;
}
@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-faq-section .section_heading {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-section .section_heading {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section .section_heading {
    margin-bottom: 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) {
  .tj-faq-section .content-wrap .desc {
    margin-bottom: 20px;
  }
  .tj-faq-section .content-wrap .desc br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.faq-action {
  margin-top: 22px;
}
.faq-card {
  max-width: 365px;
  padding: 30px;
  background-color: var(--tj-color-theme-bg-2);
}
.faq-card .tj-author-profile {
  flex-direction: row;
  justify-content: flex-start;
  text-align: start;
  gap: 13px;
}
.faq-card .author-img {
  width: 74px;
  height: 74px;
  padding: 2px;
}
.faq-card .author-info .name {
  margin-bottom: 4px;
  margin-top: 0;
}
.faq-card .desc {
  margin-top: 22px;
}
@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) {
  .faq-card .tj-author-profile {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .faq-card {
    max-width: 100%;
  }
}

.tj-faq-wrapper {
  max-width: 1038px;
  margin-inline-start: auto;
}
.tj-faq .accordion-item {
  background-color: transparent;
  border: 0;
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-bottom-width: 1px;
  position: relative;
}
.tj-faq .accordion-item:first-child {
  border-top-width: 1px;
  border-radius: 0;
}
.tj-faq .accordion-item:last-child {
  border-radius: 0;
}
.tj-faq .accordion-item .faq-title {
  font-size: 24px;
  text-align: start;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.015em;
  line-height: 0.85;
  padding: 41px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: none;
  border-bottom: 0;
}
.tj-faq .accordion-item .faq-title::after {
  content: "\e92d";
  color: var(--tj-color-theme-primary);
  font-size: 13.7px;
  font-family: var(--tj-ff-icons) !important;
  font-weight: var(--tj-fw-thin);
  text-align: center;
  position: absolute;
  inset-inline-end: 0;
  top: 35px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-light-1);
  padding-top: 1px;
  padding-inline-start: 1px;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq .accordion-item .faq-title {
    font-size: 21px;
    letter-spacing: 0;
    line-height: 1.2;
    padding: 20px 40px 20px 0;
  }
  .tj-faq .accordion-item .faq-title::after {
    font-size: 12px;
    top: 18px;
    width: 28px;
    height: 28px;
  }
}
.tj-faq .accordion-item .accordion-body {
  padding: 0;
  border: 0;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--tj-color-text-body);
  margin-top: -5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq .accordion-item .accordion-body {
    font-size: 16px;
    padding-bottom: 22px;
  }
}
.tj-faq .accordion-item .accordion-body p:last-child {
  margin-bottom: 0;
}
.tj-faq .accordion-item:not(:has(.collapsed)) .faq-title::after {
  padding-top: 1px;
  padding-inline-start: 0;
  transform: rotate(45deg);
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq {
    padding-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq {
    padding-top: 50px;
  }
}

.tj-faq-section-2 {
  padding-top: 140px;
  padding-bottom: 120px;
}
.tj-faq-section-2 .section_heading {
  margin-bottom: 70px;
}
.tj-faq-section-2 .section_heading .sec_title {
  max-width: 885px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-faq-section-2 .section_heading .sec_title {
    max-width: 650px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section-2 .section_heading .sec_title {
    max-width: 620px;
  }
}
@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-faq-section-2 .section_heading .sec_title {
    max-width: 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-faq-section-2 .section_heading {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section-2 {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-section-2 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.tj-faq-2 .accordion-item {
  background-color: var(--tj-color-theme-bg-2);
  border: 0;
  padding: 0 30px;
}
.tj-faq-2 .accordion-item:not(:last-child) {
  margin-bottom: 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) {
  .tj-faq-2 .accordion-item:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-2 .accordion-item {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-2 {
    padding-top: 40px;
  }
}

/* !END: Faq CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.tj-contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.tj-contact-section .section_heading {
  max-width: 554px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-contact-section .section_heading {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-contact-section .section_heading {
    margin-bottom: 45px;
  }
}
.tj-contact-section .section_heading .tj_icon_btn_wrapper {
  margin-top: 16px;
}
.tj-contact-section .section_heading .tj_icon_btn .icon_btn {
  background-color: var(--tj-color-light-1);
  color: var(--tj-color-heading-primary);
}
.tj-contact-section .section_heading .tj_icon_btn .flip-text {
  color: var(--tj-color-light-1);
}
.tj-contact-section .section_heading .tj_icon_btn .flip-text::after {
  background-color: var(--tj-color-light-1);
}
.tj-contact-section .sec_subtitle > span {
  color: var(--tj-color-light-2);
}
.tj-contact-section .sec_title {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-contact-section {
    padding-top: 115px;
  }
  .tj-contact-section .sec_title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-contact-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-contact-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.contact-form {
  background-color: var(--tj-color-theme-bg);
  margin-inline-start: 0;
  margin-inline-end: 15px;
  padding: 60px 35px;
  border-radius: 12px;
}
.contact-form .form-input {
  margin-bottom: 20px;
  position: relative;
}
.contact-form .form-input-inner {
  position: relative;
}
.contact-form .form-input-inner::before {
  content: "";
  width: 1px;
  height: 20px;
  position: absolute;
  inset-inline-end: 0;
  top: 41px;
  background-color: var(--tj-color-light-1);
}
.contact-form .form-input textarea,
.contact-form .form-input select,
.contact-form .form-input .nice-select,
.contact-form .form-input input[type=tel],
.contact-form .form-input input[type=text],
.contact-form .form-input input[type=email] {
  padding: 20px 0;
  padding-inline-end: 20px;
}
.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form .form-input input[type=text]::-webkit-input-placeholder,
.contact-form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
}
.contact-form .form-input textarea:-moz-placeholder,
.contact-form .form-input select:-moz-placeholder,
.contact-form .form-input .nice-select:-moz-placeholder,
.contact-form .form-input input[type=tel]:-moz-placeholder,
.contact-form .form-input input[type=text]:-moz-placeholder,
.contact-form .form-input input[type=email]:-moz-placeholder {
  color: var(--tj-color-text-body-2);
}
.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type=tel]::-moz-placeholder,
.contact-form .form-input input[type=text]::-moz-placeholder,
.contact-form .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body-2);
}
.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type=tel]:-ms-input-placeholder,
.contact-form .form-input input[type=text]:-ms-input-placeholder,
.contact-form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body-2);
}
.contact-form .form-input textarea::placeholder,
.contact-form .form-input select::placeholder,
.contact-form .form-input .nice-select::placeholder,
.contact-form .form-input input[type=tel]::placeholder,
.contact-form .form-input input[type=text]::placeholder,
.contact-form .form-input input[type=email]::placeholder {
  color: var(--tj-color-text-body-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input textarea,
  .contact-form .form-input select,
  .contact-form .form-input .nice-select,
  .contact-form .form-input input[type=tel],
  .contact-form .form-input input[type=text],
  .contact-form .form-input input[type=email] {
    padding: 10px 0;
    padding-inline-end: 15px;
  }
}
.contact-form .form-input .cf-label {
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tj-color-light-1);
  margin-bottom: 9px;
}
.contact-form .form-input .cf-label span {
  color: currentColor;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form .form-input {
    margin-bottom: 20px;
  }
  .contact-form .form-input .cf-label {
    margin-bottom: 6px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    max-width: 100%;
    margin-inline-end: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form {
    padding: 35px 20px 40px;
  }
}
.contact-form.style-2 {
  background-color: transparent;
  max-width: 800px;
  width: 100%;
  border: 0;
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding: 0;
}
.contact-form.style-2 .submit-btn {
  margin-top: 30px;
}
.contact-form.style-2 .form-input {
  margin-bottom: 55px;
  position: relative;
}
.contact-form.style-2 .form-input:last-child {
  margin-bottom: 30px;
}
.contact-form.style-2 .form-input-inner {
  position: relative;
}
.contact-form.style-2 .form-input-inner::before {
  height: 20px;
  top: 41px;
  background-color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form.style-2 .form-input-inner::before {
    height: 14px;
    top: 37px;
  }
}
.contact-form.style-2 .form-input textarea,
.contact-form.style-2 .form-input input[type=tel],
.contact-form.style-2 .form-input input[type=text],
.contact-form.style-2 .form-input input[type=email] {
  background-color: transparent;
  color: var(--tj-color-light-1);
  line-height: 0.1;
  padding: 12px 0;
  padding-inline-end: 20px;
  border-width: 0;
  border-bottom-width: 1px;
  font-size: 30px;
  letter-spacing: 0.01em;
  position: relative;
}
.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-light-1);
  font-size: 30px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.contact-form.style-2 .form-input textarea:-moz-placeholder,
.contact-form.style-2 .form-input input[type=tel]:-moz-placeholder,
.contact-form.style-2 .form-input input[type=text]:-moz-placeholder,
.contact-form.style-2 .form-input input[type=email]:-moz-placeholder {
  color: var(--tj-color-light-1);
  font-size: 30px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.contact-form.style-2 .form-input textarea::-moz-placeholder,
.contact-form.style-2 .form-input input[type=tel]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=text]::-moz-placeholder,
.contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-light-1);
  font-size: 30px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.contact-form.style-2 .form-input textarea:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder,
.contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-light-1);
  font-size: 30px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.contact-form.style-2 .form-input textarea::placeholder,
.contact-form.style-2 .form-input input[type=tel]::placeholder,
.contact-form.style-2 .form-input input[type=text]::placeholder,
.contact-form.style-2 .form-input input[type=email]::placeholder {
  color: var(--tj-color-light-1);
  font-size: 30px;
  letter-spacing: 0.01em;
  opacity: 0.6;
}
.contact-form.style-2 .form-input textarea:focus,
.contact-form.style-2 .form-input input[type=tel]:focus,
.contact-form.style-2 .form-input input[type=text]:focus,
.contact-form.style-2 .form-input input[type=email]:focus {
  border-color: var(--tj-color-light-1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form.style-2 .form-input {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-form.style-2 .form-input {
    margin-bottom: 35px;
  }
  .contact-form.style-2 .form-input textarea,
  .contact-form.style-2 .form-input input[type=tel],
  .contact-form.style-2 .form-input input[type=text],
  .contact-form.style-2 .form-input input[type=email] {
    font-size: 22px;
    padding-inline-end: 15px;
  }
  .contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
  .contact-form.style-2 .form-input input[type=tel]::-webkit-input-placeholder,
  .contact-form.style-2 .form-input input[type=text]::-webkit-input-placeholder,
  .contact-form.style-2 .form-input input[type=email]::-webkit-input-placeholder {
    font-size: 22px;
  }
  .contact-form.style-2 .form-input textarea:-moz-placeholder,
  .contact-form.style-2 .form-input input[type=tel]:-moz-placeholder,
  .contact-form.style-2 .form-input input[type=text]:-moz-placeholder,
  .contact-form.style-2 .form-input input[type=email]:-moz-placeholder {
    font-size: 22px;
  }
  .contact-form.style-2 .form-input textarea::-moz-placeholder,
  .contact-form.style-2 .form-input input[type=tel]::-moz-placeholder,
  .contact-form.style-2 .form-input input[type=text]::-moz-placeholder,
  .contact-form.style-2 .form-input input[type=email]::-moz-placeholder {
    font-size: 22px;
  }
  .contact-form.style-2 .form-input textarea:-ms-input-placeholder,
  .contact-form.style-2 .form-input input[type=tel]:-ms-input-placeholder,
  .contact-form.style-2 .form-input input[type=text]:-ms-input-placeholder,
  .contact-form.style-2 .form-input input[type=email]:-ms-input-placeholder {
    font-size: 22px;
  }
  .contact-form.style-2 .form-input textarea::placeholder,
  .contact-form.style-2 .form-input input[type=tel]::placeholder,
  .contact-form.style-2 .form-input input[type=text]::placeholder,
  .contact-form.style-2 .form-input input[type=email]::placeholder {
    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) {
  .contact-form.style-2 {
    max-width: 100%;
    margin-inline-start: 0;
  }
}

/* !END: Contact CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.tj_blog_sidebar {
  max-width: 428px;
}
@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_blog_sidebar {
    max-width: 100%;
  }
}
.tj_blog_sidebar .tj_blog_grid .tj_blog_item_standard {
  width: 100%;
}
.tj_blog_sidebar .tj_blog_grid .tj_blog_item_standard:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_sidebar .tj_blog_grid .tj_blog_item_standard {
    width: 50%;
  }
}
.tj_blog_author {
  display: flex;
  gap: 15px;
  flex-direction: column;
}
.tj_blog_author .author_images {
  width: 80px;
  height: 80px;
  border-radius: 100%;
}
.tj_blog_author .author_name {
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.tj_blog_author .author_name span {
  color: var(--tj-color-text-body-2);
  font-weight: var(--tj-fw-regular);
}
.tj_blog_author .author_degination {
  font-size: 16px;
  color: var(--tj-color-text-body-2);
}
.tj_blog_subscription {
  padding-top: 25px;
}
.tj_blog_subscription_title {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
}
.tj_blog_subscription_form form {
  position: relative;
  z-index: 1;
}
.tj_blog_subscription_form form input[type=email] {
  border-width: 0;
  border-bottom-width: 1px;
  border-color: var(--tj-color-theme-bg-dark);
  padding: 13px 50px 13px 0;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.01em;
  color: var(--tj-color-text-body);
}
.tj_blog_subscription_form form input[type=email]::placeholder {
  color: var(--tj-color-text-body);
}
.tj_blog_subscription_form form input[type=submit],
.tj_blog_subscription_form form button[type=submit] {
  width: 36px;
  height: 36px;
  font-size: 18px;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  position: absolute;
  right: 0;
  top: 10px;
  z-index: 2;
}
.tj_blog_subscription_form form input[type=submit]:hover > span i:first-child,
.tj_blog_subscription_form form input[type=submit]:hover > span svg:first-child,
.tj_blog_subscription_form form button[type=submit]:hover > span i:first-child,
.tj_blog_subscription_form form button[type=submit]:hover > span svg:first-child {
  transform: translateX(150%);
}
.tj_blog_subscription_form form input[type=submit]:hover > span i:last-child,
.tj_blog_subscription_form form input[type=submit]:hover > span svg:last-child,
.tj_blog_subscription_form form button[type=submit]:hover > span i:last-child,
.tj_blog_subscription_form form button[type=submit]:hover > span svg:last-child {
  transform: translateX(0);
}
.tj_blog_details_title {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 18px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .tj_blog_details_title {
    font-size: 76px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_blog_details_title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_blog_details_title {
    font-size: 61px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_details_title {
    font-size: 62px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_blog_details_title {
    font-size: 52px;
  }
}
@media (max-width: 575px) {
  .tj_blog_details_title {
    font-size: 35px;
  }
}
.tj_blog_details_header .tj_icon_btn {
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  gap: 7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_blog_details_header .tj_icon_btn {
    margin-bottom: 72px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_details_header .tj_icon_btn {
    margin-bottom: 52px;
  }
}
.tj_blog_details_header .tj_icon_btn .icon_btn {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 20px;
}
.tj_blog_details_header .tj_icon_btn .icon_btn i {
  color: var(--tj-color-heading-primary);
}
.tj_blog_details_header .tj_icon_btn .icon_btn i:last-child {
  transform: translateX(150%);
}
.tj_blog_details_header .tj_icon_btn .icon_btn > span {
  transform: rotate(0);
}
.tj_blog_details_header .tj_icon_btn .underline-text {
  text-transform: uppercase;
}
.tj_blog_details_header .tj_icon_btn .underline-text::before {
  display: none;
}
.tj_blog_details_header .tj_icon_btn:hover .icon_btn i:first-child {
  transform: translateX(-150%);
}
.tj_blog_details_header .blog-date {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px 30px;
  flex-wrap: wrap;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0;
  color: var(--tj-color-heading-primary);
  font-size: 18px;
  line-height: 1.5555;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_details_header .blog-date {
    font-size: 16px;
  }
}
.tj_blog_details_header .blog-date-title {
  color: var(--tj-color-text-body-2);
}
.tj_blog_details_header_right .blog_meta_item a {
  border-color: var(--tj-color-heading-primary);
}
.tj_blog_details_header_right .blog_meta_item a:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

/* !END: Blog Details CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.career_about .section_heading .sec_title {
  max-width: 1036px;
  width: 100%;
  margin-top: -8px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .career_about .section_heading .sec_title {
    max-width: 1030px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .career_about .section_heading .sec_title {
    max-width: 876px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .career_about .section_heading .sec_title {
    max-width: 736px;
    font-size: 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) {
  .career_about .section_heading .sec_title {
    max-width: 100%;
  }
}
.career_about_action_wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 100px;
  margin-top: 5px;
}
.career_about_action_wrapper .trusted_features {
  max-width: 200px;
  margin-bottom: -8px;
}
.career_about_action_wrapper .tj_users_list li {
  width: 64px;
  height: 64px;
  padding: 2px;
}
.career_about_action_wrapper .tj_users_list li span {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-radius: 100%;
}
.career_about_action_wrapper .trusted_text {
  font-weight: var(--tj-fw-medium);
  line-height: 1.42;
  color: var(--tj-color-heading-primary);
  margin-top: 18px;
}
.career_about_banner {
  width: 100%;
}

/* !END: About CSS */
/**----------------------------------------
START: Features CSS
----------------------------------------*/
.career_features {
  padding-top: 150px;
  padding-bottom: 167px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .career_features {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .career_features {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .career_features {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.career_features_heading_wrap {
  max-width: 575px;
}
.career_features_heading_wrap .section_heading {
  margin-bottom: 90px;
}
.career_features_banner {
  width: 275px;
  margin-inline-start: auto;
}
.career_features_icon {
  margin-bottom: 50px;
  display: inline-block;
}
.career_features_icon i {
  font-size: 68px;
}
.career_features_title {
  font-size: 24px;
  margin-bottom: 20px;
}
.career_features_desc {
  margin-bottom: 0;
}
.career_features_box {
  width: calc(50% - 15px);
  padding: 30px 30px 35px;
  background-color: var(--tj-color-theme-bg-2);
}
.career_features_box_wrapper {
  max-width: 885px;
  margin-inline-start: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.career_features_box:hover .career_features_icon {
  animation: gelatine 0.6s;
}

/* !END: Features CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.tj-timeline-section {
  padding-top: 140px;
  padding-bottom: 160px;
}
.tj-timeline-section .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.tj-timeline-section .section_heading .sec_title {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-timeline-section .section_heading .sec_title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-timeline-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-timeline-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-timeline-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.timeline-content {
  max-width: 885px;
  width: 100%;
  color: var(--tj-color-light-1);
  text-transform: uppercase;
  margin-bottom: 0;
}
.timeline-content-area {
  max-width: 1250px;
  width: 100%;
  display: flex;
  gap: 60px;
  margin-inline-start: auto;
  margin-inline-end: 0;
  padding-top: 90px;
  padding-bottom: 110px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .timeline-content-area {
    max-width: 1020px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .timeline-content-area {
    max-width: 980px;
    gap: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .timeline-content-area {
    max-width: 100%;
    gap: 40px;
    padding-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) {
  .timeline-content-area {
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .timeline-content-area {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .timeline-content {
    max-width: 720px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .timeline-content {
    max-width: 690px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .timeline-content {
    max-width: 650px;
    font-size: 54px;
  }
}
.timeline-img {
  max-width: 300px;
  width: 100%;
  margin-top: 13px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .timeline-img {
    max-width: 250px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .timeline-img {
    max-width: 250px;
    margin-top: 8px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .timeline-img {
    margin-top: 0;
  }
}

.timeline-slider {
  overflow: visible;
}
.timeline-slider::before {
  content: "";
  position: absolute;
  top: 65px;
  left: -60px;
  width: calc(100% + 120px);
  border-bottom: 1px solid var(--tj-color-border-3);
}
.timeline-slider .swiper-slide-active .timeline-year {
  color: var(--tj-color-theme-primary);
}
.timeline-slider .swiper-slide-active .timeline-year span {
  background-color: var(--tj-color-theme-primary);
}
.timeline-slider-wrapper {
  position: relative;
}
.timeline-slider-wrapper .tj_swiper_nav_wrapper {
  display: inline-flex;
  justify-content: end;
  gap: 15px;
  width: 100%;
  margin-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) {
  .timeline-slider-wrapper .tj_swiper_nav_wrapper {
    margin-bottom: 40px;
  }
}
.timeline-slider-wrapper .timeline-prev, .timeline-slider-wrapper .timeline-next {
  border: 1px solid var(--tj-color-light-1);
}
.timeline-slider-wrapper .timeline-prev:hover, .timeline-slider-wrapper .timeline-next:hover {
  border-color: var(--tj-color-theme-primary);
}
.timeline-slider-wrapper .timeline-item {
  max-width: 427px;
  width: 100%;
  margin: 0 auto;
}
.timeline-slider-wrapper .timeline-title {
  color: var(--tj-color-light-1);
  font-size: 24px;
  margin-bottom: 130px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .timeline-slider-wrapper .timeline-title {
    margin-bottom: 80px;
  }
}
.timeline-slider-wrapper .timeline-text {
  color: var(--tj-color-light-2);
  font-size: 18px;
}
.timeline-slider-wrapper .timeline-text p {
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .timeline-slider-wrapper .timeline-text {
    font-size: 16px;
  }
}
.timeline-slider-wrapper .timeline-inner {
  background-color: var(--tj-color-theme-bg-dark-5);
  padding: 36px 30px 34px 30px;
  position: relative;
  margin-top: 50px;
}
.timeline-slider-wrapper .timeline-inner::before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 11px solid var(--tj-color-theme-bg-dark-5);
  transform: translateX(-50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .timeline-slider-wrapper .timeline-inner {
    padding: 30px 20px;
    margin-top: 30px;
  }
}
.timeline-slider-wrapper .timeline-year {
  color: var(--tj-color-light-3);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.015;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.timeline-slider-wrapper .timeline-year span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--tj-color-light-3);
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 10px 0;
}
.timeline-slider-wrapper .timeline-year span::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-bg-dark);
}
@media (max-width: 575px) {
  .timeline-slider-wrapper .timeline-year {
    font-size: 28px;
  }
}

/* !END: About CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/
.service-banner .section_heading .sec_title {
  max-width: 1036px;
  width: 100%;
  margin-top: -8px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .service-banner .section_heading .sec_title {
    max-width: 1030px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-banner .section_heading .sec_title {
    max-width: 876px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-banner .section_heading .sec_title {
    max-width: 736px;
    font-size: 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) {
  .service-banner .section_heading .sec_title {
    max-width: 100%;
  }
}
.service-banner-bottom {
  margin-top: -50px;
}
.service-banner-bottom .inner-action {
  margin-bottom: 8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-banner-bottom {
    margin-top: -20px;
  }
}
.service-banner-img {
  height: 869px;
  overflow: hidden;
  margin-top: 120px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .service-banner-img {
    height: 750px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-banner-img {
    height: 640px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-banner-img {
    height: 480px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-banner-img {
    height: 380px;
  }
  .service-banner-img img {
    width: 100%;
    height: 162%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-banner-img {
    height: 300px;
  }
  .service-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
  }
}

.inner-counter .counter {
  font-size: 180px;
  line-height: 0.7;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .inner-counter .counter {
    font-size: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner-counter .counter {
    font-size: 130px;
  }
}
.inner-counter .text {
  font-size: 24px;
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 350px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inner-counter .text {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .inner-counter .text br {
    display: none;
  }
}

/* !END: Service CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/
.service-work-section {
  padding-top: 150px;
}
.service-work-section .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.service-work-section .section_heading .sec_title {
  max-width: 780px;
  width: 100%;
  margin-bottom: 15px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-work-section .section_heading .sec_title {
    max-width: 876px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-work-section .section_heading .sec_title {
    max-width: 736px;
    font-size: 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) {
  .service-work-section .section_heading .sec_title {
    max-width: 100%;
  }
}
.service-work-wrap {
  display: flex;
  gap: 120px;
  max-width: 1784px;
  width: 100%;
  margin: 0 auto;
}
.service-work-left {
  display: flex;
  align-items: end;
}
.service-work-img {
  max-width: 525px;
  width: 100%;
  height: 717px;
  overflow: hidden;
  margin-top: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .service-work-img {
    height: 750px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-work-img {
    height: 640px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-work-img {
    height: 480px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-work-img {
    height: 380px;
  }
  .service-work-img img {
    width: 100%;
    height: 162%;
    object-fit: cover;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-work-img {
    height: 300px;
  }
  .service-work-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: none !important;
  }
}
.service-work-content {
  max-width: 475px;
  width: 100%;
}
.service-work-content .desc {
  margin-bottom: 25px;
}
.service-work-content .tj_icon_btn {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
}
.service-work-content .tj_icon_btn .icon_btn {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
}

.work_client_card {
  max-width: 270px;
  background-color: var(--tj-color-theme-primary);
  padding: 44px 30px;
}
.work_client_card .trusted_text {
  color: var(--tj-color-light-1);
  margin-top: 25px;
}
.work_client_card .trusted_text span {
  color: var(--tj-color-light-1);
}

/* !END: Service CSS */
/**----------------------------------------
START: Service details CSS
----------------------------------------*/
.service_details_header_left {
  max-width: 735px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service_details_header_left {
    max-width: 550px;
  }
}
.service_details_header_right {
  max-width: 550px;
  width: 100%;
  padding-left: 30px;
}
.service_details_header .category {
  color: var(--tj-color-heading-primary);
  border-color: var(--tj-color-heading-primary);
}
.service_details_header .category:hover {
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.service_details_header .desc {
  max-width: 477px;
  width: 100%;
}
.service_details_header .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.service_details_header .btn-wrap .tj_text_btn {
  line-height: 1.45;
}
@media (max-width: 575px) {
  .service_details_header .btn-wrap {
    gap: 20px;
  }
}
.service_details_intro {
  margin-top: 90px;
}
.service_details_intro_content {
  padding-left: 30px;
}
.service_details_intro_content ul {
  list-style: none;
  padding: 0;
  margin-top: 35px;
}
.service_details_intro_content ul li {
  color: var(--tj-color-heading-primary);
  font-size: 20px;
  line-height: 1.25;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  padding: 14px 0;
  border-top: 1px solid var(--tj-color-border-1);
  position: relative;
}
.service_details_intro_content ul li:last-child {
  border-bottom: 1px solid var(--tj-color-border-1);
}
.service_details_intro_content ul li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-bg-dark);
  transform: translateY(-50%);
}
@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) {
  .service_details_intro_content {
    padding-left: 0;
  }
}
.service_details_img {
  height: 710px;
  overflow: hidden;
}
.service_details_img img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .service_details_img {
    height: 520px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service_details_img {
    height: 480px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service_details_img {
    height: 450px;
  }
}
@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_details_img {
    height: 710px;
  }
}

.tj_icon_btn.back_btn {
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.15;
  gap: 7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_icon_btn.back_btn {
    margin-bottom: 72px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_icon_btn.back_btn {
    margin-bottom: 52px;
  }
}
.tj_icon_btn.back_btn .icon_btn {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 20px;
}
.tj_icon_btn.back_btn .icon_btn i {
  color: var(--tj-color-heading-primary);
}
.tj_icon_btn.back_btn .icon_btn i:last-child {
  transform: translateX(150%);
}
.tj_icon_btn.back_btn .icon_btn > span {
  transform: rotate(0);
}
.tj_icon_btn.back_btn .underline-text {
  text-transform: uppercase;
}
.tj_icon_btn.back_btn .underline-text::before {
  display: none;
}
.tj_icon_btn.back_btn:hover .icon_btn {
  background: transparent;
}
.tj_icon_btn.back_btn:hover .icon_btn i:first-child {
  transform: translateX(-150%);
}

.why-choose-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.why-choose-section .section_heading {
  max-width: 888px;
  width: 100%;
  margin-bottom: 220px;
}
.why-choose-content {
  max-width: 519px;
  width: 100%;
}
.why-choose-content-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 60px;
}
.why-choose-img {
  max-width: 275px;
  width: 100%;
}
.why-choose-item {
  background-color: var(--tj-color-theme-bg-2);
  padding: 50px 30px 35px 30px;
}
.why-choose-item:not(:last-child) {
  margin-bottom: 30px;
}
.why-choose-item .choose-count {
  min-width: 65px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  align-self: flex-start;
}
.why-choose-item .choose-count > span {
  color: var(--tj-color-heading-primary);
}
.why-choose-item .choose-title {
  margin-top: 110px;
}
.why-choose-item .choose-desc {
  font-size: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.related-project-section {
  padding-top: 120px;
  padding-bottom: 150px;
}
.related-project-header {
  margin-bottom: 45px;
}
.related-project-header .section_heading {
  max-width: 800px;
  width: 100%;
}
.related-project-header .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.related-project-header .tj_swiper_nav_wrapper {
  display: inline-flex;
  gap: 15px;
  margin-bottom: 55px;
}
.related-project-header .tj_swiper_nav_wrapper .tj_swiper_nav {
  border: 1px solid var(--tj-color-light-1);
}
.related-project-header .tj_swiper_nav_wrapper .tj_swiper_nav:hover {
  border-color: var(--tj-color-theme-primary);
}
.related-project-slider-wrapper .project_image {
  height: 510px;
}
.related-project-slider-wrapper .project_image img {
  height: 100%;
  object-fit: cover;
}
.related-project-slider-wrapper .project_content {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tj-color-border-3);
}
.related-project-slider-wrapper .project_content .project_title {
  color: var(--tj-color-light-1);
}
.related-project-slider-wrapper .project_content .project_title a:hover {
  color: var(--tj-color-light-2);
}
.related-project-slider-wrapper .project_year {
  font-weight: var(--tj-fw-medium);
}
.related-project-slider-wrapper .project_year > span {
  color: var(--tj-color-light-1);
}

.tj-identity-section {
  padding-top: 120px;
  padding-bottom: 140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-identity-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-identity-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 90px;
}
.tj-identity-wrapper .book-content {
  max-width: 350px;
  width: 100%;
}
.tj-identity-wrapper .book-content .desc {
  margin-bottom: 30px;
}
@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-identity-wrapper .book-content .desc {
    font-size: 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) {
  .tj-identity-wrapper .book-content .desc {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-identity-wrapper .book-content {
    max-width: 330px;
  }
}
.tj-identity-wrapper .identity-item {
  background-color: var(--tj-color-theme-bg-2);
  padding: 25px 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.tj-identity-wrapper .identity-item-wrap {
  width: 58%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-identity-wrapper .identity-item-wrap {
    width: 64%;
  }
}
@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-identity-wrapper .identity-item-wrap {
    width: 100%;
  }
}
.tj-identity-wrapper .identity-item:nth-child(2) {
  margin-inline-start: 125px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-identity-wrapper .identity-item:nth-child(2) {
    margin-inline-start: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-identity-wrapper .identity-item:nth-child(2) {
    margin-inline-start: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-identity-wrapper .identity-item:nth-child(2) {
    margin-inline-start: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item:nth-child(2) {
    margin-inline-start: 0;
  }
}
.tj-identity-wrapper .identity-item:last-child {
  margin-inline-start: 275px;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-identity-wrapper .identity-item:last-child {
    margin-inline-start: 160px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-identity-wrapper .identity-item:last-child {
    margin-inline-start: 220px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-identity-wrapper .identity-item:last-child {
    margin-inline-start: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item:last-child {
    margin-inline-start: 0;
  }
}
.tj-identity-wrapper .identity-item .tj_counter .counter_number {
  font-size: 100px;
  line-height: 0.8;
  letter-spacing: -0.02em;
}
.tj-identity-wrapper .identity-item .tj_counter .counter_number .suffix {
  font-size: 100px;
  line-height: 0.8;
  font-weight: var(--tj-fw-sbold);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number .suffix {
    font-size: 66px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number .suffix {
    font-size: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number .suffix {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number {
    font-size: 66px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number {
    font-size: 76px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item .tj_counter .counter_number {
    font-size: 60px;
  }
}
.tj-identity-wrapper .identity-item .tj_counter .counter_label {
  margin-top: 6px;
}
@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-identity-wrapper .identity-item .tj_counter .counter_label {
    font-size: 16px;
  }
}
.tj-identity-wrapper .identity-item .desc {
  font-size: 18px;
  max-width: 397px;
  width: 100%;
  margin: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item .desc {
    font-size: 16px;
    max-width: 340px;
  }
}
@media (max-width: 575px) {
  .tj-identity-wrapper .identity-item .desc {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-identity-wrapper .identity-item {
    padding: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-identity-wrapper .identity-item {
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 575px) {
  .tj-identity-wrapper .identity-item {
    flex-direction: column;
    align-items: start;
  }
}
@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-identity-wrapper {
    align-items: start;
    margin-top: 35px;
    gap: 50px;
  }
}

.working-process-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.working-process-section .tj_icon_btn {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
}
.working-process-section .tj_icon_btn .icon_btn {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-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) {
  .working-process-section .mobile_button {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .working-process-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .working-process-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.working-process-header {
  margin-bottom: 50px;
}
.working-process-header .section_heading {
  max-width: 680px;
  width: 100%;
}
.working-process-header .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.working-process-header-right {
  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) {
  .working-process-header {
    margin-bottom: 40px;
  }
}

.tj-process-items-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 15px;
  padding: 90px 0;
  border-top: 1px solid var(--tj-color-border-3);
  border-bottom: 1px solid var(--tj-color-border-3);
}
.tj-process-items-wrapper hr {
  opacity: 1;
  background-color: var(--tj-color-border-3);
  width: 1px;
  height: auto;
  margin: 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-process-items-wrapper hr {
    width: 100%;
    height: 1px;
  }
  .tj-process-items-wrapper hr:first-child, .tj-process-items-wrapper hr:last-child {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-items-wrapper {
    padding: 70px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-items-wrapper {
    padding: 50px 0;
    gap: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-items-wrapper {
    padding: 30px 0;
    gap: 30px;
  }
}
.tj-process-item-3 {
  max-width: 320px;
  width: 100%;
}
.tj-process-item-3 .process-no {
  font-size: 24px;
  line-height: 1;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  border: 1px solid var(--tj-color-theme-primary);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 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) {
  .tj-process-item-3 .process-no {
    font-size: 20px;
    width: 62px;
    height: 62px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-process-item-3 .process-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-item-3 .process-title {
    font-size: 26px;
  }
}
@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-process-item-3 .process-title {
    max-width: 300px;
  }
}
.tj-process-item-3 .process-desc {
  max-width: 300px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-item-3 .process-desc {
    max-width: 260px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-item-3 .process-desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-item-3 {
    max-width: 270px;
  }
}
@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-process-item-3 {
    max-width: 100%;
  }
}

/* !END: Service details CSS */
/**----------------------------------------
START: Service details CSS
----------------------------------------*/
.service_details_intro_content.project_information ul {
  margin-top: 0;
}
.service_details_intro_content.project_information ul li {
  padding: 20px 0;
}
.service_details_intro_content.project_information ul li span {
  display: block;
  color: var(--tj-color-theme-bg-dark-3);
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  margin-bottom: 15px;
}
.service_details_intro_content.project_information ul li::after {
  display: 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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service_details_intro_content {
    padding-left: 0;
  }
}

.project-details-section {
  padding-top: 120px;
}
.project-details-left .section_heading {
  max-width: 730px;
  width: 100%;
}
.project-details-right {
  margin-top: 50px;
}
.project-details-right .tj_icon_list {
  margin-top: 45px;
}
.project-details-right .tj_icon_list li {
  gap: 12px;
}
.project-details-right .tj_icon_list li .icon {
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  margin-top: 7px;
}
.project-details-right .tj_icon_list li .text {
  font-size: 20px;
}

.project-gallery-wrap {
  margin-top: 100px;
}
.project-gallery-item img {
  width: 100%;
}

.tj-process-items-wrapper-2 {
  padding: 90px 0 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-items-wrapper-2 {
    padding: 70px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-items-wrapper-2 {
    padding: 50px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-items-wrapper-2 {
    padding: 30px 0;
  }
}
.tj-process-items-wrapper-2 .tj-process-item-3 {
  max-width: 100%;
  border: 1px solid var(--tj-color-border-1);
  padding: 30px;
}
.tj-process-items-wrapper-2 .tj-process-item-3 .process-no {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 1px solid var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  margin-bottom: 70px;
}
@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-process-items-wrapper-2 .tj-process-item-3 .process-no {
    font-size: 20px;
    width: 56px;
    height: 56px;
  }
}
.tj-process-items-wrapper-2 .tj-process-item-3 .process-title {
  max-width: 250px;
  font-size: 28px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-items-wrapper-2 .tj-process-item-3 .process-title {
    font-size: 26px;
  }
}
@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-process-items-wrapper-2 .tj-process-item-3 .process-title {
    max-width: 300px;
  }
}
.tj-process-items-wrapper-2 .tj-process-item-3 .process-desc {
  max-width: 365px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-items-wrapper-2 .tj-process-item-3 .process-desc {
    max-width: 260px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-items-wrapper-2 .tj-process-item-3 .process-desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-items-wrapper-2 .tj-process-item-3 {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-items-wrapper-2 .tj-process-item-3 {
    padding: 15px;
  }
}

.result-impact-section {
  padding-top: 120px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}

.project-testimonial-section {
  padding-top: 100px;
  padding-bottom: 40px;
}
.project-testimonial-marquee .marquee-text {
  font-size: 139px;
}
.project-testimonial-marquee .marquee-text span {
  font-size: 0.6em;
}
.project-testimonial-wrap {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 120px;
}

.project_testimonial_item.tj_testimonial_item {
  display: flex;
  gap: 30px;
  text-align: start;
  padding: 0;
}
.project_testimonial_item.tj_testimonial_item .author-img {
  max-width: 333px;
  flex-shrink: 0;
  overflow: hidden;
}
.project_testimonial_item.tj_testimonial_item .rating {
  margin-bottom: 50px;
}
.project_testimonial_item.tj_testimonial_item .testimonial_content_wrapper {
  background-color: var(--tj-color-theme-bg);
  padding: 70px 40px;
}
.project_testimonial_item.tj_testimonial_item .review_text {
  font-size: 32px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  letter-spacing: -0.015em;
  text-align: start;
}
.project_testimonial_item.tj_testimonial_item .tj-author-profile {
  text-align: start;
  align-items: start;
  margin-top: 35px;
}

.final-conclusion-section {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
.final-conclusion-section .social-share {
  margin-top: 30px;
}

/* !END: Service details CSS */
/**----------------------------------------
START: Team details CSS
----------------------------------------*/
.team-section-4 {
  padding-top: 150px;
  padding-bottom: 150px;
}

.join-team-section {
  padding-top: 60px;
}
.join-team-section .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.join-team-section .section_heading .sec_title {
  max-width: 560px;
  width: 100%;
}
.join-team-section .join-team-wrap {
  margin-top: 40px;
}

.more-team-2 {
  padding-top: 140px;
}

/* !END: Team details CSS */
/**----------------------------------------
START: Careers CSS
----------------------------------------*/
.career-opening-section .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.career-opening-section .section_heading .sec_title {
  max-width: 700px;
  width: 100%;
}
.career-opening-item .career-title {
  max-width: 325px;
  width: 100%;
}
.career-opening-item .career-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.career-opening-item .career-bottom .icon_btn {
  border-radius: 50%;
  border: 1px solid var(--tj-color-border-3);
}

.career-gallery-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.career-gallery-section .scroll-wrapper {
  align-items: end;
}

/* !END: Careers CSS */
/**
  unit CSS
*/
.sec_bottom_gap {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sec_bottom_gap {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sec_bottom_gap {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec_bottom_gap {
    padding-bottom: 70px;
  }
}

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

.header-inner.wp-header {
  border-bottom: 1px solid var(--tj-color-border-1);
  background-color: transparent;
}

body:has(.tj_navigation_wrap_overlay.active) .header-inner.wp-header {
  border-color: var(--tj-color-border-5);
}

.tj_footer_widgets {
  padding-top: 120px;
  padding-bottom: 100px;
  border-bottom: 1px solid var(--tj-color-border-3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_footer_widgets {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_footer_widgets {
    padding-top: 90px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_footer_widgets {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.tj_footer_copyright {
  padding-top: 25px;
  padding-bottom: 25px;
}

.tj_footer_widget .wp-block-heading,
.tj_footer_widget .widget_title {
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  line-height: 1.7;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  margin-bottom: 45px;
}
.tj_footer_widget .wp-block-heading > span,
.tj_footer_widget .widget_title > span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_footer_widget .wp-block-heading,
  .tj_footer_widget .widget_title {
    margin-bottom: 20px;
  }
}
.tj_footer_widget.wp_widget {
  margin-bottom: 40px;
}
.tj_footer_widget.wp_widget:last-child {
  margin-bottom: 0;
}
.tj_footer_widget.wp_widget .widget_title,
.tj_footer_widget.wp_widget .wp-block-heading {
  position: relative;
  color: var(--tj-color-light-1);
  margin-bottom: 35px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_footer_widget.wp_widget .widget_title,
  .tj_footer_widget.wp_widget .wp-block-heading {
    margin-bottom: 20px;
  }
}

.tj_blog_item_standard.tj_blog_item {
  display: block;
}
.tj_blog_item_standard.tj_blog_item .entry-title a {
  display: inline;
}
.tj_blog_item_standard .tj_blog_thumb .blog_image img {
  width: auto;
}
.tj_blog_item_standard .entry-title a {
  display: inline;
}

.tj_sidebar_widget.wp_widget {
  border: 1px solid var(--tj-color-border-1);
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
}
.tj_sidebar_widget.wp_widget:last-child {
  margin-bottom: 0;
}
.tj_sidebar_widget.wp_widget .wp-block-heading,
.tj_sidebar_widget.wp_widget .wp-block-search__label,
.tj_sidebar_widget.wp_widget .wp-block-categories__label,
.tj_sidebar_widget.wp_widget .wp-block-archives__label,
.tj_sidebar_widget.wp_widget .widget_title {
  color: var(--tj-color-heading-primary);
  font-size: 24px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-heading);
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  z-index: 1;
  display: block;
}
@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_sidebar_widget.wp_widget .wp-block-heading,
  .tj_sidebar_widget.wp_widget .wp-block-search__label,
  .tj_sidebar_widget.wp_widget .wp-block-categories__label,
  .tj_sidebar_widget.wp_widget .wp-block-archives__label,
  .tj_sidebar_widget.wp_widget .widget_title {
    font-size: 22px;
  }
}
.tj_sidebar_widget.wp_widget footer.wp-block-latest-comments__comment-meta {
  line-height: 1;
}

.tj_widget_search form {
  position: relative;
  width: 100%;
  z-index: 1;
}
.tj_widget_search form input[type=search] {
  font-size: 16px;
  background: var(--tj-color-theme-bg-2);
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 0;
  padding: 18px 55px 18px 20px;
  line-height: 1;
}
.tj_widget_search form input[type=search]::placeholder {
  transition: all 0.3s;
  color: var(--tj-color-text-body-2);
}
.tj_widget_search form input[type=search]:focus {
  outline: none;
  box-shadow: 0 0 0;
  border-color: var(--tj-color-theme-primary);
}
.tj_widget_search form button {
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  width: 58px;
  height: 60px;
  position: absolute;
  top: 50%;
  inset-inline-end: 0;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.tj_widget_search form button i {
  display: inline-flex;
  line-height: 1;
}
.tj_widget_search form button:hover {
  color: var(--tj-color-theme-primary);
}

.tj_widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj_widget_categories ul li {
  margin-bottom: 10px;
}
.tj_widget_categories ul li:last-child {
  margin-bottom: 0;
}
.tj_widget_categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-bg-2);
  padding: 20px 24px 17px 25px;
  border-radius: 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tj_widget_categories ul li a::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-color: var(--tj-color-theme-primary);
  border-radius: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tj_widget_categories ul li a span {
  color: var(--tj-color-heading-primary);
}
.tj_widget_categories ul li a:hover {
  color: var(--tj-color-common-white);
}
.tj_widget_categories ul li a:hover::before {
  width: 100%;
}
.tj_widget_categories ul li a:hover span {
  color: var(--tj-color-common-white);
}

.tj_recent_posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj_recent_posts ul li {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}
.tj_recent_posts ul li:last-child {
  margin-bottom: 0;
}
.tj_recent_posts ul li:hover .post-thumb img {
  transform: scale(1.15);
}
.tj_recent_posts .post-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  flex: 0 0 auto;
  border-radius: 0;
  overflow: hidden;
}
.tj_recent_posts .post-thumb a {
  display: inline-block;
  width: 100%;
}
.tj_recent_posts .post-thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}
.tj_recent_posts .post-content .post-title {
  font-size: 18px;
  line-height: 1.444;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 10px;
}
.tj_recent_posts .post-content .post-title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj_recent_posts .post-content .post-meta {
  margin-bottom: 0;
}
.tj_recent_posts .post-content .post-meta ul li {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--tj-color-text-body-2);
}

.tj_single_blog .tj_entry_thumb {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

blockquote,
.wp-block-quote {
  position: relative;
  padding: 40px 30px 30px;
  background: var(--tj-color-theme-bg-2);
  z-index: 2;
}
blockquote::before,
.wp-block-quote::before {
  content: "\e928";
  font-size: 40px;
  color: var(--tj-color-theme-primary);
  font-family: "agina-icons";
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1;
}
blockquote p,
.wp-block-quote p {
  color: var(--tj-color-text-body);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 28px;
  letter-spacing: -0.015em;
  line-height: 1.37;
  border-radius: 12px;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  blockquote p,
  .wp-block-quote p {
    font-size: 20px;
  }
}
blockquote cite,
.wp-block-quote cite {
  margin-top: 20px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  letter-spacing: unset;
  line-height: 1.625;
  display: block;
  text-align: end;
  font-style: normal;
  position: relative;
  z-index: 1;
}
blockquote cite::before,
.wp-block-quote cite::before {
  content: "";
  display: inline-block;
  background: var(--tj-color-border-1);
  height: 1px;
  width: 89px;
  top: -4px;
  margin-inline-end: 10px;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  blockquote cite,
  .wp-block-quote cite {
    margin-top: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  blockquote,
  .wp-block-quote {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}

.tj_elementor_content,
.tj_single_blog.post {
  font-size: 16px;
  letter-spacing: 0.01em;
  line-height: 1.5555;
}
.tj_elementor_content .blog-video,
.tj_single_blog.post .blog-video {
  margin-top: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_elementor_content .blog-video,
  .tj_single_blog.post .blog-video {
    margin-top: 40px;
  }
}
.tj_elementor_content .blog-video,
.tj_single_blog.post .blog-video {
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 30px;
}
.tj_elementor_content .video-btn,
.tj_single_blog.post .video-btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-light-1);
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.tj_elementor_content .video-btn span,
.tj_single_blog.post .video-btn span {
  font-size: 15px;
}
.tj_elementor_content .video-btn::before,
.tj_single_blog.post .video-btn::before {
  position: absolute;
  content: "";
  inset-inline-start: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  animation: pulse2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
  animation: pulse 2s linear infinite;
}
@media (max-width: 575px) {
  .tj_elementor_content .video-btn::before,
  .tj_single_blog.post .video-btn::before {
    width: 70px;
    height: 70px;
  }
}
@media (max-width: 575px) {
  .tj_elementor_content .video-btn,
  .tj_single_blog.post .video-btn {
    width: 70px;
    height: 70px;
  }
}
.tj_elementor_content table,
.tj_elementor_content blockquote,
.tj_single_blog.post table,
.tj_single_blog.post blockquote {
  margin-bottom: 60px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_elementor_content table,
  .tj_elementor_content blockquote,
  .tj_single_blog.post table,
  .tj_single_blog.post blockquote {
    margin-bottom: 40px;
  }
}
.tj_elementor_content p:last-child,
.tj_single_blog.post p:last-child {
  margin-bottom: 0;
}
.tj_elementor_content h1,
.tj_elementor_content h2,
.tj_elementor_content h3,
.tj_elementor_content h4,
.tj_elementor_content h5,
.tj_elementor_content h6,
.tj_single_blog.post h1,
.tj_single_blog.post h2,
.tj_single_blog.post h3,
.tj_single_blog.post h4,
.tj_single_blog.post h5,
.tj_single_blog.post h6 {
  margin-bottom: 20px;
}
.tj_elementor_content h3,
.tj_single_blog.post h3 {
  font-size: 44px;
  letter-spacing: -0.02em;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_elementor_content h3,
  .tj_single_blog.post h3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_elementor_content h3,
  .tj_single_blog.post h3 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .tj_elementor_content h3,
  .tj_single_blog.post h3 {
    font-size: 28px;
  }
}
.tj_elementor_content p,
.tj_single_blog.post p {
  margin-bottom: 20px;
}
.tj_elementor_content ul,
.tj_elementor_content ol,
.tj_single_blog.post ul,
.tj_single_blog.post ol {
  margin-bottom: 60px;
  padding-left: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_elementor_content ul,
  .tj_elementor_content ol,
  .tj_single_blog.post ul,
  .tj_single_blog.post ol {
    margin-bottom: 40px;
  }
}
.tj_elementor_content ul li,
.tj_elementor_content ol li,
.tj_single_blog.post ul li,
.tj_single_blog.post ol li {
  padding-top: 0;
}
.tj_elementor_content ul li:not(:last-child),
.tj_elementor_content ol li:not(:last-child),
.tj_single_blog.post ul li:not(:last-child),
.tj_single_blog.post ol li:not(:last-child) {
  margin-bottom: 10px;
}
.tj_elementor_content ul li::marker,
.tj_elementor_content ol li::marker,
.tj_single_blog.post ul li::marker,
.tj_single_blog.post ol li::marker {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.tj_elementor_content ul ul,
.tj_elementor_content ul ol,
.tj_elementor_content ol ul,
.tj_elementor_content ol ol,
.tj_single_blog.post ul ul,
.tj_single_blog.post ul ol,
.tj_single_blog.post ol ul,
.tj_single_blog.post ol ol {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 20px;
}
.tj_elementor_content b,
.tj_elementor_content strong,
.tj_single_blog.post b,
.tj_single_blog.post strong {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.tj_elementor_content table,
.tj_single_blog.post table {
  width: 100%;
  font-family: var(--tj-ff-heading);
  letter-spacing: -0.015em;
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-width: 1px;
  margin-top: 34px;
}
.tj_elementor_content table thead,
.tj_single_blog.post table thead {
  background-color: var(--tj-color-theme-bg-2);
}
.tj_elementor_content table td,
.tj_elementor_content table th,
.tj_single_blog.post table td,
.tj_single_blog.post table th {
  padding: 28px 30px;
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-width: 0;
  border-bottom-width: 1px;
  border-width: 1px;
}
@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_elementor_content table td,
  .tj_elementor_content table th,
  .tj_single_blog.post table td,
  .tj_single_blog.post table th {
    padding: 25px 18px;
    font-size: 16px;
  }
}
.tj_elementor_content table th,
.tj_single_blog.post table th {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
}
.tj_elementor_content table td:first-child,
.tj_single_blog.post table td:first-child {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
}
.tj_elementor_content table caption,
.tj_single_blog.post table caption {
  padding-top: 24px;
  padding-bottom: 0;
  letter-spacing: 0.01em;
}
.tj_elementor_content .tj_blog_author,
.tj_single_blog.post .tj_blog_author {
  flex-direction: row;
  align-items: center;
  margin-top: 34px;
  gap: 11px;
  border-bottom-width: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.tj_elementor_content .tj_blog_author .author_images,
.tj_single_blog.post .tj_blog_author .author_images {
  width: 64px;
  height: 64px;
  border-style: solid;
  border-color: var(--tj-color-theme-bg);
  border-width: 2px;
}
.tj_elementor_content .tj_blog_author .author_images,
.tj_single_blog.post .tj_blog_author .author_images {
  border-radius: 100%;
}
.tj_elementor_content .tj_blog_author .author_text .author_name,
.tj_single_blog.post .tj_blog_author .author_text .author_name {
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.tj_elementor_content .tj_blog_author .author_text .author_name span,
.tj_single_blog.post .tj_blog_author .author_text .author_name span {
  color: var(--tj-color-text-body-2);
  font-weight: var(--tj-fw-regular);
}
.tj_elementor_content .tj_blog_author .author_text .author_name a,
.tj_single_blog.post .tj_blog_author .author_text .author_name a {
  color: var(--tj-color-heading-primary);
  text-decoration: none;
}
.tj_elementor_content .tj_blog_author .author_text p,
.tj_single_blog.post .tj_blog_author .author_text p {
  padding: 0;
  margin-bottom: 0 !important;
  font-size: 16px;
  font-weight: 400;
  color: var(--tj-color-text-body-2);
}
.tj_elementor_content .tj_blog_author .author_text p::before,
.tj_single_blog.post .tj_blog_author .author_text p::before {
  display: none;
}
@media (max-width: 575px) {
  .tj_elementor_content .tj_blog_author,
  .tj_single_blog.post .tj_blog_author {
    margin-top: 26px;
  }
}

.tj_elementor_content {
  font-size: 18px;
  letter-spacing: 0.01em;
  line-height: 1.5555;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_elementor_content {
    font-size: 16px;
  }
}
.tj_elementor_content .blog-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tj_blog_details_body p.form-submit {
  margin-bottom: 0;
}

.tj_blog_tag_share {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 20px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 1px solid var(--tj-color-border-1);
  padding: 22px 0;
  margin-bottom: 30px;
}
.tj_blog_tag_share .tagcloud {
  width: calc(100% - 240px);
}
.tj_blog_tag_share .tagcloud span {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body-2);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blog_tag_share .tagcloud {
    width: 100%;
  }
}
.tj_blog_tag_share .tj_blog_share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.tj_blog_tag_share .tj_blog_share ul li {
  display: inline-flex;
  line-height: 1;
  margin-bottom: 0 !important;
}
.tj_blog_tag_share .tj_blog_share ul li span {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body-2);
}
.tj_blog_tag_share .tj_blog_share ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  z-index: 1;
  overflow: hidden;
}
.tj_blog_tag_share .tj_blog_share ul li a i {
  text-shadow: -30px 0 0;
  transition: all 0.5s;
}
.tj_blog_tag_share .tj_blog_share ul li a::before {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  left: 0;
  right: 0;
  transform: scale(0);
  transform-origin: center;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  transition: 0.5s;
  z-index: -1;
}
.tj_blog_tag_share .tj_blog_share ul li a:hover {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-theme-primary);
}
.tj_blog_tag_share .tj_blog_share ul li a:hover i {
  transform: translateX(30px);
}
.tj_blog_tag_share .tj_blog_share ul li a:hover::before {
  transform: scale(1.1);
}
.tj_blog_tag_share.no_socials .tagcloud {
  width: 100%;
}

.tagcloud,
.wp-block-tag-cloud {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 12px;
}
.tagcloud a,
.wp-block-tag-cloud a {
  text-decoration: none;
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
  font-size: 15px;
  line-height: 1;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-text-body);
  padding: 5px 10px;
  border-radius: 50px;
  display: inline-flex;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.tagcloud a:hover,
.wp-block-tag-cloud a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
}

.tj_footer_widget .tagcloud a,
.tj_footer_widget .wp-block-tag-cloud a,
.tj_sidebar_widget .tagcloud a,
.tj_sidebar_widget .wp-block-tag-cloud a {
  font-size: 15px !important;
}

.tj_footer_widget .tagcloud a,
.tj_footer_widget .wp-block-tag-cloud a {
  color: var(--tj-color-light-2);
  border-color: var(--tj-color-light-4);
}
.tj_footer_widget .tagcloud a:hover,
.tj_footer_widget .wp-block-tag-cloud a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
}

.tj_blockquote {
  position: relative;
  padding: 52px 40px 50px;
  background: var(--tj-color-theme-bg-2);
  border: 0;
  z-index: 2;
}
.tj_blockquote p {
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  font-size: 32px;
  margin-bottom: 20px !important;
  letter-spacing: -0.015em;
  line-height: 1.375;
  padding-inline-start: 34px;
  position: relative;
}
.tj_blockquote p::before {
  content: "";
  display: inline-block;
  width: 4px;
  background-color: var(--tj-color-theme-bg-dark);
  height: 87%;
  position: absolute;
  inset-inline-start: 0;
  top: 6px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_blockquote p {
    font-size: 24px;
    margin-bottom: 15px !important;
  }
}
@media (max-width: 575px) {
  .tj_blockquote p {
    font-size: 22px;
  }
  .tj_blockquote p::before {
    inset-inline-start: 8px;
    height: 94%;
  }
}
@media (max-width: 575px) {
  .tj_blockquote {
    padding: 35px 15px;
  }
}

.tj_comments_container {
  margin-top: 68px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_comments_container {
    margin-top: 48px;
  }
}

.tj_comments_wrap .comments_title .title {
  margin-bottom: 22px;
}

.comment-respond {
  margin-top: 70px;
  background-color: var(--tj-color-theme-bg-2);
  padding: 60px 40px 70px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .comment-respond {
    padding: 40px 20px 50px;
    margin-top: 50px;
  }
}
.comment-respond .comment-reply-title {
  margin-bottom: 20px;
}
.comment-respond .comment-notes {
  margin-bottom: 22px;
}
.comment-respond .cf-label {
  font-size: 15px;
  font-weight: var(--tj-fw-regular);
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  margin-bottom: 7px;
}
.comment-respond .cf-label span {
  color: var(--tj-color-theme-primary);
}
.comment-respond .form-input {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .comment-respond .form-input {
    margin-bottom: 20px;
  }
}
.comment-respond input[type=search],
.comment-respond input[type=tel],
.comment-respond input[type=text],
.comment-respond input[type=email],
.comment-respond input[type=url],
.comment-respond textarea {
  color: var(--tj-color-heading-primary);
  height: 60px;
  padding: 15px 20px;
  border: 1px solid var(--tj-color-theme-bg-dark);
  font-size: 20px;
  font-weight: var(--tj-fw-regular);
}
.comment-respond input[type=search]::placeholder,
.comment-respond input[type=tel]::placeholder,
.comment-respond input[type=text]::placeholder,
.comment-respond input[type=email]::placeholder,
.comment-respond input[type=url]::placeholder,
.comment-respond textarea::placeholder {
  transition: all 0.3s;
  color: var(--tj-color-light-3);
  font-size: 20px;
  font-weight: var(--tj-fw-regular);
}
.comment-respond input[type=search]:focus,
.comment-respond input[type=tel]:focus,
.comment-respond input[type=text]:focus,
.comment-respond input[type=email]:focus,
.comment-respond input[type=url]:focus,
.comment-respond textarea:focus {
  border-color: var(--tj-color-theme-primary);
}
.comment-respond textarea {
  min-height: 140px;
  resize: none;
}
.comment-respond .form-submit {
  margin-bottom: 0;
}
.comment-respond .form-submit input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-bg-dark);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  border: none;
  padding: 20px 30px;
  text-align: center;
  border-radius: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.3s ease-in-out 0s;
}
.comment-respond .form-submit input[type=submit]:hover {
  background-color: var(--tj-color-theme-primary);
}

.tj_latest_comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj_latest_comments ul .tj_comment {
  margin-bottom: 20px;
}
.tj_latest_comments ul .tj_comment:last-child {
  margin-bottom: 0;
}
.tj_latest_comments ul .tj_comment .comment_content {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 30px;
  background-color: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 0;
  position: relative;
}
.tj_latest_comments ul .tj_comment .comment_content.no-avatar .comments_header {
  width: 100%;
}
.tj_latest_comments ul .tj_comment .comment_content .comment_avatar {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.tj_latest_comments ul .tj_comment .comment_content .comment_avatar img {
  width: 100%;
  height: auto;
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header {
  margin-top: 10px;
  width: calc(100% - 76px);
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .name,
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .title {
  font-size: 18px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .name a,
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .title a {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .name a:hover,
.tj_latest_comments ul .tj_comment .comment_content .comments_header .avatar_name .title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .comment_text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .comment_text .comment-reply-link {
  position: absolute;
  top: 35px;
  inset-inline-end: 30px;
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body-2);
  text-decoration: none;
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .comment_text .comment-reply-link:hover {
  color: var(--tj-color-theme-primary);
}
.tj_latest_comments ul .tj_comment .comment_content .comments_header .comment_text span {
  font-size: 14px;
  color: var(--tj-color-text-body-2);
  font-weight: var(--tj-fw-regular);
}
@media (max-width: 575px) {
  .tj_latest_comments ul .tj_comment .comment_content {
    flex-direction: column;
  }
  .tj_latest_comments ul .tj_comment .comment_content .comment_avatar {
    margin-inline-end: auto;
  }
  .tj_latest_comments ul .tj_comment .comment_content .comments_header {
    width: 100%;
  }
}
.tj_latest_comments ul .tj_comment .desc {
  margin-top: 14px;
}
.tj_latest_comments ul .tj_comment .desc p:last-child {
  margin-bottom: 0;
}
.tj_latest_comments ul .tj_comment > .children {
  padding-inline-start: 75px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_latest_comments ul .tj_comment > .children {
    padding-inline-start: 35px;
  }
}
.tj_latest_comments ul .tj_comment:last-child .comment_content .comments_header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.tj_latest_comments ul .tj_comment .comment-respond {
  margin-top: 40px;
}

.tj_item_nav {
  line-height: 1;
}
.tj_item_nav_wrapper {
  padding: 27px 0;
  display: flex;
  gap: 25px;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
  border-style: solid;
  border-color: var(--tj-color-border-1);
  border-width: 0;
  border-bottom-width: 1px;
  border-top-width: 1px;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_item_nav_wrapper {
    margin-top: 50px;
  }
}
.tj_item_nav_wrapper .sec_subtitle {
  margin-bottom: 0;
  line-height: 1;
  letter-spacing: 0;
}
.tj_item_nav span {
  line-height: 1;
}
.tj_item_nav .tj_icon_btn {
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  gap: 7px;
}
.tj_item_nav .tj_icon_btn .icon_btn {
  width: auto;
  height: auto;
  background-color: transparent;
  font-size: 20px;
}
.tj_item_nav .tj_icon_btn .icon_btn i {
  color: var(--tj-color-heading-primary);
}
.tj_item_nav .tj_icon_btn .icon_btn > span {
  transform: rotate(0);
}
.tj_item_nav .tj_icon_btn .underline-text {
  text-transform: uppercase;
}
.tj_item_nav .tj_icon_btn .underline-text::before {
  display: none;
}
.tj_item_nav.previous .tj_icon_btn .icon_btn i:last-child {
  transform: translateX(150%);
}
.tj_item_nav.previous .tj_icon_btn .icon_btn > span {
  transform: rotate(0);
}
.tj_item_nav.previous .tj_icon_btn:hover .icon_btn i:first-child {
  transform: translateX(-150%);
}
.tj_item_nav.previous .tj_icon_btn:hover .icon_btn i:last-child {
  transform: translateX(0);
}
.tj_item_nav_all:hover .sec_subtitle {
  color: var(--tj-color-theme-primary);
}
.tj_item_nav_all:hover .flip-text .front {
  transform: translateY(-150%);
}
.tj_item_nav_all:hover .flip-text .back {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 575px) {
  .tj_item_nav {
    padding: 20px 0;
    gap: 20px;
  }
}

.tj-pagination {
  margin-top: 50px;
}
.tj-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.tj-pagination ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--tj-color-border-1);
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}
.tj-pagination ul li .page-numbers i {
  line-height: 1;
  color: var(--tj-color-heading-primary);
  transition: all 0.5s;
}
.tj-pagination ul li .page-numbers:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-primary);
}
.tj-pagination ul li .page-numbers:hover i {
  color: var(--tj-color-common-white);
}
.tj-pagination ul li .page-numbers.current {
  background-color: var(--tj-color-theme-bg-dark);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-bg-dark);
}
.tj-pagination ul li .page-numbers.current i {
  color: var(--tj-color-common-white);
}
.tj-pagination ul li .page-numbers.prev, .tj-pagination ul li .page-numbers.next {
  font-size: 22px;
}
.tj-pagination ul li .page-numbers.dots {
  line-height: 42px;
}

/*# sourceMappingURL=agina-main.css.map */
