/************ 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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'DM Sans', sans-serif;
  --tj-ff-heading: 'Lora', serif;
  --tj-ff-p: 'DM Sans', sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 66px;
  --tj-fs-h2: 44px;
  --tj-fs-h3: 32px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 16px;
  --tj-fs-h6: 14px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #ffffff;
  --tj-color-text-body: #a49ea0;
  --tj-color-theme-primary: #b99a80;
  --tj-color-theme-secondary: #3c3e45;
  --tj-color-theme-bg: #31343B;
  --tj-color-theme-bg-2: #3B3E45;
  --tj-color-grey-1: #d5d0d0;
  --tj-color-grey-2: #ECA013;
  --tj-color-grey-3: #1D1129;
  --tj-color-border-1: #5b5d62;
  --tj-color-border-2: #818286;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-theme-secondary);
}

html,
body,
.site-main {
  min-height: 100%;
  overflow-x: 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;
}

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

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

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

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

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

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
  margin-top: 0px;
  font-weight: var(--tj-fw-sbold);
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

h1 {
  font-size: var(--tj-fs-h1);
}

h2 {
  font-size: var(--tj-fs-h2);
}

h3 {
  font-size: var(--tj-fs-h3);
}

h4 {
  font-size: var(--tj-fs-h4);
}

h5 {
  font-size: var(--tj-fs-h5);
}

h6 {
  font-size: var(--tj-fs-h6);
}

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

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

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

a,
.btn,
button,
span,
p,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

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

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

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input:not([type=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-scrollbar {
  height: 4px;
  width: 4px;
  background: var(--tj-color-theme-secondary);
}

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

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

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

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

.tj-theme-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;
  background-color: var(--tj-color-theme-primary);
  line-height: 1;
  padding: 17px 30px;
  position: relative;
  z-index: 1;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
}
.tj-theme-btn:hover {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
}
.tj-theme-btn.theme-border {
  background: transparent;
  border: 2px solid var(--tj-color-border-2);
  color: var(--tj-color-common-white);
  padding: 15px 30px;
}
.tj-theme-btn.theme-border::after, .tj-theme-btn.theme-border::before {
  content: "";
  background: radial-gradient(circle, rgb(50, 52, 59) 32%, var(--tj-color-border-2) 99%);
  position: absolute;
  z-index: -1;
  bottom: -2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 2px;
  width: 75%;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.tj-theme-btn.theme-border::after {
  top: -2px;
}
.tj-theme-btn.theme-border:hover::after, .tj-theme-btn.theme-border:hover::before {
  -webkit-transform: translateX(-50%) scaleX(0);
      -ms-transform: translateX(-50%) scaleX(0);
          transform: translateX(-50%) scaleX(0);
}

.tj-cancel-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;
  background: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  line-height: 1;
  padding: 18px 40px;
}
.tj-cancel-btn:hover {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  position: relative;
  padding: 0px 50px;
  z-index: 9;
  background-color: var(--tj-color-common-black-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tj-header-area.header-absolute {
  position: absolute;
  background-color: transparent;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 90;
}
.tj-header-area.header-duplicate {
  width: 100%;
  position: fixed;
  top: -90px;
  left: 0;
  padding: 0 50px;
  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;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.header-duplicate {
    padding: 0px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-duplicate {
    padding: 15px 0px;
  }
}
.tj-header-area.sticky {
  position: fixed;
  z-index: 100;
  width: 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-bg);
}
@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: 0px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area {
    padding: 15px 0px;
  }
}
@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: 203px;
  width: 100%;
}
.tj-header-wrapper .tj-header-logo a {
  display: inline-block;
}

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

.tj-header-area .menu-bar button {
  border: none;
  padding: 0;
  background-color: transparent;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}

.tj-header-area .menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--tj-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}

.tj-header-area .menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.tj-header-area .menu-bar button span:nth-child(3) {
  width: 30px;
}

.tj-header-area .menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  -webkit-transition: height 400ms;
  transition: height 400ms;
}

.tj-header-area .menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}

.tj-header-area .menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}

.tj-header-area .menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}

.tj-header-area .menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

/* 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-color: var(--tj-color-common-black);
}

.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: 0;
  top: 80px;
  width: 100%;
  min-height: 90vh;
  overflow-y: auto;
  background-color: var(--tj-color-theme-secondary);
  -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;
  z-index: -1;
}

.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: 65%;
  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: uppercase;
  line-height: 1.2;
  padding: 12px 0;
  letter-spacing: 1px;
  font-size: 22px;
  border: none;
}

.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: 22px;
  padding: 10px 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);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-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);
  }
}
/* !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: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
}
@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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: var(--tj-fw-sbold);
  font-size: 15px;
  text-decoration: none;
  padding: 40px 0px 36px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-menu ul > li > a {
    font-size: 14px;
    font-weight: var(--tj-fw-medium);
  }
}
.tj-header-menu ul > li > a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -1px;
  left: 0;
  background: var(--tj-color-theme-primary);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.tj-header-menu ul > li.current > a, .tj-header-menu ul > li.current-menu-ancestor > a {
  color: var(--tj-color-common-white);
}
.tj-header-menu ul > li.current > a::before, .tj-header-menu ul > li.current-menu-ancestor > a::before {
  width: 100%;
  left: 0;
  opacity: 1;
  visibility: visible;
}
.tj-header-menu ul > li:hover > a {
  color: var(--tj-color-common-white);
}
.tj-header-menu ul > li:hover > a::before {
  width: 100%;
  left: 0;
  opacity: 1;
  visibility: visible;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Animation Keyfream CSS
----------------------------------------*/
@-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);
  }
}
/* !END: Theme Animation Keyfream CSS */
/**----------------------------------------
START: Theme section  CSS
----------------------------------------*/
.tj-section-wrapper {
  margin-bottom: 60px;
}
.tj-section-wrapper .tj-section-title {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-section-wrapper .tj-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-section-wrapper {
    margin-bottom: 40px;
  }
  .tj-section-wrapper .tj-section-title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .tj-section-wrapper {
    margin-bottom: 40px;
  }
  .tj-section-wrapper .tj-section-subtitle {
    margin-bottom: 15px;
  }
  .tj-section-wrapper .tj-section-title {
    font-size: 32px;
  }
}
.tj-section-subtitle {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--tj-ff-text-body);
  color: var(--tj-color-theme-primary);
  margin-bottom: 20px;
}

/* !END: Theme section CSS */
/**----------------------------------------
START: Theme BackToTop CSS
----------------------------------------*/
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  -webkit-box-shadow: inset 0 0 0 2px rgba(189, 140, 98, 0.5);
          box-shadow: inset 0 0 0 2px rgba(189, 140, 98, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .progress-wrap {
    right: 25px;
    bottom: 25px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 46px;
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--tj-color-theme-primary);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* !END: Theme BackToTop CSS */
/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--tj-color-theme-bg);
  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;
}
.preloader .tj-cancel-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.preloader .loading-container,
.preloader .loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.preloader .loading-container {
  margin: 40px auto;
}
.preloader .loading-container .loading {
  border: 1px solid transparent;
  border-color: transparent var(--tj-color-theme-primary) transparent var(--tj-color-theme-primary);
  -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
          animation: rotate-loading 1.5s linear 0s infinite normal;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.preloader .loading-container:hover .loading {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.preloader .loading-container .loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.preloader .loading-container .loading-icon img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 50px;
}

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

@keyframes rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* !END: Preloder CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-area {
  background-color: var(--tj-color-theme-bg);
  padding: 160px 0 120px;
  position: relative;
  z-index: 1;
}
.tj-hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 950px;
  height: 650px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: linear-gradient(260deg, var(--tj-color-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
  margin-right: -5%;
  margin-top: -5%;
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-area {
    padding: 160px 0 80px;
  }
}
.tj-hero-top-wrapper {
  max-width: 895px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  position: relative;
}
.tj-hero-top-wrapper .logo {
  max-width: 88px;
  height: 88px;
  margin: auto;
  margin-bottom: 16px;
}
.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 .horo-title .title {
  font-size: 66px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.tj-hero-top-wrapper .desc {
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
.tj-hero-top-wrapper .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-top-wrapper .desc {
    margin-bottom: 20px;
  }
}
.tj-hero-top-wrapper .horo-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tj-hero-top-wrapper .horo-btn .tj-theme-border .icon_box i {
  color: var(--tj-color-theme-primary);
}
.tj-hero-top-wrapper .horo-btn .tj-theme-border:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-top-wrapper {
    max-width: 820px;
  }
  .tj-hero-top-wrapper .horo-title .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-top-wrapper {
    max-width: 750px;
  }
  .tj-hero-top-wrapper .horo-title .title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-top-wrapper {
    max-width: 675px;
    margin-bottom: 110px;
  }
  .tj-hero-top-wrapper .horo-title .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-top-wrapper {
    max-width: 640px;
    margin-bottom: 120px;
  }
  .tj-hero-top-wrapper .horo-title .title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .tj-hero-top-wrapper {
    margin-bottom: 120px;
  }
  .tj-hero-top-wrapper .horo-title .title {
    font-size: 35px;
  }
}
.tj-hero-shape-1 {
  position: absolute;
  top: 50px;
  left: -190px;
  -webkit-animation: services-triangle 5s linear infinite alternate;
          animation: services-triangle 5s linear infinite alternate;
}
.tj-hero-shape-2 {
  position: absolute;
  left: -80px;
  top: 56%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: services-triangle 6s linear infinite alternate;
          animation: services-triangle 6s linear infinite alternate;
}
.tj-hero-shape-3 {
  position: absolute;
  top: 59%;
  right: -50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: services-triangle 7s linear infinite alternate;
          animation: services-triangle 7s linear infinite alternate;
}
.tj-hero-shape-4 {
  position: absolute;
  right: -195px;
  bottom: 55px;
  -webkit-animation: services-triangle 8s linear infinite alternate;
          animation: services-triangle 8s linear infinite alternate;
}
.tj-hero-buttom-wrapper {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-bg-2)));
  background: linear-gradient(180deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-bg-2) 100%);
  padding: 60px 50px;
  border-radius: 36px;
  max-width: 1560px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-buttom-wrapper {
    padding: 40px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-buttom-wrapper {
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-buttom-wrapper {
    border-radius: 10px;
    padding: 22px 15px;
  }
}
.tj-hero-icon {
  position: absolute;
  top: 25%;
  left: 125px;
  max-width: 40px;
  width: 100%;
  z-index: -1;
  -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) {
  .tj-hero-icon {
    top: 22%;
    left: 35px;
    max-width: 25px;
  }
}
.tj-hero-award-shape {
  position: absolute;
  top: 100px;
  right: 130px;
  -webkit-animation: up-down-move 3s forwards infinite alternate;
          animation: up-down-move 3s forwards infinite alternate;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-award-shape {
    top: 60px;
    right: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-award-shape {
    top: 40px;
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-award-shape {
    top: -55px;
    right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-award-shape {
    top: -50px;
    right: 30px;
  }
}
@media (max-width: 575px) {
  .tj-hero-award-shape {
    top: -55px;
    right: 30px;
  }
}
.tj-hero-award-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 35px 30px;
  border: 1.5px dashed var(--tj-color-common-white);
  gap: 6px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  position: relative;
  z-index: 1;
}
.tj-hero-award-wrap::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -4px;
  left: -4px;
  background: var(--tj-color-common-black-2);
  border: 2px solid var(--tj-color-common-white);
  border-radius: 50%;
}
.tj-hero-award-wrap::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: -4px;
  right: -4px;
  background: var(--tj-color-common-black-2);
  border: 2px solid var(--tj-color-common-white);
  border-radius: 50%;
}
.tj-hero-award-wrap .title {
  font-weight: var(--tj-fw-medium);
  font-size: 19px;
  line-height: 1.52;
  margin-bottom: 0;
}
.tj-hero-award-wrap .line {
  position: absolute;
  width: 10px;
  height: 10px;
  bottom: -4px;
  left: -4px;
  background: var(--tj-color-common-black-2);
  border: 2px solid var(--tj-color-common-white);
  border-radius: 50%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-award-wrap {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-award-wrap {
    padding: 20px 15px;
  }
  .tj-hero-award-wrap .title {
    font-size: 16px;
  }
}
@media (max-width: 575px) {
  .tj-hero-award-wrap {
    padding: 16px 10px;
  }
  .tj-hero-award-wrap .title {
    font-size: 14px;
  }
}
.tj-hero-award-ponter {
  position: absolute;
  bottom: -28px;
  right: -25px;
  z-index: -1;
}

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

@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
@-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);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes up-down-move {
  0% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.tj-service-area {
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-area {
    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-bottom: 80px;
  }
}
.tj-service-wrapper {
  padding: 50px 30px 40px;
  background: var(--tj-color-theme-bg-2);
  position: relative;
  max-width: 410px;
  border-radius: 12px;
  width: 100%;
  z-index: 1;
}
.tj-service-wrapper::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 1px solid var(--tj-color-theme-primary);
  border-left: 1px solid var(--tj-color-theme-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  z-index: -1;
}
.tj-service-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-bottom: 1px solid var(--tj-color-theme-primary);
  border-right: 1px solid var(--tj-color-theme-primary);
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.tj-service-wrapper:hover::before {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.tj-service-wrapper:hover::after {
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
}
.tj-service-wrapper:hover .tj-service-icon span img {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@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 {
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.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;
}

.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;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .features_wrap .tj-service-wrapper {
    max-width: 243px;
  }
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Roll CSS
----------------------------------------*/
.marquee-area {
  background-color: var(--tj-color-theme-primary);
  padding: 30px 0;
  position: relative;
}
.marquee-area::before {
  position: absolute;
  content: "";
  width: 110%;
  height: 100%;
  top: 0;
  left: -10px;
  background: rgba(181, 135, 95, 0.3);
  -webkit-transform: rotate(-1.09deg);
      -ms-transform: rotate(-1.09deg);
          transform: rotate(-1.09deg);
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-area {
    padding: 25px 0;
  }
}

.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;
}
.tj-marquee-box .tj-marquee-icon {
  position: relative;
  max-width: 20px;
  width: 100%;
  top: -2px;
}
.tj-marquee-box .tj-marquee-icon img {
  width: 100%;
  -webkit-animation: rotateImg2 6s infinite linear;
          animation: rotateImg2 6s infinite linear;
}
.tj-marquee-title .title {
  margin-bottom: 0;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.tj-marquee-wrapper {
  max-width: 100%;
  width: auto;
}

@-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);
  }
}
/* !END: Theme Roll CSS */
/**----------------------------------------
START: Theme Demo CSS
----------------------------------------*/
.tj-demo-area {
  padding: 120px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}
.tj-demo-area::before {
  content: "";
  position: absolute;
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 950px;
  height: 650px;
  border-radius: 50%;
  background: var(--tj-theme-primary);
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(rgba(115, 67, 210, 0)));
  background: linear-gradient(-180deg, var(--tj-color-theme-primary) 0%, rgba(115, 67, 210, 0) 100%);
  -webkit-filter: blur(150px);
  filter: blur(150px);
  margin-right: -5%;
  margin-top: 0;
  opacity: 0.4;
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-demo-area {
    padding: 100px 0 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-demo-area {
    padding: 80px 0 50px;
  }
}
.tj-demo-section {
  text-align: center;
  margin-bottom: 50px;
}
.tj-demo-section-title {
  font-size: 120px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-body);
  margin-bottom: 0;
  line-height: 1;
}
.tj-demo-section-subtitle {
  font-size: 44px;
  letter-spacing: -0.02em;
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-demo-section-title {
    font-size: 95px;
  }
  .tj-demo-section-subtitle {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .tj-demo-section-title {
    font-size: 75px;
  }
  .tj-demo-section-subtitle {
    font-size: 32px;
  }
}
.tj-demo-wrapper {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-wrapper {
    margin-bottom: 0px;
  }
}
.tj-demo-top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 20px;
  margin-bottom: 50px;
}
.tj-demo-top-title {
  font-size: 32px;
  margin-bottom: 0;
}
.tj-demo-top-title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-demo-top-title {
    font-size: 28px;
  }
}
@media (max-width: 575px) {
  .tj-demo-top-title {
    font-size: 24px;
  }
}
.tj-demo-thumb {
  background: var(--tj-color-theme-bg-2);
  padding: 20px 20px 25px;
  border-radius: 12px;
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.tj-demo-thumb::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-primary);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  -webkit-transition: ease-out 0.4s;
  transition: ease-out 0.4s;
}
.tj-demo-thumb .image {
  max-width: 596px;
  width: 100%;
  margin-bottom: 25px;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 12px;
}
.tj-demo-thumb .image::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(49, 52, 59, 0.64);
  opacity: 0;
  visibility: hidden;
  border-radius: 12px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-demo-thumb .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
}
@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 h6 {
  text-align: center;
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0;
}
.tj-demo-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}
.tj-demo-thumb:hover .image::before {
  opacity: 1;
  visibility: visible;
}
.tj-demo-thumb:hover .tj-demo-button {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .tj-demo-thumb {
    padding: 15px 15px 25px;
  }
}
.tj-demo-thumb.coming:before {
  display: none;
}
.tj-demo-thumb.coming .image::before {
  display: none;
}
.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 {
  background: var(--tj-color-theme-bg);
  padding-top: 120px;
  padding-bottom: 120px;
  overflow-x: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tj-project-area-top {
  margin-bottom: 60px;
}
.tj-project-area .tj-section-wrapper {
  max-width: 340px;
  width: 100%;
  margin: 0;
}
@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: 80px;
    padding-bottom: 80px;
  }
  .tj-project-area-top {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-project-area-top {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .tj-project-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-project-area-top {
    margin-bottom: 40px;
  }
  .tj-project-area .tj-section-wrapper {
    max-width: 315px;
  }
  .tj-project-area .tj-project-active {
    margin-bottom: 20px;
  }
}
.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: 120px;
  font-family: var(--tj-ff-text-body);
  color: var(--tj-color-theme-primary);
  line-height: 1;
  margin: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-title {
    font-size: 95px;
  }
}
@media (max-width: 575px) {
  .tj-project-title {
    font-size: 75px;
  }
}
.tj-project-thumb {
  padding: 20px;
  background: var(--tj-color-theme-bg-2);
  border-radius: 16px;
}
.tj-project-thumb img {
  width: 100%;
  border-radius: 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) {
  .tj-project-thumb {
    padding: 15px;
  }
}

/* !END: Theme Projct CSS */
/**----------------------------------------
START: Theme Fature CSS
----------------------------------------*/
.tj-feature-area {
  background: var(--tj-color-theme-bg);
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-feature-area .tj-service-title {
  font-size: 20px;
}
.tj-feature-area .tj-service-desc {
  color: rgba(255, 255, 255, 0.6);
}
@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: 80px;
    padding-bottom: 80px;
  }
}
.tj-feature-wrapper {
  padding: 50px 25px 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-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: inline-block;
  max-width: 50px;
  width: 100%;
}
.tj-feature-icon span img {
  width: 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;
  }
}

.featured-cta {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured-cta {
    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 {
    padding-top: 80px;
  }
}
.featured-cta.style-2 {
  padding-top: 0;
}
.featured-cta.style-2 .featured_cta_inner {
  background: var(--tj-color-theme-primary);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.featured_cta_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--tj-color-theme-primary);
  padding: 30px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 50px;
  border-radius: 24px;
}
.featured_cta_inner .thumb {
  max-width: 560px;
  width: 100%;
}
.featured_cta_inner .thumb img {
  border-radius: 20px;
}
.featured_cta_inner .content {
  max-width: 500px;
  width: 100%;
}
.featured_cta_inner .content .tj-section-wrapper {
  margin: 0;
}
.featured_cta_inner .content .tj-section-wrapper .tj-section-subtitle,
.featured_cta_inner .content .tj-section-wrapper .tj-section-title {
  color: var(--tj-color-common-white);
}
.featured_cta_inner .content .tj-section-wrapper .desc {
  color: var(--tj-color-common-white);
  margin-top: 30px;
}
.featured_cta_inner .content .tj-section-wrapper .desc ul {
  padding-left: 20px;
}
.featured_cta_inner .content .tj-section-wrapper .desc ul li {
  font-weight: var(--tj-fw-medium);
  line-height: 1.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .featured_cta_inner .thumb {
    max-width: 520px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .featured_cta_inner {
    padding: 30px 20px;
  }
  .featured_cta_inner .thumb {
    max-width: 415px;
  }
  .featured_cta_inner .content {
    max-width: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .featured_cta_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .featured_cta_inner .thumb {
    max-width: 100%;
  }
  .featured_cta_inner .thumb img {
    width: 100%;
  }
  .featured_cta_inner .content {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .featured_cta_inner {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 15px;
  }
  .featured_cta_inner .thumb {
    max-width: 100%;
  }
  .featured_cta_inner .thumb img {
    width: 100%;
  }
  .featured_cta_inner .content {
    max-width: 100%;
  }
  .featured_cta_inner .content .tj-section-wrapper .desc {
    margin-top: 20px;
  }
}

/* !END: Theme Fature CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  background-color: var(--tj-color-theme-bg);
  padding-top: 120px;
}
.tj-testimonial-section .testimonial_wrap {
  position: relative;
  z-index: 1;
}
.tj-testimonial-section .testimonial_wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 300px;
  background: -webkit-gradient(linear, left bottom, left top, from(#31343b), to(rgba(49, 52, 59, 0)));
  background: linear-gradient(360deg, #31343b 0%, rgba(49, 52, 59, 0) 100%);
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-testimonial-section {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-section {
    padding-top: 80px;
  }
}

.testimonial-item {
  position: relative;
  background: var(--tj-color-theme-bg-2);
  margin-bottom: 30px;
  max-width: 420px;
  border-radius: 12px;
  width: 100%;
  padding: 30px;
  z-index: 1;
}
.testimonial-item .testimonial-rating {
  margin-bottom: 25px;
}
.testimonial-item .testimonial-rating .star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-color-grey-2);
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-color-grey-2);
}
.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 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  margin-bottom: 30px;
}
.testimonial-item .desc p {
  margin-bottom: 0;
}
.testimonial-item .testimonial-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid rgba(181, 135, 95, 0.22);
  padding-top: 30px;
}
.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: 60px;
  height: 60px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}
.testimonial-item .testimonial-auother .auother-name .title {
  font-size: 18px;
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
@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;
  }
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme CTA CSS
----------------------------------------*/
.tj-cta-section {
  background-color: var(--tj-color-theme-bg);
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-cta-section {
    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) {
  .tj-cta-section {
    padding-top: 80px;
  }
}

.tj-cta-section.style-2 {
  padding-bottom: 0px;
  background-color: var(--tj-color-common-black-2);
}

.cta-button {
  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: 20px;
}
@media (max-width: 575px) {
  .cta-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cta-button .tj-theme-btn.theme_dark {
  background-color: var(--tj-color-theme-bg);
}
.cta-button .tj-theme-btn.theme_dark:hover {
  background-color: var(--tj-color-common-white);
}
.cta-button .tj-theme-btn.theme-border {
  border-color: var(--tj-color-common-white);
}
.cta-button .tj-theme-btn.theme-border::before, .cta-button .tj-theme-btn.theme-border::after {
  background: radial-gradient(circle, rgb(185, 154, 128) 32%, var(--tj-color-common-white) 99%);
}

.cta-wrapper.style-8 {
  padding: 70px 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 25px;
  position: relative;
  z-index: 1;
}
.cta-wrapper.style-8::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 25px;
  background: rgba(185, 154, 128, 0.2);
  z-index: -1;
}
.cta-wrapper.style-8 .cta-content {
  max-width: 910px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.cta-wrapper.style-8 .cta-content .subtitle {
  display: block;
  font-size: 14px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-wrapper.style-8 .cta-content .title {
  font-size: 62px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: -0.02em;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-wrapper.style-8 .cta-content .title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper.style-8 .cta-content .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper.style-8 {
    padding: 40px 15px;
  }
  .cta-wrapper.style-8 .cta-content .title {
    font-size: 45px;
    margin-bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-wrapper.style-8 {
    padding: 35px 15px;
  }
  .cta-wrapper.style-8 .cta-content .subtitle {
    margin-bottom: 15px;
  }
  .cta-wrapper.style-8 .cta-content .title {
    font-size: 35px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper.style-8 {
    padding: 35px 15px;
  }
  .cta-wrapper.style-8 .cta-content .subtitle {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .cta-wrapper.style-8 .cta-content .title {
    font-size: 23px;
    margin-bottom: 25px;
  }
}

/* !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
----------------------------------------*/
.faq-section {
  padding-top: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-section {
    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) {
  .faq-section {
    padding-top: 80px;
  }
}
.faq-section .accordion {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}
.faq-section .accordion .accordion-item {
  position: relative;
  z-index: 2;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin-bottom: 25px;
  border-radius: 15px;
  background: var(--tj-color-theme-bg-2);
  border: 1px solid transparent;
}
.faq-section .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-section .accordion .accordion-item.active {
  border-color: var(--tj-color-theme-primary);
}
.faq-section .accordion .accordion-item .faq-title {
  font-size: 20px;
  line-height: 1.3;
  font-weight: var(--tj-fw-medium);
  padding: 20px 55px 20px 30px;
  background-color: transparent;
  position: relative;
  color: var(--tj-color-common-white);
  width: 100%;
  font-family: var(--tj-ff-heading);
  text-align: left;
  border: none;
  letter-spacing: -0.02em;
}
.faq-section .accordion .accordion-item .faq-title:before {
  position: absolute;
  top: 20px;
  right: 24px;
  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;
  content: "\f055";
  font-family: "Font Awesome 6 Pro";
  font-size: 26px;
  color: var(--tj-color-theme-primary);
  font-weight: 300;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.faq-section .accordion .accordion-item .faq-title:not(.collapsed)::before {
  content: "\f056";
}
.faq-section .accordion .accordion-item .faq-text {
  padding: 5px 30px 30px 30px;
  max-width: 985px;
  width: 100%;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
}
.faq-section .accordion .accordion-item .faq-text ul {
  padding-left: 20px;
}
.faq-section .accordion .accordion-item .faq-text p {
  color: inherit;
}
.faq-section .accordion .accordion-item .faq-text p:last-child {
  margin-bottom: 0;
}
.faq-section .accordion .accordion-item .faq-text p a {
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .faq-section .accordion .accordion-item .faq-title {
    font-size: 18px;
    padding: 17px 45px 17px 20px;
  }
  .faq-section .accordion .accordion-item .faq-title::before {
    right: 17px;
  }
  .faq-section .accordion .accordion-item .faq-text {
    padding: 5px 20px 20px 20px;
  }
}

/* !END: FAQ CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-area {
  padding: 45px 0;
  background-color: var(--tj-color-common-black-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-area {
    padding: 25px 0;
  }
}

.copy-text {
  color: rgba(255, 255, 255, 0.6);
}
.copy-text p {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.copy-text p a {
  color: var(--tj-color-common-white);
}
.copy-text p a:hover {
  color: var(--tj-color-theme-primary);
}

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