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

  01. Theme Default CSS
  02. background CSS
	03. buttons css

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@200..800&family=Spline+Sans:wght@300..700&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'Spline Sans', sans-serif;
  --tj-ff-heading: 'Bricolage Grotesque', sans-serif;
  --tj-ff-icons: 'agina-icons';
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 16px;
  --tj-fs-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-white-2: #ecf0f0;
  --tj-color-common-white-3: #a9b8b8;
  --tj-color-common-white-4: #67787a;
  --tj-color-common-black: #000000;
  --tj-color-common-black-2: #676e7a;
  --tj-color-heading-primary: #0c0c0c;
  --tj-color-text-body: #333333;
  --tj-color-text-body-2: #707070;
  --tj-color-theme-primary: #de1a39;
  --tj-color-theme-dark: #0c0c0c;
  --tj-color-theme-dark-2: #333333;
  --tj-color-theme-bg: #fcf5ea;
  --tj-color-theme-bg-2: #ede5d8;
  --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-grey-2: #b8b8b8;
  --tj-color-grey-3: #f5f4f2;
  --tj-color-grey-4: rgba(255, 255, 255, 0.8);
  --tj-color-grey-5: rgba(252, 248, 240, 0.0588235294);
  --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-border-6: rgba(252, 248, 240, 0.1019607843);
  --tj-color-border-7: rgba(12, 12, 12, 0.1019607843);
  --tj-color-extra-1: #ff647c;
  --tj-color-extra-2: #88e64c;
  --tj-color-extra-3: #87e64b;
  --tj-color-extra-4: #d83c5c;
  --tj-color-extra-5: #d1ebc0;
}

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

body,
.site-main {
  min-height: 100%;
  overflow-x: hidden;
}

.site-main {
  overflow: hidden;
}

/**
  Typography CSS
*/
body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  line-height: 1.5;
  background-color: var(--tj-color-theme-bg);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

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: 1600px) {
  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: 1600px) {
  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: block;
}

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

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

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

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

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

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus,
button:focus:not(:focus-visible) {
  outline: 0;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input:not([type=submit]):not([type=radio]):not([type=checkbox]),
textarea {
  outline: none;
  background-color: --tj-color-common-white;
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-common-white);
  color: var(--tj-color-common-black);
  padding: 10px 15px;
}

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

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

/**
 	Common Classes CSS
*/
img {
  max-width: 100%;
}

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

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

.fix {
  overflow: hidden;
}

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

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

.gap-0-30 {
  --bs-gutter-x: 30px;
}
.gap-0-30 .row {
  --bs-gutter-x: 30px;
}

.gap-30 {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}
.gap-30 .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.top-space-15 {
  padding-top: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .top-space-15 {
    padding-top: 12px;
  }
}

.gap-60 {
  --bs-gutter-x: 120px;
}
.gap-60.row {
  --bs-gutter-x: 60px;
  --bs-gutter-y: 60px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .gap-60.row {
    --bs-gutter-x: 50px;
    --bs-gutter-y: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .gap-60.row {
    --bs-gutter-x: 40px;
    --bs-gutter-y: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gap-60 {
    --bs-gutter-x: 30px;
  }
  .gap-60.row {
    --bs-gutter-y: 40px;
  }
}

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

.bg-shape-2, .bg-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 597px;
  width: 100%;
  z-index: -1;
  mix-blend-mode: difference;
  pointer-events: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bg-shape-2, .bg-shape-1 {
    max-width: 450px;
  }
}
.bg-shape-2 {
  top: inherit;
  left: inherit;
  bottom: 0;
  right: 0;
}
.bg-shape-sm {
  max-width: 450px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bg-shape-sm {
    max-width: 400px;
  }
}

.section-gap-x {
  -webkit-margin-start: 15px;
          margin-inline-start: 15px;
  -webkit-margin-end: 15px;
          margin-inline-end: 15px;
  border-radius: 12px;
}
@media (max-width: 575px) {
  .section-gap-x {
    -webkit-margin-start: 10px;
            margin-inline-start: 10px;
    -webkit-margin-end: 10px;
            margin-inline-end: 10px;
  }
}

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

.container-space {
  padding: 0 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .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;
  }
}

.marquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.tj-fade,
.reveal-line {
  opacity: 0;
}

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

.ff-heading {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
}
.ff-heading a {
  color: inherit;
}

.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.2;
  letter-spacing: -0.015em;
}
@media (max-width: 575px) {
  .fs-20 {
    font-size: 18px;
  }
}

.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;
  line-height: 1;
  letter-spacing: -0.02em;
}
@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;
  line-height: 1.27;
  letter-spacing: -0.015em;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fs-28 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  .fs-28 {
    font-size: 22px;
  }
}

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

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

.fs-120 {
  font-size: 120px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.fs-120 i,
.fs-120 svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: 1601px) and (max-width: 1700px) {
  .fs-120 {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .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: 1601px) and (max-width: 1700px) {
  .fs-230 {
    font-size: 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .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);
}

/**
  Buttons CSS
*/
.tj_btn, .tj_bordered_btn {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tj_btn .flip-text, .tj_bordered_btn .flip-text {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.tj_btn .flip-text .front, .tj_bordered_btn .flip-text .front {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tj_btn .flip-text .back, .tj_bordered_btn .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  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 {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          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%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: 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);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}
.tj_icon_btn .icon_btn.hover-bg i,
.tj_icon_btn .icon_btn.hover-bg svg {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tj_icon_btn .flip-text {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.tj_icon_btn .flip-text .front {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.tj_icon_btn .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  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 {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          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 {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj_icon_btn:hover .icon_btn.scale, .tj_icon_btn:focus .icon_btn.scale {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          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 {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          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 {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}
.tj_icon_btn:hover .flip-text .back, .tj_icon_btn:focus .flip-text .back {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-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 {
  -webkit-box-align: end;
      -ms-flex-align: end;
          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 {
  -webkit-transition: all 0.5s;
  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 {
  -webkit-animation: lineHover 0.4s linear;
          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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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 {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.tj_icon_btn.rounded_icon:hover .flip-text::after {
  -webkit-animation: linehover 0.5s linear;
          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_icon_btn_light {
  color: var(--tj-color-light-1);
  border-color: var(--tj-color-light-1);
}
.tj_icon_btn_light .icon_btn {
  background-color: var(--tj-color-theme-primary);
}
.tj_icon_btn_light:hover, .tj_icon_btn_light:focus {
  color: var(--tj-color-light-1);
}
.tj_marquee_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--gap);
  max-width: 160px;
  width: 100%;
  overflow: hidden;
}
.tj_marquee_btn .text_btn span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          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 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tj_marquee_btn:hover .text_btn span {
  -webkit-animation: scroll 3s linear infinite;
          animation: scroll 3s linear infinite;
}
.tj_marquee_btn:hover .icon_btn {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.tj_marquee_btn:hover .icon_btn i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 105%;
  line-height: 1;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out 0s;
  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;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.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 {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.tj_text_btn:focus::before, .tj_text_btn:hover::before {
  -webkit-animation: lineHover 0.5s linear;
          animation: lineHover 0.5s linear;
}
.tj_swiper_nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
  transition: all 0.4s;
}
.tj_swiper_nav > span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}
.tj_swiper_nav > span i,
.tj_swiper_nav > span svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  position: relative;
  top: 0;
  color: var(--tj-color-light-1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tj_swiper_nav > span i:last-child,
.tj_swiper_nav > span svg:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          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 {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          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 {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj_swiper_nav:hover > span i:last-child,
.tj_swiper_nav:hover > span svg:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj_swiper_nav:hover.prev > span i:first-child,
.tj_swiper_nav:hover.prev > span svg:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
@media (max-width: 575px) {
  .tj_swiper_nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}
.tj_btn_2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
}
.tj_btn_2 .tj_btn_icon:first-child {
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-margin-end: -50px;
          margin-inline-end: -50px;
  opacity: 0;
}
.tj_btn_2 .tj_btn_icon:last-child {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-margin-start: 0;
          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 {
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  opacity: 1;
}
.tj_btn_2:hover .tj_btn_icon:last-child {
  -webkit-transform: scale3d(0, 0, 1);
          transform: scale3d(0, 0, 1);
  -webkit-margin-start: -50px;
          margin-inline-start: -50px;
  opacity: 0;
}

.icon_btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  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;
  transition: all 0.4s;
}
.icon_btn > span {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.icon_btn > span i,
.icon_btn > span svg {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  position: relative;
  top: 0;
  color: var(--tj-color-light-1);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.icon_btn > span i:last-child,
.icon_btn > span svg:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          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 {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.icon_btn_rounded:hover > span i:last-child,
.icon_btn_rounded:hover > span svg:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
}
.flip-text-wrap .flip-text .front {
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.flip-text-wrap .flip-text .back {
  position: absolute;
  top: 100%;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

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

.tj-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  position: relative;
  background-color: var(--tj-color-theme-primary);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  padding: 5px 5px 5px 25px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  white-space: nowrap;
  z-index: 2;
  overflow: hidden;
}
.tj-btn .btn-text {
  color: var(--tj-color-common-white);
  overflow: hidden;
}
.tj-btn .btn-text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.tj-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background-color: var(--tj-color-theme-dark);
  border-radius: 50%;
}
.tj-btn .btn-icon i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tj-btn-white {
  background-color: var(--tj-color-common-white);
}
.tj-btn-white .btn-text {
  color: var(--tj-color-heading-primary);
}
.tj-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px);
}
.tj-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.tj-btn-add-cart .btn-icon i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.tj-btn-add-cart:hover .btn-icon i {
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
  -webkit-animation: gelatine 0.6s;
          animation: gelatine 0.6s;
}
.tj-btn-purchase.tj-btn {
  background-color: var(--tj-color-common-white);
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-padding-end: 0;
          padding-inline-end: 0;
}
.tj-btn-purchase.tj-btn .btn_inner {
  padding: 9px 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-btn-purchase.tj-btn .btn_inner .btn_text {
  text-shadow: none;
  color: var(--tj-color-theme-dark);
}
.tj-btn-purchase.tj-btn .btn_inner::before {
  display: none;
}
.tj-btn-purchase.tj-btn .btn_inner img {
  width: 90px;
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-btn-purchase.tj-btn:hover {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
  background-color: var(--tj-color-extra-2);
}
.tj-btn-purchase.tj-btn:hover .btn_inner img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.tj-btn-purchase.tj-btn:hover .btn_inner .btn_text {
  color: var(--tj-color-theme-dark);
}
.tj-btn-purchase.tj-btn:hover .btn_inner .btn_text > span {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.tj-btn-purchase-2.tj-btn {
  background-color: var(--tj-color-extra-2);
}
.tj-btn-purchase-2.tj-btn .btn_inner img {
  -webkit-filter: brightness(0);
          filter: brightness(0);
}
.tj-btn-purchase-2.tj-btn:hover {
  background-color: var(--tj-color-common-white);
}
.tj-btn-purchase-2.tj-btn:hover .btn_inner img {
  -webkit-filter: brightness(1);
          filter: brightness(1);
}

.tj_btn_badge {
  font-family: var(--tj-ff-heading);
  font-size: 24px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.01em;
  width: 62px;
  height: 62px;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-light-1);
  border-radius: 50%;
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  -webkit-transform: translate(50%, -50%);
      -ms-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 2px;
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation: tjZoomInOut 4s ease-in-out infinite alternate;
          animation: tjZoomInOut 4s ease-in-out infinite alternate;
}
.tj_btn_badge_text {
  font-family: var(--tj-ff-body);
  font-size: 13px;
  font-weight: var(--tj-fw-regular);
  letter-spacing: 0;
}
.tj_btn_badge_wrapper {
  position: relative;
}
.tj_btn_badge_wrapper:hover .tj_btn_badge {
  -webkit-transform: translate(50%, -50%) scale(0.9);
      -ms-transform: translate(50%, -50%) scale(0.9);
          transform: translate(50%, -50%) scale(0.9);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  width: 100%;
  position: relative;
  z-index: 9;
  padding: 0 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-header-area {
    padding: 0 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-header-area {
    padding: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area {
    padding: 15px 5px;
  }
}
@media (max-width: 575px) {
  .tj-header-area {
    padding: 20px 5px;
  }
}
.tj-header-area.header-absolute {
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  border-bottom: 1px solid var(--tj-color-border-6);
  z-index: 90;
}
.tj-header-area.header-duplicate {
  position: fixed;
  top: -90px;
  left: 0;
  z-index: 98;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tj-header-area.header-duplicate.sticky-out {
  top: 0;
  opacity: 1;
  -webkit-animation: bounceInUp 1s;
          animation: bounceInUp 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  background-color: var(--tj-color-theme-dark);
}
.tj-header-area.sticky {
  z-index: 100;
  top: 0;
  opacity: 1;
  -webkit-animation: bounceInDown 1s;
          animation: bounceInDown 1s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  background-color: var(--tj-color-theme-dark);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area .tj-header-button {
    margin-left: auto;
  }
}

.tj-header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-header-wrapper .tj-header-logo {
  max-width: 175px;
  width: 100%;
}
.tj-header-wrapper .tj-header-logo a {
  display: inline-block;
}

.tj-header-area .menu-bar {
  margin-left: 25px;
}

.menu_bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 20px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.menu_bar i {
  font-size: 24px;
  font-weight: var(--tj-fw-medium);
  display: none;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.menu_bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  margin-right: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_bar span:last-child, .menu_bar span:first-child {
  width: 25px;
}
.menu_bar.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--tj-color-theme-primary);
  border-radius: 7px;
}
.menu_bar.mobile_menu_bar span {
  background-color: var(--tj-color-common-white);
}
.menu_bar:hover span {
  width: 100%;
}
.menu_bar.menu-bar-toggeled i {
  display: block;
}
.menu_bar.menu-bar-toggeled span {
  display: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_bar {
    margin-left: 0;
  }
}

/* mobile-menu */
.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mobile-menu .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mean-container .mean-bar {
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-gradient-1)), color-stop(100%, var(--tj-color-gradient-3)), to(var(--tj-color-gradient-2)));
  background: linear-gradient(90deg, var(--tj-color-gradient-1) 0%, var(--tj-color-gradient-3) 100%, var(--tj-color-gradient-2) 100%);
  color: var(--tj-color-common-white);
}

.mean-nav ul li a.mean-expand i.fa-plus {
  display: block;
}

.mean-nav ul li a.mean-expand i.fa-minus {
  display: none;
}

.mobile-menu .mean-nav ul:not(.sub-menu) {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.mean-nav ul li a.mean-expand.mean-clicked i.fa-minus {
  display: block;
}

.mean-nav ul li a.mean-expand.mean-clicked i.fa-plus {
  display: none;
}

.tj-header-area .mobile-menu .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.tj-header-area .mobile-menu.mean-container .mean-nav {
  background: transparent;
  overflow: hidden;
  margin-top: 0;
  margin-bottom: 0px;
}

.tj-header-area .mobile-menu {
  overflow: hidden;
  position: fixed;
  left: 15px;
  top: 70px;
  width: calc(100% - 30px);
  max-height: calc(100% - 80px);
  overflow-y: auto;
  background: var(--tj-color-theme-dark);
  color: var(--tj-color-common-white);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: -1;
}
@media (max-width: 575px) {
  .tj-header-area .mobile-menu {
    width: calc(100% - 20px);
    left: 10px;
  }
}

.tj-header-area .mobile-menu.opened {
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.tj-header-area .mobile-menu ul {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.tj-header-area .mobile-menu ul li {
  width: 100%;
  display: block;
}

.tj-header-area .mobile-menu ul li a:not(.mean-expand) {
  width: 100%;
  text-transform: capitalize;
  line-height: 1.2;
  padding: 18px 0;
  letter-spacing: 1px;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tj-header-area .mobile-menu ul li:last-child a:not(.mean-expand) {
  border-bottom: 0;
  padding-bottom: 0;
}

.tj-header-area .mobile-menu ul li a.mean-expand {
  width: 30px;
  height: 30px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  top: 13px;
}

.tj-header-area .mobile-menu ul li > .sub-menu {
  max-width: 100%;
  padding: 0;
}

.tj-header-area .mobile-menu ul li > .sub-menu > li {
  padding-left: 20px;
}

.tj-header-area .mobile-menu ul li > .sub-menu > li > a:not(.mean-expand) {
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 16px;
  padding: 15px 0;
}

#innerMenu .elementor-icon-list-item.active {
  border-bottom: 2px solid var(--e-global-color-3f0b73b);
}

#innerMenu .elementor-icon-list-item.active > a span {
  color: var(--e-global-color-3f0b73b);
}

#innerMenu .elementor-icon-list-item {
  border-bottom: 2px solid transparent;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes bounceInUp {
  0%, 10%, 35%, 50%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  10% {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
  35% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }
  80% {
    -webkit-transform: translate3d(0, -90px, 0);
    transform: translate3d(0, -90px, 0);
  }
  to {
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
}
@keyframes bounceInUp {
  0%, 10%, 35%, 50%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  10% {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
  }
  35% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  50% {
    -webkit-transform: translate3d(0, 2px, 0);
    transform: translate3d(0, 2px, 0);
  }
  80% {
    -webkit-transform: translate3d(0, -90px, 0);
    transform: translate3d(0, -90px, 0);
  }
  to {
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
}
@-webkit-keyframes bounceTwice {
  0% {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  25% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  50% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
  75% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}
@keyframes bounceTwice {
  0% {
    -webkit-transform: rotate(45deg) translateY(0);
            transform: rotate(45deg) translateY(0);
  }
  25% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  50% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
  75% {
    -webkit-transform: rotate(0deg) translateY(-3px);
            transform: rotate(0deg) translateY(-3px);
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0);
            transform: rotate(0deg) translateY(0);
  }
}
/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-menu ul {
    -webkit-column-gap: 28px;
       -moz-column-gap: 28px;
            column-gap: 28px;
  }
}
.tj-header-menu ul > li > a, .tj-header-menu ul > li > button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-light-2);
  font-weight: var(--tj-fw-medium);
  font-size: 16px;
  text-decoration: none;
  padding: 40px 11px 38px;
  position: relative;
  line-height: 1;
}
.tj-header-menu ul > li > a::after, .tj-header-menu ul > li > a::before, .tj-header-menu ul > li > button::after, .tj-header-menu ul > li > button::before {
  font-size: 16px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-light-2);
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-header-menu ul > li > a::before, .tj-header-menu ul > li > button::before {
  content: "[";
  left: 0;
}
.tj-header-menu ul > li > a::after, .tj-header-menu ul > li > button::after {
  content: "]";
  right: 0;
  top: auto;
  height: auto;
  width: auto;
  background: none;
  border-radius: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-menu ul > li > a, .tj-header-menu ul > li > button {
    font-size: 14px;
  }
}
.tj-header-menu ul > li:hover > a,
.tj-header-menu ul > li:hover > button, .tj-header-menu ul > li.current > a,
.tj-header-menu ul > li.current > button, .tj-header-menu ul > li.current-menu-ancestor > a,
.tj-header-menu ul > li.current-menu-ancestor > button {
  color: var(--tj-color-theme-primary);
}
.tj-header-menu ul > li:hover > a .flip-text .front,
.tj-header-menu ul > li:hover > button .flip-text .front, .tj-header-menu ul > li.current > a .flip-text .front,
.tj-header-menu ul > li.current > button .flip-text .front, .tj-header-menu ul > li.current-menu-ancestor > a .flip-text .front,
.tj-header-menu ul > li.current-menu-ancestor > button .flip-text .front {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}
.tj-header-menu ul > li:hover > a .flip-text .back,
.tj-header-menu ul > li:hover > button .flip-text .back, .tj-header-menu ul > li.current > a .flip-text .back,
.tj-header-menu ul > li.current > button .flip-text .back, .tj-header-menu ul > li.current-menu-ancestor > a .flip-text .back,
.tj-header-menu ul > li.current-menu-ancestor > button .flip-text .back {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tj-header-menu ul > li:hover > a::after, .tj-header-menu ul > li:hover > a::before,
.tj-header-menu ul > li:hover > button::after,
.tj-header-menu ul > li:hover > button::before, .tj-header-menu ul > li.current > a::after, .tj-header-menu ul > li.current > a::before,
.tj-header-menu ul > li.current > button::after,
.tj-header-menu ul > li.current > button::before, .tj-header-menu ul > li.current-menu-ancestor > a::after, .tj-header-menu ul > li.current-menu-ancestor > a::before,
.tj-header-menu ul > li.current-menu-ancestor > button::after,
.tj-header-menu ul > li.current-menu-ancestor > button::before {
  color: var(--tj-color-theme-primary);
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.tj-header-menu ul > li:hover > a::before,
.tj-header-menu ul > li:hover > button::before, .tj-header-menu ul > li.current > a::before,
.tj-header-menu ul > li.current > button::before, .tj-header-menu ul > li.current-menu-ancestor > a::before,
.tj-header-menu ul > li.current-menu-ancestor > button::before {
  left: -4px;
}
.tj-header-menu ul > li:hover > a::after,
.tj-header-menu ul > li:hover > button::after, .tj-header-menu ul > li.current > a::after,
.tj-header-menu ul > li.current > button::after, .tj-header-menu ul > li.current-menu-ancestor > a::after,
.tj-header-menu ul > li.current-menu-ancestor > button::after {
  right: -4px;
}

/* !END: Theme Header CSS */
/* !START: Footer CSS */
.tj-footer-section {
  background: url("../img/footer/footer-bg.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.tj-footer-copyright {
  padding: 25px 0;
  border-top: 1px solid var(--tj-color-border-4);
}
.tj-footer-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: 489px;
  z-index: 1;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(rgba(115, 115, 115, 0)));
  -webkit-mask-image: linear-gradient(180deg, #d9d9d9 0%, rgba(115, 115, 115, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(rgba(115, 115, 115, 0)));
          mask-image: linear-gradient(180deg, #d9d9d9 0%, rgba(115, 115, 115, 0) 100%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-footer-img {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-img {
    max-width: 375px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-img {
    max-width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-img {
    max-width: 300px;
    left: -115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-footer-img {
    max-width: 300px;
    left: -154px;
  }
}
@media (max-width: 575px) {
  .tj-footer-img {
    max-width: 250px;
    left: -164px;
  }
}
.tj-footer-img:last-child {
  left: auto;
  right: 0;
  max-width: 489px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-footer-img:last-child {
    max-width: 400px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-img:last-child {
    max-width: 375px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-img:last-child {
    max-width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-img:last-child {
    max-width: 300px;
    right: -115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-footer-img:last-child {
    max-width: 300px;
    right: -154px;
  }
}
@media (max-width: 575px) {
  .tj-footer-img:last-child {
    max-width: 250px;
    right: -164px;
  }
}

.copyright {
  color: var(--tj-color-light-2);
  font-family: var(--tj-ff-body);
  letter-spacing: 0.01em;
}
.copyright p {
  font-size: 18px;
  margin-bottom: 0;
}
.copyright p a {
  color: var(--tj-color-light-1);
}
.copyright p a:hover {
  color: var(--tj-color-border-2);
}

/* !END: Footer CSS */
/**----------------------------------------
START: Theme Animation Keyfream CSS
----------------------------------------*/
.tj-anim-move-var {
  -webkit-animation-name: moveVar;
          animation-name: moveVar;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
}

@-webkit-keyframes moveVar {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}

@keyframes moveVar {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
}
@-webkit-keyframes moving-left {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  20% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translatey(-30px);
            transform: translatey(-30px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@keyframes moving-left {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  20% {
    -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
  }
  50% {
    -webkit-transform: translatey(-30px);
            transform: translatey(-30px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@-webkit-keyframes moving-right {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  20% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translatey(30px);
            transform: translatey(30px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@keyframes moving-right {
  0% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
  20% {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  50% {
    -webkit-transform: translatey(30px);
            transform: translatey(30px);
  }
  100% {
    -webkit-transform: translatey(0px);
            transform: translatey(0px);
  }
}
@-webkit-keyframes gelatine {
  from, to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
            transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
            transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
}
@keyframes gelatine {
  from, to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
            transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
            transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
}
.tj-zoom-in-out-anim {
  -webkit-animation-name: zoomInOutAnim;
          animation-name: zoomInOutAnim;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOutAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}

@keyframes zoomInOutAnim {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
}
@-webkit-keyframes lineHover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    right: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes lineHover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    right: 0;
  }
  100% {
    width: 100%;
    left: 0;
  }
}
@keyframes gelatine {
  from, to {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
            transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
            transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
            transform: scale(0.95, 1.05);
  }
}
@-webkit-keyframes tjZoomInOut {
  50% {
    -webkit-transform: translate(50%, -50%) scale(0.8);
            transform: translate(50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(50%, -50%) scale(1);
            transform: translate(50%, -50%) scale(1);
  }
}
@keyframes tjZoomInOut {
  50% {
    -webkit-transform: translate(50%, -50%) scale(0.8);
            transform: translate(50%, -50%) scale(0.8);
  }
  100% {
    -webkit-transform: translate(50%, -50%) scale(1);
            transform: translate(50%, -50%) scale(1);
  }
}
/* !END: Theme Animation Keyfream CSS */
/**----------------------------------------
START: Theme section  CSS
----------------------------------------*/
.section_heading .sec_title {
  margin-top: 16px;
}
.section_heading_center {
  text-align: center;
  margin-bottom: 65px;
  max-width: 801px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section_heading_center {
    margin-bottom: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section_heading_center {
    margin-bottom: 40px;
  }
}
.section_heading_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 55px;
  gap: 0 40px;
}
.section_heading_inner .sec_desc {
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section_heading_inner .sec_desc {
    margin-bottom: 0;
  }
}
.section_heading_inner .section_heading_left {
  width: 750px;
}
.section_heading_inner .section_heading_right {
  width: 400px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section_heading_inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .section_heading_inner .section_heading_left {
    width: 100%;
  }
  .section_heading_inner .section_heading_right {
    width: 100%;
    margin-top: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section_heading_inner {
    margin-bottom: 40px;
  }
}

.sec_subtitle {
  display: block;
  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);
}

/* !END: Theme section CSS */
/**----------------------------------------
START: Back to top CSS
----------------------------------------*/
#tj-back-to-top {
  height: 60px;
  width: 60px;
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 40px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  #tj-back-to-top {
    height: 50px;
    width: 50px;
  }
}
#tj-back-to-top.active {
  bottom: 40px;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
          animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--tj-color-theme-primary);
}
#tj-back-to-top .return {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#tj-back-to-top-percentage {
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: var(--tj-fw-sbold);
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
          box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
}
#tj-back-to-top-percentage i {
  font-size: var(--tj-fs-h5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #tj-back-to-top {
    right: 30px;
  }
  #tj-back-to-top.active {
    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-back-to-top {
    bottom: 20px;
    right: 20px;
  }
  #tj-back-to-top.active {
    bottom: 20px;
  }
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
            transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
            transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
/* !END: Back to top CSS */
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
.tj-preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  inset: 0;
  padding: 60px;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: nowrap;
      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%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  will-change: transform;
  -webkit-animation: preloader_marquee 200s linear infinite;
          animation: preloader_marquee 200s linear infinite;
}
.tj-preloader .loading_marquee .marquee_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  min-width: 100px;
}
.tj-preloader_bottom {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          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: 1600px) {
  .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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tj-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);
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  will-change: transform;
}
.tj-page-transition .brand-logo {
  position: absolute;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  max-width: 60px;
  width: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-animation: preloaderHeartBeat 2s infinite ease-in-out;
          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);
  }
}

@-webkit-keyframes preloader_marquee {
  0% {
    -webkit-transform: translateY(-50%) translateZ(0);
            transform: translateY(-50%) translateZ(0);
  }
  to {
    -webkit-transform: translateY(-50%) translate3d(-100%, 0, 0);
            transform: translateY(-50%) translate3d(-100%, 0, 0);
  }
}

@keyframes preloader_marquee {
  0% {
    -webkit-transform: translateY(-50%) translateZ(0);
            transform: translateY(-50%) translateZ(0);
  }
  to {
    -webkit-transform: translateY(-50%) translate3d(-100%, 0, 0);
            transform: translateY(-50%) translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes preloaderHeartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes preloaderHeartBeat {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            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;
  -webkit-transition: opacity 0.3s, color 0.4s;
  transition: opacity 0.3s, color 0.4s;
}
.cb-cursor::before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 50px;
  height: 50px;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  border-radius: 50%;
  -webkit-transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.1s, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.1s;
  transition: transform 0.3s ease-in-out, opacity 0.1s, -webkit-transform 0.3s ease-in-out;
  background-color: var(--tj-color-theme-primary);
}
.cb-cursor .cb-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: scale(0) rotate(10deg);
      -ms-transform: scale(0) rotate(10deg);
          transform: scale(0) rotate(10deg);
  opacity: 0;
  color: white;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.01em;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.3s;
  transition: opacity 0.4s, -webkit-transform 0.3s;
  transition: opacity 0.4s, transform 0.3s;
  transition: opacity 0.4s, transform 0.3s, -webkit-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 {
  -webkit-transform: scale(0.2);
      -ms-transform: scale(0.2);
          transform: scale(0.2);
}
.cb-cursor.-visible.-active::before {
  -webkit-transform: scale(0.23);
      -ms-transform: scale(0.23);
          transform: scale(0.23);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.cb-cursor.-text::before {
  background-color: #000;
  opacity: 0.8;
  backdrop-filter: blur(10);
  -webkit-transform: scale(1.7);
      -ms-transform: scale(1.7);
          transform: scale(1.7);
}
.cb-cursor.-text.-active::before {
  -webkit-transform: scale(1.6);
      -ms-transform: scale(1.6);
          transform: scale(1.6);
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.cb-cursor.-text .cb-cursor-text {
  opacity: 1;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.cb-cursor.-inverse {
  color: white;
}
.cb-cursor.-pointer::before {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.cb-cursor.-opaque::before {
  -webkit-transform: scale(1.32);
      -ms-transform: scale(1.32);
          transform: scale(1.32);
}
.cb-cursor.-opaque.-active::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.cb-cursor.-lg::before {
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
}
.cb-cursor.-hidden::before {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.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);
  -webkit-transform: scale(2.3);
      -ms-transform: scale(2.3);
          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;
  -webkit-transform: scale(0);
      -ms-transform: scale(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);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          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 {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.cb-cursor.project::before, .cb-cursor.project.-active::before {
  background-color: var(--tj-color-light-1);
  -webkit-transform: scale(2.8);
      -ms-transform: scale(2.8);
          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 {
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          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 {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  display: inline-block;
}
.cb-cursor.service-3::before, .cb-cursor.service-3.-active::before {
  -webkit-transform: scale(1.12);
      -ms-transform: scale(1.12);
          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;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cb-cursor.service-3, .cb-cursor.service-3.-active {
    display: none;
  }
}
.cb-cursor.light::before, .cb-cursor.light.-active::before {
  background-color: var(--tj-color-light-1);
  -webkit-transform: scale(2.2);
      -ms-transform: scale(2.2);
          transform: scale(2.2);
}
.cb-cursor.light .cb-cursor-text, .cb-cursor.light.-active .cb-cursor-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) {
  .cb-cursor {
    display: none;
  }
}

@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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
}

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

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

@media (min-width: 1600px) {
  .cb-demo-row {
    margin: 60px 0;
  }
}
.cb-demo-item {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          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;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}

/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70vh;
  padding: 187px 0 120px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-area {
    padding: 160px 0 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-area {
    padding: 150px 0 70px;
    min-height: auto;
    background-position: left center;
  }
}
.tj-hero-demo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-demo {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-demo {
    gap: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-demo {
    gap: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: stretch;
        -ms-flex-pack: stretch;
            justify-content: stretch;
  }
}
.tj-hero-demo-img {
  position: relative;
  z-index: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.tj-hero-demo-img > img {
  width: auto;
  height: 31.2vw;
  max-width: inherit;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-demo-img > img {
    height: 30.2vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-demo-img > img {
    height: 29.2vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-demo-img > img {
    height: 27.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-demo-img > img {
    height: 26.2vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-demo-img {
    width: 100%;
  }
  .tj-hero-demo-img > img {
    height: auto;
    width: 100%;
  }
  .tj-hero-demo-img-1 {
    -webkit-margin-start: -8px;
            margin-inline-start: -8px;
    -webkit-margin-end: -6px;
            margin-inline-end: -6px;
  }
  .tj-hero-demo-img-1 > img {
    width: 104%;
  }
}
.tj-hero-demo-elementor {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-demo-elementor {
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
.tj-hero-demo-elementor img {
  max-width: inherit;
  width: auto;
  height: 17vw;
}
.tj-hero-demo-shape {
  position: absolute;
  left: 6%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18.1vw;
  overflow: hidden;
}
.tj-hero-demo-shape-img {
  background-color: var(--tj-color-theme-bg);
  -webkit-transform: translateY(-10%);
      -ms-transform: translateY(-10%);
          transform: translateY(-10%);
}
.tj-hero-demo-shape img {
  mix-blend-mode: multiply;
}
.tj-hero-demo-right {
  max-width: 290px;
  overflow: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 31.2vw;
  scrollbar-width: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-demo-right {
    height: 30.2vw;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-demo-right {
    height: 29.2vw;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-demo-right {
    height: 27.2vw;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-demo-right {
    height: 26.2vw;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-demo-right {
    height: auto;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
}
.tj-hero-top-wrapper {
  max-width: 1175px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 92px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-top-wrapper {
    margin-bottom: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-top-wrapper {
    margin-bottom: 65px;
  }
}
.tj-hero-top-wrapper .logo {
  max-width: 88px;
  height: 88px;
  margin: auto;
  margin-bottom: 20px;
}
.tj-hero-top-wrapper .logo img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .tj-hero-top-wrapper .logo {
    max-width: 75px;
    height: 75px;
  }
}
.tj-hero-top-wrapper .tj-section-subtitle {
  color: var(--tj-color-light-2);
  font-size: 26px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.38;
  margin-bottom: 11px;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-top-wrapper .tj-section-subtitle {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.tj-hero-top-wrapper .hero-title .title {
  max-width: 885px;
  margin: 0 auto;
  font-size: 100px;
  line-height: 1.02;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--tj-color-light-1);
  font-weight: var(--tj-fw-sbold);
  text-align: center;
}
.tj-hero-top-wrapper .desc {
  color: var(--tj-color-light-2);
  margin-top: 26px;
  letter-spacing: 0.01em;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-top-wrapper {
    max-width: 820px;
  }
  .tj-hero-top-wrapper .hero-title .title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-top-wrapper {
    max-width: 811px;
  }
  .tj-hero-top-wrapper .hero-title .title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-top-wrapper {
    max-width: 675px;
  }
  .tj-hero-top-wrapper .hero-title .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-top-wrapper {
    max-width: 450px;
  }
  .tj-hero-top-wrapper .hero-title .title {
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  .tj-hero-top-wrapper .hero-title .title {
    font-size: 36px;
  }
}
.tj-hero-icon {
  position: absolute;
  top: 25%;
  left: 125px;
  max-width: 40px;
  width: 100%;
  z-index: 2;
  -webkit-animation: up-down-move 3s forwards infinite alternate;
          animation: up-down-move 3s forwards infinite alternate;
}
.tj-hero-icon img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-icon {
    top: 20%;
    left: 75px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-icon {
    top: 20%;
    left: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-icon {
    top: 22%;
    left: 35px;
    max-width: 25px;
  }
}

.tj_underline {
  position: relative;
}
.tj_underline::after {
  content: "";
  width: calc(100% - 9px);
  height: 4px;
  position: absolute;
  bottom: 18px;
  left: 7px;
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_underline::after {
    bottom: 13px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_underline::after {
    width: calc(100% - 3px);
    height: 3px;
    bottom: 5px;
    left: 4px;
  }
}
.tj_underline_2 {
  color: var(--tj-color-theme-primary);
}
.tj_underline_2::after {
  background-color: var(--tj-color-theme-primary);
  width: calc(100% - 24px);
  bottom: 10px;
  left: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_underline_2::after {
    width: calc(100% - 2px);
    bottom: 5px;
    left: 2px;
  }
}

.tj-elite-text {
  font-size: 22px;
  line-height: 1.36;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.01em;
  color: var(--tj-color-light-1);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-elite-text {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-elite-text {
    font-size: 18px;
  }
}
.tj-elite-box {
  padding: 30px;
  padding-top: 24px;
  background-image: url("../img/hero/elite-bg.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-elite-box {
    padding: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-elite-box {
    padding: 30px 20px;
  }
}
.tj-elite-box img {
  margin-top: 42px;
}

.tj-hero-marquee {
  background-color: var(--tj-color-extra-3);
}
.tj-hero-marquee .inner-counter {
  padding: 16px 28px 0;
}
.tj-hero-marquee .counter {
  font-size: 100px;
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.05em;
  margin-bottom: 0;
}
.tj-hero-marquee .text {
  font-size: 22px;
  line-height: 1.36;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0.01em;
  color: var(--tj-color-heading-primary);
  margin-bottom: 0;
}

.featured-marquee-wrapper {
  margin-top: 35px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-marquee-wrapper {
    margin-top: 40px;
  }
}
.featured-marquee {
  width: 100%;
}
.featured-marquee:first-child {
  margin-bottom: 8px;
}
.featured-marquee .swiper-slide {
  width: 100%;
  max-width: 160px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-marquee .swiper-slide {
    max-width: 150px;
  }
}
.featured-marquee-item {
  width: 100%;
  overflow: hidden;
}

@-webkit-keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
            transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
            transform: rotate(360deg) translateY(100px);
  }
}

@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
            transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
            transform: rotate(360deg) translateY(100px);
  }
}
.hero-mobile-images img {
  width: 100%;
}

@-webkit-keyframes hover-underline {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}

@keyframes hover-underline {
  0% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  49% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  50% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@-webkit-keyframes up-down-move {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes up-down-move {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.h5-maquee {
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-maquee {
    margin-top: -14px;
  }
}
.h5-maquee-inner {
  position: relative;
  background: var(--tj-color-theme-primary);
  padding: 18px 0;
  margin: 0 15px;
  z-index: 3;
  width: calc(100% - 30px);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h5-maquee-inner {
    padding: 14px 0;
  }
}
@media (max-width: 575px) {
  .h5-maquee-inner {
    width: calc(100% - 20px);
    padding: 14px 0;
    margin: 0 10px;
  }
}
.h5-maquee-inner .h5-maquee-slider-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.h5-maquee-inner .h5-maquee-slider-item {
  width: auto;
  display: inline-block;
}
.h5-maquee-inner .h5-maquee-slider-item .marquee-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
.h5-maquee-inner .h5-maquee-slider-item .marquee-box .marquee-icon {
  line-height: 1;
  font-size: 35px;
  -webkit-animation: pulseImg 1s infinite;
          animation: pulseImg 1s infinite;
  color: var(--tj-color-common-white);
}
.h5-maquee-inner .h5-maquee-slider-item .marquee-box .marquee-title .title {
  font-size: 24px;
  font-weight: var(--tj-fw-sbold);
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .h5-maquee-inner .h5-maquee-slider-item .marquee-box {
    gap: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h5-maquee-inner .h5-maquee-slider-item .marquee-box {
    gap: 30px;
  }
  .h5-maquee-inner .h5-maquee-slider-item .marquee-box .marquee-icon {
    font-size: 30px;
  }
  .h5-maquee-inner .h5-maquee-slider-item .marquee-box .marquee-title .title {
    font-size: 20px;
  }
}

@-webkit-keyframes pulseImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@keyframes pulseImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}
/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.tj-service-area {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-service-wrapper {
  padding: 40px 30px;
  background: var(--tj-color-common-white);
  position: relative;
  max-width: 410px;
  width: 100%;
  z-index: 1;
  border: 1px solid var(--tj-color-border-2);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-service-wrapper {
    max-width: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-wrapper {
    max-width: 333px;
  }
}
.tj-service-icon span {
  width: 70px;
  height: 70px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 45px;
}
.tj-service-icon span img {
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.tj-service-title {
  margin-bottom: 20px;
}
.tj-service-title a {
  display: inline-block;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-service-title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-service-desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-wrapper {
    padding: 30px 15px;
  }
  .tj-service-icon span {
    margin-bottom: 25px;
  }
  .tj-service-title {
    margin-bottom: 15px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-wrapper {
    padding: 30px 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .tj-service-icon span {
    margin-bottom: 25px;
  }
  .tj-service-title {
    margin-bottom: 15px;
    font-size: 22px;
  }
}

.services_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}
.services_wrap .tj-service-wrapper:hover .tj-service-icon span img {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}

.features_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}
.features_wrap .tj-service-wrapper {
  max-width: 300px;
  background-color: var(--tj-color-theme-bg);
  border: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .features_wrap .tj-service-wrapper {
    max-width: 100%;
  }
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Roll CSS
----------------------------------------*/
.marquee-area {
  background-color: var(--tj-color-theme-primary);
  padding: 30px 0;
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-area {
    padding: 25px 0;
  }
}
.marquee-area .tj-marquee-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-area .tj-marquee-box {
    gap: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-area .tj-marquee-box {
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-area .tj-marquee-box {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .marquee-area .tj-marquee-box {
    gap: 10px;
  }
}
.marquee-area .tj-marquee-box .tj-marquee-icon {
  position: relative;
  max-width: 80px;
  width: 100%;
  top: -2px;
}
.marquee-area .tj-marquee-box .tj-marquee-icon img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-area .tj-marquee-box .tj-marquee-icon {
    max-width: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-area .tj-marquee-box .tj-marquee-icon {
    max-width: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-area .tj-marquee-box .tj-marquee-icon {
    max-width: 40px;
  }
}
@media (max-width: 575px) {
  .marquee-area .tj-marquee-box .tj-marquee-icon {
    max-width: 30px;
  }
}
.marquee-area .tj-marquee-title .title {
  margin-bottom: 0;
  font-size: 120px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-area .tj-marquee-title .title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-area .tj-marquee-title .title {
    font-size: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-area .tj-marquee-title .title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .marquee-area .tj-marquee-title .title {
    font-size: 40px;
  }
}
.marquee-area .tj-marquee-wrapper {
  max-width: 100%;
  width: auto;
}
.marquee-area--primary {
  -webkit-transform: rotate(1.5deg);
      -ms-transform: rotate(1.5deg);
          transform: rotate(1.5deg);
}
.marquee-area--primary .tj-marquee-icon img {
  -webkit-animation: rotateImg2 6s infinite linear;
          animation: rotateImg2 6s infinite linear;
}
.marquee-area--dark {
  background-color: var(--tj-color-theme-bg);
  -webkit-transform: rotate(-1.5deg);
      -ms-transform: rotate(-1.5deg);
          transform: rotate(-1.5deg);
}
.marquee-area--dark .tj-marquee-title .title {
  color: var(--tj-color-common-white);
}
.marquee-area--dark .tj-marquee-icon img {
  -webkit-animation: rotateImg3 6s infinite linear;
          animation: rotateImg3 6s infinite linear;
}

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

@keyframes rotateImg2 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
@-webkit-keyframes rotateImg3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateImg3 {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Scroll slider */
.scroll-slider {
  --gap: 35px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          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) {
  .scroll-slider {
    --gap: 25px;
  }
}
@media (max-width: 575px) {
  .scroll-slider {
    --gap: 20px;
  }
}

.scroll-wrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
}

/* !END: Theme Roll CSS */
/**----------------------------------------
START: Theme Demo CSS
----------------------------------------*/
.tj-demo-area {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-demo-area {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-demo-area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-demo-area .container-fluid {
  max-width: 1980px;
}
.tj-demo-area .tj-puchage-demo-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 90px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-demo-area .tj-puchage-demo-button {
    margin-top: 70px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-demo-area .tj-puchage-demo-button {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-demo-area .tj-puchage-demo-button {
    margin-top: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-demo-area .tj-puchage-demo-button {
    margin-top: 40px;
  }
}
.tj-demo-wrapper {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-wrapper {
    margin-bottom: 0px;
  }
}
.tj-demo-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 50px;
}
.tj-demo-top-title {
  font-size: 32px;
  margin-bottom: 0;
}
.tj-demo-top-title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-demo-top-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .tj-demo-top-title {
    font-size: 24px;
  }
}
.tj-demo-title {
  font-size: 24px;
  font-weight: var(--tj-fw-sbold);
  line-height: 1.417;
  color: var(--tj-color-theme-dark);
  text-align: center;
}
.tj-demo-title span {
  color: var(--tj-color-text-body-2);
}
.tj-demo-thumb {
  position: relative;
  z-index: 1;
  -webkit-transition: none;
  transition: none;
}
.tj-demo-thumb .image {
  max-width: 596px;
  aspect-ratio: 580/420;
  width: 100%;
  padding: 30px 50px;
  padding-bottom: 0;
  margin-bottom: 25px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  overflow: hidden;
  background-color: var(--tj-color-theme-bg-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-demo-thumb .image {
    padding: 25px 40px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-demo-thumb .image {
    padding: 30px 40px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-thumb .image {
    padding: 25px 30px;
    padding-bottom: 0;
  }
}
.tj-demo-thumb .image-inner {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tj-demo-thumb .image-inner:has(video) {
  background-color: var(--tj-color-theme-bg-2);
}
.tj-demo-thumb .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-box-shadow: 0 0 50px rgba(12, 12, 12, 0.1);
          box-shadow: 0 0 50px rgba(12, 12, 12, 0.1);
}
.tj-demo-thumb .image video {
  width: 210%;
  mix-blend-mode: darken;
  -webkit-transform: scale(1.9);
      -ms-transform: scale(1.9);
          transform: scale(1.9);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-demo-thumb .image video {
    width: 213%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-thumb .image {
    max-width: 100%;
  }
}
.tj-demo-thumb .image .tj-demo-badge {
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--tj-color-common-white);
  background-color: #ff0000;
  padding: 3px 7px;
  border-radius: 40px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.tj-demo-thumb-2 .image {
  padding-bottom: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-demo-thumb-2 .image-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-demo-thumb-3 .image {
  padding: 0;
}
.tj-demo-thumb-3 .image img {
  height: 100%;
}
.tj-demo-thumb h6 {
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  font-size: 18px;
  text-align: center;
  margin-bottom: 0;
}
.tj-demo-thumb h6 a {
  color: var(--tj-color-heading-primary);
}
.tj-demo-thumb h6 a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-demo-thumb:not(.coming):hover .image::before {
  opacity: 0.7;
  visibility: visible;
}
.tj-demo-thumb:not(.coming):hover .tj-demo-button {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
.tj-demo-thumb-comming .image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/demo/upcomming-2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tj-demo-button {
  position: absolute;
  top: 60%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}

/* !END: Theme Demo CSS */
/**----------------------------------------
START: Theme Projct CSS
----------------------------------------*/
.tj-project-area {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(252, 245, 234)), color-stop(60%, rgb(12, 12, 12)));
  background: linear-gradient(0deg, rgb(252, 245, 234) 0%, rgb(12, 12, 12) 60%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-project-area .tj-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 65px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-area .tj-section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
    margin-bottom: 45px;
  }
}
.tj-project-area .tj-section-wrapper .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.tj-project-area .tj-section-wrapper .sec_title {
  color: var(--tj-color-light-1);
}
.tj-project-area .tj-section-wrapper .sec_title .tj_underline::after {
  width: calc(100% - 4px);
  bottom: 10px;
  left: 4px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-area .tj-section-wrapper .sec_title .tj_underline::after {
    width: 100;
    bottom: 2px;
    left: 2px;
  }
}
.tj-project-area .tj-section-wrapper .tj-section-desc {
  color: var(--tj-color-light-2);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-area .tj-section-wrapper .tj-section-desc {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .tj-project-area .tj-section-wrapper .tj-section-desc {
    font-size: 16px;
    margin-top: 10px;
  }
}
.tj-project-area .tj-section-heading-left {
  max-width: 765px;
  width: 100%;
}
.tj-project-area .tj-section-heading-left.style-2 {
  max-width: 840px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-area .tj-section-heading-left {
    max-width: 660px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-area .tj-section-heading-left {
    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) {
  .tj-project-area .tj-section-heading-left {
    max-width: 100%;
  }
}
.tj-project-area .tj-section-heading-right {
  max-width: 400px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-area .tj-section-heading-right {
    max-width: 314px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-area .tj-section-heading-right {
    max-width: 100%;
  }
}
.tj-project-slider-transition {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.tj-project-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}
.tj-project-title {
  font-size: 96px;
  color: var(--tj-color-theme-primary);
  display: inline-block;
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
  margin: 25px 0 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-title {
    font-size: 70px;
    margin-top: 0;
  }
}
.tj-project-thumb {
  overflow: hidden;
}
.tj-project-thumb img {
  width: 100%;
}

/* !END: Theme Projct CSS */
/**----------------------------------------
START: Theme Fature CSS
----------------------------------------*/
.featured {
  padding-top: 100px;
  padding-bottom: 120px;
  background: var(--tj-color-theme-bg);
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.featured.featured-2 {
  background: transparent;
  padding-top: 130px;
  padding-bottom: 150px;
  border-top: 1px solid var(--tj-color-border-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured.featured-2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured.featured-2 {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured.featured-2 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.featured .tj-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 45px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured .tj-section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.featured .tj-section-wrapper .tj-section-desc {
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 10px;
}
.featured .tj-section-heading-left {
  max-width: 765px;
  width: 100%;
}
.featured .tj-section-heading-left.style-2 {
  max-width: 840px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured .tj-section-heading-left {
    max-width: 100%;
  }
}
.featured .tj-section-heading-right {
  max-width: 364px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured .tj-section-heading-right {
    max-width: 314px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured .tj-section-heading-right {
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.featured-service .services_wrap {
  gap: 0;
  border: 1px solid var(--tj-color-border-3);
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 100%;
  margin: 60px auto 30px;
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-service .services_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-service .services_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-service .services_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.featured-service .services_wrap .tj-service-wrapper {
  padding: 25px;
  background-color: transparent;
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-width: 0;
  border-right-width: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: inherit;
  width: 25%;
}
.featured-service .services_wrap .tj-service-wrapper .tj-service-icon span {
  width: 48px;
  height: 48px;
  background-color: var(--tj-color-grey-5);
  margin-bottom: 0;
  border: 1px solid var(--tj-color-border-3);
}
.featured-service .services_wrap .tj-service-wrapper .tj-service-content {
  max-width: 103px;
  width: 100%;
}
.featured-service .services_wrap .tj-service-wrapper .tj-service-title {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-light-2);
  text-align: left;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.375;
  font-weight: var(--tj-fw-medium);
  letter-spacing: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-service .services_wrap .tj-service-wrapper {
    width: 50%;
    border-width: 0;
  }
  .featured-service .services_wrap .tj-service-wrapper:not(:nth-last-child(1), :nth-last-child(2)) {
    border-bottom-width: 1px;
  }
  .featured-service .services_wrap .tj-service-wrapper:not(:nth-child(2n)) {
    border-right-width: 1px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-service .services_wrap .tj-service-wrapper {
    width: 50%;
    border-width: 0;
  }
  .featured-service .services_wrap .tj-service-wrapper:not(:nth-last-child(1), :nth-last-child(2)) {
    border-bottom-width: 1px;
  }
  .featured-service .services_wrap .tj-service-wrapper:not(:nth-child(2n)) {
    border-right-width: 1px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-service .services_wrap .tj-service-wrapper {
    width: 100%;
    border-width: 0;
  }
  .featured-service .services_wrap .tj-service-wrapper:not(:last-child) {
    border-bottom-width: 1px;
  }
}
.featured-single {
  background: var(--tj-color-theme-dark);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-single {
    min-height: auto;
  }
}
.featured-single .featured-icon {
  margin-bottom: 22px;
}
.featured-single .featured-icon span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 77px;
  width: 100%;
  height: 77px;
}
.featured-single .featured-icon span img {
  width: 100%;
  border-radius: 6px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-single .featured-icon {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-single .featured-icon {
    margin-bottom: 20px;
  }
}
.featured-single .featured-title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-single .featured-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .featured-single .featured-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .featured-single .featured-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .featured-single .featured-title {
    font-size: 26px;
  }
}
.featured-single .featured-title span {
  color: var(--tj-color-extra-4);
}
.featured-single .featured-desc {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-single .featured-desc {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-single .featured-desc {
    margin-bottom: 25px;
  }
}
.featured-single .featured-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-single .featured-list ul {
    grid-template-columns: 100%;
  }
}
.featured-single .featured-list ul li {
  color: var(--tj-color-theme-dark);
  font-weight: var(--tj-fw-sbold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.featured-single .featured-list ul li::before {
  content: "\e92f";
  font-family: "bexon-icons";
  color: var(--tj-color-theme-primary);
  font-size: 14px;
}
.featured-single .featured-img img {
  width: 100%;
}
.featured-single .featured-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-single .featured-content-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.featured-elementor .featured-img {
  max-width: 554px;
  margin-top: 30px;
  margin-right: 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) {
  .featured-elementor .featured-img {
    margin-top: 10px;
  }
}
.featured-elementor .featured-img.style-2 {
  position: relative;
}
.featured-elementor .featured-img.style-2 img {
  width: auto;
}
.featured-elementor .featured-img.style-2 .image-1 {
  width: 410px;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-elementor .featured-img.style-2 .image-1 {
    width: 470px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .featured-elementor .featured-img.style-2 .image-1 {
    width: 370px;
  }
}
@media (max-width: 575px) {
  .featured-elementor .featured-img.style-2 .image-1 {
    width: 100%;
  }
}
.featured-elementor .featured-img.style-2 .image-1 img {
  width: 100%;
}
.featured-elementor .featured-img.style-2 .image-2 {
  position: absolute;
  right: 0;
  bottom: 68px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 575px) {
  .featured-elementor .featured-img.style-2 .image-2 {
    position: unset;
    margin-top: 30px;
  }
  .featured-elementor .featured-img.style-2 .image-2 img {
    width: 100%;
  }
}
.featured-elementor .featured-title {
  color: var(--tj-color-light-1);
}
.featured-elementor .featured-desc {
  color: var(--tj-color-light-2);
}
.featured-elementor .featured-content {
  max-width: 41.5%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-elementor .featured-content {
    max-width: 100%;
  }
}
.featured-widgets {
  background-color: var(--tj-color-theme-bg-2);
  padding: 30px;
}
.featured-widgets .featured-content {
  max-width: 565px;
}
.featured-widgets .featured-desc {
  font-size: 18px;
  margin-bottom: 60px;
}
.featured-img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
}
.featured-img-wrap .image-1 {
  width: 35%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.featured-img-wrap .featured-images {
  width: 62.2%;
}
.featured-img-wrap .featured-images .image-2:first-child {
  -webkit-box-shadow: 0 0 60px rgba(12, 12, 12, 0.1);
          box-shadow: 0 0 60px rgba(12, 12, 12, 0.1);
}
.featured-img-wrap .featured-images .image-2:not(:last-child) {
  margin-bottom: 20px;
}
.featured-gsap {
  background-color: var(--tj-color-theme-dark);
  padding: 30px;
  position: relative;
  z-index: 1;
}
.featured-gsap .featured-content {
  max-width: 400px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-gsap .featured-content {
    margin-bottom: 158px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-gsap .featured-content {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-gsap .featured-content {
    margin-bottom: 10px;
  }
}
.featured-gsap .featured-title {
  color: var(--tj-color-light-1);
  font-size: 109px;
  line-height: 0.8;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-gsap .featured-title {
    font-size: 90px;
  }
}
@media sm, (max-width: 575px) {
  .featured-gsap .featured-title {
    font-size: 70px;
  }
}
.featured-gsap .featured-desc {
  max-width: 365px;
  font-size: 18px;
  line-height: 1.55;
  color: var(--tj-color-light-2);
}
.featured-gsap .featured-img {
  width: 46.2%;
  position: absolute;
  top: 16px;
  inset-inline-end: 0;
  z-index: -1;
  mix-blend-mode: lighten;
}
.featured-gsap .gsap-feature-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid var(--tj-color-border-3);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .featured-gsap .gsap-feature-area {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
.featured-gsap .feature-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 25px;
  border-style: solid;
  border-color: var(--tj-color-border-3);
  border-width: 0;
}
.featured-gsap .feature-item:not(:last-child) {
  border-right-width: 1px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .featured-gsap .feature-item {
    padding: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-gsap .feature-item:not(:last-child) {
    border-right-width: 0;
    border-bottom-width: 1px;
  }
}
.featured-gsap .feature-item:hover .feature-content .icon img {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.featured-gsap .feature-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
}
.featured-gsap .feature-content .icon {
  width: 48px;
  height: 48px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.featured-gsap .feature-content .icon img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.featured-gsap .feature-content .text {
  color: var(--tj-color-light-2);
  font-weight: var(--tj-fw-medium);
  line-height: 1.375;
  width: 105px;
}
.featured-scroll {
  padding: 30px;
}
.featured-scroll .featured-title {
  color: var(--tj-color-light-1);
}
.featured-scroll .featured-desc {
  color: var(--tj-color-light-2);
  font-size: 18px;
  line-height: 1.55;
}
.featured-scroll .featured-img {
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 50px auto 15px;
}
.featured-browser {
  padding: 30px;
  background-color: var(--tj-color-theme-bg-2);
}
.featured-browser .featured-desc {
  font-size: 18px;
  line-height: 1.55;
}
.featured-browser .featured-img {
  max-width: 338px;
  margin: 40px auto 5px;
}
@media sm, (max-width: 575px) {
  .featured-browser {
    margin-top: 40px;
  }
}
.featured-regular-update, .featured-mobile-first, .featured-elementor, .featured-one-click-import.style-2, .featured-load-speed {
  padding: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-regular-update, .featured-mobile-first, .featured-elementor, .featured-one-click-import.style-2, .featured-load-speed {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-regular-update, .featured-mobile-first, .featured-elementor, .featured-one-click-import.style-2, .featured-load-speed {
    padding: 25px 25px;
  }
}
.featured-regular-update, .featured-mobile-first, .featured-load-speed {
  min-height: 450px;
}
.featured-regular-update .featured-title, .featured-mobile-first .featured-title, .featured-load-speed .featured-title {
  margin-bottom: 9px;
}
.featured-one-click-import {
  padding: 0;
  background-color: var(--tj-color-theme-bg-2);
}
.featured-one-click-import .featured-img {
  text-align: end;
  margin-top: -30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-one-click-import .featured-img {
    margin-top: -5px;
  }
}
.featured-one-click-import .featured-img img {
  width: auto;
}
.featured-one-click-import .featured-desc {
  margin-bottom: 0;
}
.featured-one-click-import .featured-desc p {
  margin-bottom: 0;
}
.featured-one-click-import .featured-content {
  padding: 30px;
  padding-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-one-click-import .featured-content {
    padding: 30px;
    padding-bottom: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-one-click-import .featured-content {
    padding: 25px 25px;
    padding-bottom: 0;
  }
}
.featured-one-click-import.style-2 .featured-content {
  padding: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-one-click-import.style-2 .featured-content {
    padding: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-one-click-import.style-2 .featured-content {
    padding: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-regular-update {
    min-height: 100%;
  }
}
.featured-regular-update .featured-img img {
  width: auto;
}
.featured-regular-update .featured-title {
  max-width: 280px;
}
.featured-one-click-import .featured-img {
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
}
.featured-one-click-import .featured-img.mt-10 {
  margin-top: 10px;
}
.featured-one-click-import .featured-img.mt-30 {
  margin-top: 30px;
}
.featured-mobile-first {
  overflow: hidden;
  padding-bottom: 0;
}
.featured-mobile-first img {
  width: 100%;
}
.featured-mobile-first.style-2 {
  padding: 0;
}
.featured-mobile-first.style-2 .featured-content {
  padding: 40px 40px;
  padding-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-mobile-first.style-2 .featured-content {
    padding: 30px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-mobile-first.style-2 .featured-content {
    padding: 25px 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) {
  .featured-mobile-first {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.featured-mobile-first .featured-content {
  padding-right: 0;
}
.featured-mobile-first .featured-desc {
  margin-bottom: 0;
}
.featured-mobile-first .featured-desc p {
  margin-bottom: 0;
}
.featured-mobile-first .featured-img {
  margin-top: -18px;
  margin-left: -30px;
  margin-right: -30px;
}
.featured-load-speed {
  background-color: var(--tj-color-extra-5);
}
.featured-load-speed .featured-img {
  margin-top: 5px;
  margin-right: 17px;
}
.featured-load-speed .featured-title {
  max-width: 230px;
}
.featured-load-speed .featured-desc {
  margin-bottom: 23px;
}
.featured-load-speed .featured-content {
  max-width: 330px;
}
.featured-load-speed .featured-counter-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-load-speed .featured-counter-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.featured-load-speed .featured-counter-item {
  position: relative;
  -webkit-padding-start: 60px;
          padding-inline-start: 60px;
  -webkit-padding-end: 60px;
          padding-inline-end: 60px;
  min-width: 294px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-load-speed .featured-counter-item {
    -webkit-padding-start: 40px;
            padding-inline-start: 40px;
    -webkit-padding-end: 40px;
            padding-inline-end: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-load-speed .featured-counter-item {
    min-width: 216px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-load-speed .featured-counter-item {
    padding: 30px 0;
    width: 100%;
  }
  .featured-load-speed .featured-counter-item:last-child {
    padding-bottom: 0;
  }
}
.featured-load-speed .featured-counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: var(--tj-color-border-7);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-load-speed .featured-counter-item:not(:last-child)::after {
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
    width: 100%;
    height: 1px;
  }
}
.featured-load-speed .featured-counter-item .text {
  line-height: 1;
  margin-bottom: 14px;
}
.featured-load-speed .featured-counter-item .counter {
  font-size: 68px;
  letter-spacing: -0.04em;
  line-height: 0.7;
  margin-bottom: 0;
}
.featured-load-speed .featured-counter-item .counter-prefix {
  font-size: 45px;
  letter-spacing: -0.02em;
  margin-right: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .featured-load-speed .featured-counter-item .counter {
    font-size: 58px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-load-speed .featured-counter-item .counter {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-load-speed .featured-counter-item .counter {
    font-size: 54px;
  }
}
.featured-load-speed .featured-counter-empty {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  min-width: inherit;
}
.featured-load-speed .featured-counter-empty .title {
  font-size: 110px;
  line-height: 0.7;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured-load-speed .featured-counter-empty .title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured-load-speed .featured-counter-empty .title {
    font-size: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-load-speed .featured-counter-empty .title {
    font-size: 90px;
  }
}

/**----------------------------------------
START: Theme Fature CSS
----------------------------------------*/
.tj-feature-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background: url("../img/bg/bg-feature.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.tj-feature-area .tj-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area .tj-section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 5px;
  }
}
.tj-feature-area .tj-section-heading-left {
  max-width: 784px;
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-feature-area .tj-section-heading-left {
    max-width: 660px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-feature-area .tj-section-heading-left {
    max-width: 550px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area .tj-section-heading-left {
    max-width: 100%;
  }
}
.tj-feature-area .tj-section-heading-right {
  max-width: 400px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-feature-area .tj-section-heading-right {
    max-width: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-feature-area .tj-section-heading-right {
    max-width: 314px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area .tj-section-heading-right {
    max-width: 100%;
  }
}
.tj-feature-area .tj-section-desc {
  font-size: 18px;
  color: var(--tj-color-light-2);
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area .tj-section-desc {
    margin-bottom: 0;
  }
}
@media (max-width: 575px) {
  .tj-feature-area .tj-section-desc {
    font-size: 16px;
  }
}
.tj-feature-area .sec_title {
  max-width: 800px;
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-feature-area .sec_title {
    font-size: 48px;
  }
}
.tj-feature-area .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-feature-area {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-feature-area .features_wrap {
  margin-top: 50px;
}
.tj-feature-area .features_wrap .tj-service-wrapper {
  background-color: transparent;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  border: 1px solid var(--tj-color-border-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-feature-area .features_wrap .tj-service-wrapper {
    max-width: 350px;
  }
}
.tj-feature-area .features_wrap .tj-service-title {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--tj-color-common-white);
}
.tj-feature-area .features_wrap .tj-service-desc {
  color: var(--tj-color-light-2);
}
.tj-feature-wrapper {
  padding: 40px 30px 35px;
  border-color: 0;
  background: transparent;
}
@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-feature-wrapper {
    padding: 30px 15px;
  }
  .tj-feature-wrapper .tj-service-title {
    margin-bottom: 20px;
  }
}
.tj-feature-icon {
  margin-bottom: 40px;
}
.tj-feature-icon span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 58px;
  width: 100%;
  height: 58px;
  background-color: rgba(252, 248, 240, 0.1);
  backdrop-filter: blur(80px);
  border-radius: 100%;
}
@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-feature-icon {
    margin-bottom: 25px;
  }
}

.tj-service-wrapper:hover .tj-feature-icon span {
  -webkit-animation: gelatine 0.6s;
          animation: gelatine 0.6s;
}

/* !END: Theme Fature CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  padding-top: 140px;
  padding-bottom: 120px;
  background: var(--tj-color-theme-bg);
  position: relative;
  z-index: 0;
}
.tj-testimonial-section .section_heading {
  max-width: 800px;
  margin: 0 auto;
}
.tj-testimonial-section .testimonial_wrap {
  height: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-top: 50px;
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(30%, rgb(0, 0, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(30%, rgb(0, 0, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 30%, rgb(0, 0, 0) 70%, rgba(0, 0, 0, 0) 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-testimonial-section .testimonial_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
.tj-testimonial-section .scroll-slider {
  width: 25%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  --gap: 30px;
}
.tj-testimonial-section .scroll-slider:nth-child(even) .scroll-wrapper {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 35s;
          animation-duration: 35s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section .scroll-slider:last-child {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-testimonial-section .scroll-slider {
    width: 50%;
    --gap: 20px;
  }
  .tj-testimonial-section .scroll-slider:nth-child(3), .tj-testimonial-section .scroll-slider:last-child {
    display: none;
  }
}
@media (max-width: 575px) {
  .tj-testimonial-section .scroll-slider {
    width: 100%;
    --gap: 20px;
  }
  .tj-testimonial-section .scroll-slider:not(:first-child) {
    display: none;
  }
}
.tj-testimonial-section .scroll-wrapper {
  -webkit-animation: vrt-scroll 40s linear infinite;
          animation: vrt-scroll 40s linear infinite;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-testimonial-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.testimonial-item {
  position: relative;
  background: var(--tj-color-theme-bg-2);
  width: 100%;
  padding: 40px 30px;
  z-index: 1;
}
.testimonial-item .testimonial-rating {
  display: inline-block;
  margin-bottom: 20px;
  background-color: var(--tj-color-theme-bg-2);
}
.testimonial-item .testimonial-rating .star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  letter-spacing: 3px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item .testimonial-rating .star-ratings .fill-ratings {
  color: var(--tj-grey-1);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.testimonial-item .testimonial-rating .star-ratings .fill-ratings span {
  display: inline-block;
}
.testimonial-item .testimonial-rating .star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: var(--tj-color-grey-2);
}
.testimonial-item .desc {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--tj-color-theme-dark-2);
  line-height: 1.56;
}
.testimonial-item .desc p {
  margin-bottom: 0;
}
.testimonial-item .desc p b {
  text-decoration: underline;
  color: var(--tj-color-theme-dark);
  font-weight: var(--tj-fw-sbold);
  position: relative;
  z-index: 0;
}
.testimonial-item .testimonial-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid var(--tj-color-border-2);
  padding-top: 25px;
}
.testimonial-item .testimonial-auother .author-images {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48px;
  height: 48px;
  line-height: 1;
  background-color: var(--tj-color-extra-3);
  border-radius: 50%;
}
.testimonial-item .testimonial-auother .auother-name .title {
  margin-bottom: 0px;
}
.testimonial-item .testimonial-auother .auother-name .desig {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--tj-color-common-black-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item {
    padding: 35px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item {
    padding: 30px 15px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-item .desc {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@-webkit-keyframes vrt-scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(-100% - var(--gap)));
            transform: translateY(calc(-100% - var(--gap)));
  }
}

@keyframes vrt-scroll {
  from {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  to {
    -webkit-transform: translateY(calc(-100% - var(--gap)));
            transform: translateY(calc(-100% - var(--gap)));
  }
}
/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme CTA CSS
----------------------------------------*/
.tj-cta-section {
  background: transparent;
}

.tj-cta-section.style-2 {
  padding-bottom: 0px;
  background-color: transparent;
  position: relative;
}

.cta-wrapper {
  padding: 126px 25px 150px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.cta-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 25px;
  z-index: -1;
}
.cta-wrapper .section_heading {
  max-width: 800px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .section_heading {
    max-width: 554px;
  }
}
.cta-wrapper .section_heading .sec_subtitle > span {
  color: var(--tj-color-light-1);
}
.cta-wrapper .section_heading .sec_title {
  font-size: 48px;
  color: var(--tj-color-light-1);
  margin-bottom: 35px;
  letter-spacing: -0.03em;
}
.cta-wrapper .section_heading .sec_title .title-badge {
  color: var(--tj-color-theme-primary);
  position: relative;
  width: 62px;
  display: inline-block;
  margin-right: -20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-wrapper .section_heading .sec_title .title-badge {
    width: 45px;
    margin-right: -10px;
  }
}
.cta-wrapper .section_heading .sec_title .title-badge::after {
  content: "";
  position: absolute;
  left: 52%;
  top: 52%;
  -webkit-transform: translate(-51%, -50%);
      -ms-transform: translate(-51%, -50%);
          transform: translate(-51%, -50%);
  z-index: -1;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  background-image: url("../img/icon/title-badge-rounded.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .section_heading .sec_title {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-wrapper .section_heading .sec_title {
    font-size: 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) {
  .cta-wrapper {
    padding: 40px 15px;
  }
}

.featured-cta--elementor {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-cta--elementor {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured-cta--elementor {
    padding-top: 70px;
  }
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/* !END: Theme CTA CSS */
/**----------------------------------------
START: Theme Portfolio CSS
----------------------------------------*/
.portfolio-area {
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(#cb0891));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, #cb0891 100%);
  max-width: 1560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.portfolio-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 390px;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#100914), to(rgba(16, 9, 20, 0)));
  background: linear-gradient(360deg, #100914 0%, rgba(16, 9, 20, 0) 100%);
  z-index: 1;
}
.portfolio-area .tj-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 110px;
  position: relative;
  z-index: 3;
}
.portfolio-area .tj-section-wrapper .sec-text {
  max-width: 620px;
  width: 100%;
}
.portfolio-area .tj-section-wrapper .sec-text .tj-section-subtitle {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .portfolio-area .tj-section-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    padding-top: 80px;
  }
  .portfolio-area .tj-section-wrapper .tj-header-button {
    margin-left: 0;
  }
}

/* !END: Theme Portfolio CSS */
/**----------------------------------------
START: FAQ CSS
----------------------------------------*/
.tj-faq-section {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
  position: relative;
  background-color: var(--tj-color-theme-bg);
  border-top: 1px solid var(--tj-color-border-1);
}
@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-card {
  max-width: 390px;
  padding: 30px;
  background-color: var(--tj-color-theme-bg-2);
  margin-top: 246px;
}
.faq-card .card-title {
  font-size: 32px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-card .card-title {
    font-size: 28px;
  }
}
.faq-card .desc {
  font-size: 18px;
  margin-top: 14px;
}
@media (max-width: 575px) {
  .faq-card .desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-card {
    margin-top: 220px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-card {
    margin-top: 210px;
    padding: 30px 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) {
  .faq-card {
    margin-top: 0;
  }
}
@media (max-width: 575px) {
  .faq-card {
    max-width: 100%;
    padding: 30px 15px;
  }
}
.faq-action {
  margin-top: 25px;
}
.faq-action .tj_icon_btn {
  background-color: var(--tj-color-theme-dark);
  color: var(--tj-color-light-1);
}
.faq-action .tj_icon_btn .icon_btn {
  background-color: var(--tj-color-theme-primary);
}

.tj-faq-wrapper {
  max-width: 1038px;
  -webkit-margin-start: auto;
          margin-inline-start: auto;
}
.tj-faq {
  border: 1px solid var(--tj-color-border-1);
}
.tj-faq .accordion-item {
  background-color: transparent;
  border: 0;
  border-style: solid;
  border-color: var(--tj-color-border-1);
  border-bottom-width: 1px;
  position: relative;
  padding: 0 30px;
}
.tj-faq .accordion-item.active {
  background-color: var(--tj-color-theme-bg-2);
}
.tj-faq .accordion-item.active .faq-title {
  border-color: var(--tj-color-border-1);
}
.tj-faq .accordion-item.active .faq-title span {
  color: var(--tj-color-theme-dark);
}
.tj-faq .accordion-item:first-child {
  border-top-width: 1px;
  border-radius: 0;
  border-top: 0;
}
.tj-faq .accordion-item:last-child {
  border: 0;
  border-radius: 0;
}
.tj-faq .accordion-item .faq-title {
  font-size: 20px;
  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: 1.5;
  padding: 32px 0;
  width: 100%;
  position: relative;
  z-index: 2;
  -webkit-transition: none;
  transition: none;
  border-bottom: 1px solid transparent;
}
.tj-faq .accordion-item .faq-title span {
  color: var(--tj-color-theme-dark-3);
}
.tj-faq .accordion-item .faq-title::after {
  content: "\e92d";
  font-size: 14px;
  font-family: var(--tj-ff-icons) !important;
  font-weight: var(--tj-fw-thin);
  text-align: center;
  color: var(--tj-color-light-1);
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  inset-inline-end: 0;
  top: 30px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1px;
  -webkit-padding-start: 1px;
          padding-inline-start: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  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 {
    line-height: 1.3;
    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: 25px 0;
  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: 20px 0;
  }
}
.tj-faq .accordion-item .accordion-body ul {
  padding-left: 15px;
}
.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;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq .accordion-item {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq {
    margin-top: 50px;
  }
}

/* !END: FAQ CSS */
/**----------------------------------------
START: Layout CSS
----------------------------------------*/
.device-layout-section {
  padding-top: 140px;
  padding-bottom: 140px;
  overflow: hidden;
  position: relative;
  background-color: var(--tj-color-theme-bg);
  border-top: 1px solid var(--tj-color-border-1);
}
.device-layout-section .section_heading {
  max-width: 580px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .device-layout-section .section_heading .sec_title {
    font-size: 48px;
  }
}
.device-layout-section .section_heading .desc {
  max-width: 400px;
  width: 100%;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  margin: 13px 0 26px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .device-layout-section .section_heading .desc {
    max-width: 645px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .device-layout-section .section_heading .desc {
    font-size: 16px;
    margin: 10px 0 20px 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .device-layout-section .section_heading {
    max-width: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .device-layout-section .section_heading {
    max-width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .device-layout-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .device-layout-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .device-layout-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.device-layout-img {
  max-width: 1145px;
  width: 100%;
}

/* !END: FAQ CSS */
/**----------------------------------------
START: Theme Demo CSS
----------------------------------------*/
.tj-brand-area {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-brand-area {
    padding-top: 90px;
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-brand-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.tj-brand-area .container-fluid {
  max-width: 1980px;
}
.tj-brand-area .section_heading {
  margin-bottom: 42px;
}
.tj-brand-area .tj-puchage-demo-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
@media (max-width: 575px) {
  .tj-brand-area .tj-puchage-demo-button {
    margin-top: 50px;
  }
}
.tj-brand-marquee-wrapper {
  -webkit-mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30.6%, var(--tj-color-theme-bg)), color-stop(69.51%, var(--tj-color-theme-bg)), to(rgba(255, 255, 255, 0)));
  -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--tj-color-theme-bg) 30.6%, var(--tj-color-theme-bg) 69.51%, rgba(255, 255, 255, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(30.6%, var(--tj-color-theme-bg)), color-stop(69.51%, var(--tj-color-theme-bg)), to(rgba(255, 255, 255, 0)));
          mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--tj-color-theme-bg) 30.6%, var(--tj-color-theme-bg) 69.51%, rgba(255, 255, 255, 0) 100%);
  -webkit-margin-start: -15px;
          margin-inline-start: -15px;
  -webkit-margin-end: -15px;
          margin-inline-end: -15px;
}
.tj-brand-marquee .swiper-slide {
  width: 174px;
  height: 174px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-brand-marquee .swiper-slide {
    width: 160px;
    height: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-brand-marquee .swiper-slide {
    width: 150px;
    height: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-brand-marquee .swiper-slide {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 575px) {
  .tj-brand-marquee .swiper-slide {
    width: 100px;
    height: 100px;
  }
}
.tj-brand-marquee-item {
  width: 100%;
  height: 100%;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
}
.tj-brand-marquee-item:hover img {
  -webkit-animation: gelatine 0.6s;
          animation: gelatine 0.6s;
}

/* !END: Theme Demo CSS *//*# sourceMappingURL=main.css.map */