/*-----------------------------------------------------------------------------------

    Theme Name: Starter - Starter HTML5 Template
    Author: STARTER
    Support: support@starter.com
    Description: Starter - Starter HTML5 Template
    Version: 1.0

-----------------------------------------------------------------------------------


/************ 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=Inter:wght@100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'Inter', sans-serif;
  --tj-ff-heading: 'Ubuntu', sans-serif;
  --tj-ff-p: 'Jost', 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: 100px;
  --tj-fs-h2: 40px;
  --tj-fs-h3: 24px;
  --tj-fs-h4: 20px;
  --tj-fs-h5: 16px;
  --tj-fs-h6: 14px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #1a1f1d;
  --tj-color-text-body: #727272;
  --tj-color-text-body-2: #1a1f1d;
  --tj-color-theme-primary: #20d9a1;
  --tj-color-theme-primary-2: #f8f7ff;
  --tj-color-theme-primary-3: #ffc131;
  --tj-color-theme-primary-4: #f1f2fd;
  --tj-color-theme-primary-5: #83b641;
  --tj-color-theme-secondary: #5f39ff;
  --tj-color-theme-bg: #171a1e;
  --tj-color-theme-bg-2: #2c3331;
  --tj-color-border-1: #fbfdfc;
}

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

/**
  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.6;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
  font-weight: var(--tj-fw-bold);
  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: transparent;
}

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

.site-main {
  position: relative;
  overflow: hidden;
}

/**----------------------------------------
START: Theme Button CSS
----------------------------------------*/
.tj-cancel-btn,
.tj-primary-btn {
  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;
  border-radius: 150px;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-body);
  line-height: 2;
  text-transform: uppercase;
  color: var(--tj-color-common-white);
  padding: 12px 35px;
  border: none;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), color-stop(51%, var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background-image: linear-gradient(to right, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 51%, var(--tj-color-theme-secondary) 100%);
  background-size: 200%;
}
.tj-cancel-btn:hover, .tj-cancel-btn:focus,
.tj-primary-btn:hover,
.tj-primary-btn:focus {
  color: var(--tj-color-common-white);
  background-position: -100%;
}
@media (max-width: 575px) {
  .tj-cancel-btn,
  .tj-primary-btn {
    font-size: 13px;
    padding: 12px 25px;
  }
}
.tj-cancel-btn.btn-border,
.tj-primary-btn.btn-border {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
  padding: 1px;
}
.tj-cancel-btn.btn-border span,
.tj-primary-btn.btn-border span {
  padding: 12px 35px;
  background: var(--tj-color-common-white);
  border-radius: 58px;
  color: var(--tj-color-common-black);
}
@media (max-width: 575px) {
  .tj-cancel-btn.btn-border span,
  .tj-primary-btn.btn-border span {
    padding: 12px 25px;
  }
}
.tj-cancel-btn.btn-border:hover,
.tj-primary-btn.btn-border:hover {
  color: var(--tj-color-common-white);
}
.tj-cancel-btn.btn-border:hover span,
.tj-primary-btn.btn-border:hover span {
  background: transparent;
  color: var(--tj-color-common-white);
}

.tj-secondary-btn {
  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;
  border-radius: 150px;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-body);
  line-height: 2;
  text-transform: uppercase;
  color: var(--tj-color-theme-primary);
  padding: 12px 35px;
  border: none;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  background-size: 150% auto;
}
.tj-secondary-btn:hover, .tj-secondary-btn:focus {
  color: var(--tj-color-theme-primary);
  background-position: right center;
}
@media (max-width: 575px) {
  .tj-secondary-btn {
    font-size: 13px;
    padding: 12px 25px;
  }
}
.tj-secondary-btn.btn-border {
  position: relative;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
  padding: 1px;
}
.tj-secondary-btn.btn-border span {
  padding: 12px 35px;
  background: var(--tj-color-theme-bg);
  border-radius: 58px;
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .tj-secondary-btn.btn-border span {
    padding: 12px 25px;
  }
}
.tj-secondary-btn.btn-border:hover span {
  background: transparent;
  color: var(--tj-color-common-white);
}

/**----------------------------------------
END: Theme Button CSS
----------------------------------------*/
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  padding: 25px 95px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 999;
}
.tj-header-area.header-sticky {
  position: fixed;
}
.tj-header-area.sticky {
  padding: 15px 95px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(32, 217, 161, 0.9)), color-stop(98.67%, rgba(95, 57, 255, 0.9)));
  background: linear-gradient(90deg, rgba(32, 217, 161, 0.9) 0%, rgba(95, 57, 255, 0.9) 98.67%);
  -webkit-animation: sticky 0.9s;
          animation: sticky 0.9s;
}
.tj-header-area.sticky .header-content-area .side-logo {
  max-width: 200px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area.sticky .header-content-area .side-logo {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .tj-header-area.sticky .header-content-area .side-logo {
    max-width: 150px;
  }
}
@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: 20px 30px;
  }
  .tj-header-area.sticky {
    padding: 15px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-header-area {
    padding: 20px 30px;
  }
  .tj-header-area.sticky {
    padding: 15px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area {
    padding: 20px 0;
  }
  .tj-header-area.sticky {
    padding: 15px 0;
  }
}

.header-content-area {
  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;
}
.header-content-area .side-logo {
  max-width: 275px;
  width: 100%;
}
.header-content-area .side-logo a {
  display: inline-block;
}
.header-content-area .side-logo a img {
  width: 100%;
}
.header-content-area .header-menu-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 150px;
}
.header-content-area .header-menu-wrapper .menu-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.header-content-area .header-menu-wrapper .menu-area ul li a {
  font-size: 18px;
  font-weight: var(--tj-fw-sbold);
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: var(--tj-color-common-white);
}
.header-content-area .header-menu-wrapper .menu-area ul li a:hover {
  color: transparent;
}
.header-content-area .header-menu-wrapper .header-button .tj-secondary-btn {
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-content-area .side-logo {
    max-width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-content-area .side-logo {
    max-width: 200px;
  }
  .header-content-area .header-menu-wrapper {
    gap: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-content-area .side-logo {
    max-width: 180px;
  }
}
@media (max-width: 575px) {
  .header-content-area .side-logo {
    max-width: 150px;
  }
  .header-content-area .header-menu-wrapper {
    gap: 25px;
  }
  .header-content-area .header-menu-wrapper .header-button .tj-secondary-btn span {
    padding: 8px 25px;
  }
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-area {
  padding-top: 120px;
  padding-bottom: 120px;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tj-footer-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #1a1f1d;
  opacity: 0.4;
  z-index: -1;
}
.tj-footer-area .shapes-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.tj-footer-area .shapes-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
@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-top: 80px;
    padding-bottom: 80px;
  }
  .tj-footer-area .footer-content-area {
    margin-bottom: 60px;
  }
  .tj-footer-area .footer-content-area .footer-icon {
    max-width: 110px;
    margin: 0 auto 40px;
  }
  .tj-footer-area .footer-content-area .title {
    font-size: 30px;
  }
}

.footer-content-area {
  max-width: 510px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 80px;
}
.footer-content-area .footer-icon {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 70px;
}
.footer-content-area .footer-icon img {
  width: 100%;
}
.footer-content-area .title {
  color: var(--tj-color-common-white);
  margin-bottom: 25px;
}
.footer-content-area .sub-title {
  font-size: 16px;
  font-family: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
}
.footer-content-area .footer-button {
  margin-top: 40px;
}

.copyright-area {
  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;
  max-width: 970px;
  width: 100%;
  margin: 0 auto;
  border-top: 1px solid rgba(251, 253, 252, 0.3);
  padding-top: 20px;
  gap: 15px;
}
.copyright-area .left-content p {
  color: var(--tj-color-common-white);
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
.copyright-area .left-content p:last-child {
  margin-bottom: 0;
}
.copyright-area .left-content p a:hover {
  color: var(--tj-color-theme-primary);
}
.copyright-area .footer-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.copyright-area .footer-socials ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  font-size: 14px;
  color: var(--tj-color-common-white);
  background: -webkit-gradient(linear, left top, right top, color-stop(-30.05%, rgba(32, 217, 161, 0.35)), to(rgba(95, 57, 255, 0.35)));
  background: linear-gradient(90deg, rgba(32, 217, 161, 0.35) -30.05%, rgba(95, 57, 255, 0.35) 100%);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.copyright-area .footer-socials ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
  border-radius: 50%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.copyright-area .footer-socials ul li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.copyright-area .right-content .desc {
  color: var(--tj-color-common-white);
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
.copyright-area .right-content .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/
/***********************************
PAGE LOAD ANIMATION
***********************************/
.preloader {
  background: var(--tj-color-theme-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  text-align: center;
}
.preloader .tj-cancel-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.preloader .preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.preloader .preloader-inner .lines {
  height: 25px;
}
.preloader .preloader-inner .lines .line {
  width: 1px;
  height: 20px;
  background: #fff;
  margin: 0 2px;
  display: inline-block;
  -webkit-animation: opacity-2 1000ms infinite ease-in-out;
          animation: opacity-2 1000ms infinite ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(180deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
}
.preloader .preloader-inner .lines .line-1 {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
.preloader .preloader-inner .lines .line-2 {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.preloader .preloader-inner .lines .line-3 {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.preloader .preloader-inner .lines .line-4 {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.preloader .preloader-inner .lines .line-6 {
  -webkit-animation-delay: 200ms;
          animation-delay: 200ms;
}
.preloader .preloader-inner .lines .line-7 {
  -webkit-animation-delay: 400ms;
          animation-delay: 400ms;
}
.preloader .preloader-inner .lines .line-8 {
  -webkit-animation-delay: 600ms;
          animation-delay: 600ms;
}
.preloader .preloader-inner .lines .line-9 {
  -webkit-animation-delay: 800ms;
          animation-delay: 800ms;
}
.preloader .preloader-inner .text {
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 3.5px;
  display: inline-block;
  line-height: 1.2;
  font-size: 12px;
}

@-webkit-keyframes opacity-1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes opacity-1 {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes opacity-2 {
  0% {
    opacity: 1;
    height: 25px;
  }
  50% {
    opacity: 0;
    height: 20px;
  }
  100% {
    opacity: 1;
    height: 25px;
  }
}
@keyframes opacity-2 {
  0% {
    opacity: 1;
    height: 25px;
  }
  50% {
    opacity: 0;
    height: 20px;
  }
  100% {
    opacity: 1;
    height: 25px;
  }
}
/* !END: Preloder CSS */
/* !START: Back top 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(184, 151, 136, 0.4);
          box-shadow: inset 0 0 0 2px rgba(184, 151, 136, 0.4);
  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: 20px;
    bottom: 20px;
  }
}

.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: Back top CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-area {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 260px;
  padding-bottom: 260px;
  background: var(--tj-color-theme-bg);
}
.tj-hero-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgb(26, 31, 29);
  z-index: 1;
  opacity: 0.4;
}
.tj-hero-area::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(32, 217, 161, 0.9)), color-stop(98.67%, rgba(95, 57, 255, 0.8)));
  background: linear-gradient(90deg, rgba(32, 217, 161, 0.9) 0%, rgba(95, 57, 255, 0.8) 98.67%);
  z-index: 1;
  opacity: 0.4;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-area {
    padding-top: 200px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-area {
    padding-top: 180px;
    padding-bottom: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-area {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-area {
    padding-top: 150px;
    padding-bottom: 120px;
  }
}

.tj-hero-content {
  position: relative;
  z-index: 2;
}
.tj-hero-content .logo-icon {
  max-width: 160px;
  width: 100%;
  margin: 0 auto 20px;
}
.tj-hero-content .logo-icon img {
  width: 100%;
}
.tj-hero-content .hero-title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.tj-hero-content .hero-btn-wrap {
  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: 30px;
  margin-top: 55px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-content .logo-icon {
    max-width: 135px;
  }
  .tj-hero-content .hero-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-content .logo-icon {
    max-width: 125px;
  }
  .tj-hero-content .hero-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-content .logo-icon {
    max-width: 120px;
  }
  .tj-hero-content .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-content .logo-icon {
    max-width: 110px;
  }
  .tj-hero-content .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-content .logo-icon {
    max-width: 100px;
  }
  .tj-hero-content .hero-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .tj-hero-content .logo-icon {
    max-width: 80px;
  }
  .tj-hero-content .hero-title {
    font-size: 35px;
  }
  .tj-hero-content .hero-btn-wrap {
    gap: 15px;
    margin-top: 35px;
  }
}

.tj-hero-bg-wrapper {
  position: absolute;
  top: 20%;
  left: 37%;
  width: 100%;
  height: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 45px;
  -webkit-transform: translate(-50%, -50%) rotate(-35deg);
      -ms-transform: translate(-50%, -50%) rotate(-35deg);
          transform: translate(-50%, -50%) rotate(-35deg);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-bg-wrapper {
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .tj-hero-bg-wrapper {
    gap: 20px;
    -webkit-transform: translate(-50%, -50%) rotate(-30deg);
        -ms-transform: translate(-50%, -50%) rotate(-30deg);
            transform: translate(-50%, -50%) rotate(-30deg);
  }
}

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

@keyframes marquee {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@-webkit-keyframes marquee-reverse {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes marquee-reverse {
  0% {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.marquee {
  height: 500vh;
  width: 340px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.marquee_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-animation: marquee 45s linear infinite running;
          animation: marquee 45s linear infinite running;
  gap: 35px;
}
.marquee_wrap.reverse {
  -webkit-animation: marquee-reverse 45s linear infinite running;
          animation: marquee-reverse 45s linear infinite running;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee_wrap {
    gap: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee_wrap {
    gap: 15px;
  }
}
.marquee_img {
  width: 340px;
  height: auto;
  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;
}
.marquee_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee_img {
    width: 200px;
    height: 210px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee_img {
    width: 160px;
    height: 170px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Demo CSS
----------------------------------------*/
.tj-demo-area {
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-demo-area .heading-area .title {
  margin-bottom: 10px;
  color: var(--tj-color-common-black);
}
@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-top: 80px;
    padding-bottom: 80px;
  }
}

.demo-content {
  position: relative;
  z-index: 1;
  margin-bottom: 115px;
}
.demo-content .demo-list {
  margin-top: 25px;
}
.demo-content .demo-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
.demo-content .demo-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: var(--tj-fw-medium);
  font-family: var(--tj-ff-heading);
  gap: 10px;
}
.demo-content .demo-list ul li span {
  color: var(--tj-color-theme-primary);
  font-size: 12px;
}
.demo-content .counter-item {
  position: absolute;
  top: -65px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.demo-content .counter-item .tj-count {
  font-size: 200px;
  line-height: 1;
  font-weight: var(--tj-fw-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
  opacity: 0.4;
  font-family: var(--tj-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .demo-content .demo-list ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 15px;
  }
  .demo-content .counter-item {
    top: -40px;
  }
  .demo-content .counter-item .tj-count {
    font-size: 120px;
    padding-left: 65px;
  }
  .demo-content .counter-item .tj-count::before {
    top: 12px;
  }
}
@media (max-width: 575px) {
  .demo-content .counter-item {
    top: -40px;
  }
  .demo-content .counter-item .tj-count {
    font-size: 85px;
    padding-left: 45px;
  }
  .demo-content .counter-item .tj-count::before {
    top: 8px;
  }
}

.tj-demo-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 90px;
     -moz-column-gap: 90px;
          column-gap: 90px;
  row-gap: 110px;
}
.tj-demo-wrap .tj-demo-item {
  position: relative;
  z-index: 1;
  max-width: 575px;
  width: 100%;
}
.tj-demo-wrap .tj-demo-item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(23, 26, 30, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-demo-wrap .tj-demo-item .demo-img {
  display: block;
  width: 100%;
  height: 100%;
}
.tj-demo-wrap .tj-demo-item .demo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-demo-wrap .tj-demo-item .demo_buttons {
  position: absolute;
  widows: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  opacity: 0;
  visibility: hidden;
  z-index: 3;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  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: 20px;
}
.tj-demo-wrap .tj-demo-item .demo_buttons .tj-secondary-btn,
.tj-demo-wrap .tj-demo-item .demo_buttons .tj-primary-btn {
  width: 160px;
}
.tj-demo-wrap .tj-demo-item .demo_buttons .tj-secondary-btn span {
  width: 160px;
  color: var(--tj-color-common-white);
}
.tj-demo-wrap .tj-demo-item .demo-name {
  display: block;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  border-radius: 50px 50px 0px 0px;
  background: -webkit-gradient(linear, left top, right top, color-stop(-30.05%, var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) -30.05%, var(--tj-color-theme-primary) 100%);
  font-size: 25px;
  line-height: 1;
  text-align: center;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  padding: 17px 10px;
  z-index: 3;
}
.tj-demo-wrap .tj-demo-item .item-shapes {
  position: absolute;
  top: -50px;
  right: -20px;
  z-index: -1;
}
.tj-demo-wrap .tj-demo-item:hover::before {
  opacity: 1;
  visibility: visible;
}
.tj-demo-wrap .tj-demo-item:hover .demo_buttons {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.tj-demo-wrap .tj-demo-item.upcoming::before {
  background: rgba(23, 26, 30, 0.9);
  opacity: 1;
  visibility: visible;
}
.tj-demo-wrap .tj-demo-item.upcoming .demo_title {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--tj-color-common-white);
  font-size: 40px;
  line-height: 1;
  font-style: italic;
  font-weight: var(--tj-fw-bold);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-demo-wrap {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .tj-demo-wrap .tj-demo-item.upcoming .demo_title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-demo-wrap {
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
    row-gap: 90px;
    grid-template-columns: repeat(1, 1fr);
  }
  .tj-demo-wrap .tj-demo-item {
    margin: 0 auto;
  }
  .tj-demo-wrap .tj-demo-item.upcoming .demo_title {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .tj-demo-wrap .tj-demo-item.upcoming .demo_title {
    font-size: 26px;
  }
  .tj-demo-wrap .tj-demo-item .demo-name {
    font-size: 25px;
  }
}

/* !END: Theme Demo CSS */
/**----------------------------------------
START: Theme Plugin CSS
----------------------------------------*/
.tj-plugin-area {
  padding-top: 100px;
  padding-bottom: 60px;
  background: -webkit-gradient(linear, left top, right top, color-stop(-30.05%, var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(90deg, var(--tj-color-theme-secondary) -30.05%, var(--tj-color-theme-primary) 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-plugin-area {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.plugin-item {
  text-align: center;
  max-width: 260px;
  width: 100%;
  margin-bottom: 40px;
}
.plugin-item .plugin-icon {
  font-size: 60px;
  line-height: 1;
  color: var(--tj-color-common-white);
  margin-bottom: 20px;
}
.plugin-item .title {
  font-size: 22px;
  color: var(--tj-color-common-white);
  margin-bottom: 25px;
  font-weight: var(--tj-fw-medium);
}
.plugin-item .desc {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
}
.plugin-item .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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .plugin-item {
    margin: 0 auto 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .plugin-item .title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .plugin-item .plugin-icon {
    margin-bottom: 10px;
  }
}

/* !END: Theme Plugin CSS */
/**----------------------------------------
START: Theme Heading CSS
----------------------------------------*/
.heading-area .sub-title {
  display: block;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 15px;
}
.heading-area .title {
  margin-bottom: 0;
}
.heading-area .desc {
  max-width: 495px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  font-family: var(--tj-ff-heading);
  font-size: 16px;
  line-height: 1.9;
}
.heading-area .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .heading-area .title {
    font-size: 30px;
  }
}

/* !END: Theme Heading CSS */
/**----------------------------------------
START: Theme Device CSS
----------------------------------------*/
.tj-device-area {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
}
.tj-device-area .heading-area {
  max-width: 785px;
  width: 100%;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}
.tj-device-area .device-shape-1 {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 1;
  max-width: 1580px;
  width: 100%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tj-device-area .device-shape-1 img {
  width: 100%;
}
.tj-device-area .device-shape-2 {
  position: absolute;
  top: 35%;
  right: 80px;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-device-area .device-shape-2 {
    display: none;
  }
}
.tj-device-area .device-shape-3 {
  position: absolute;
  left: 0;
  bottom: 135px;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-device-area .device-shape-3 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-device-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-device-area .heading-area {
    margin-bottom: 40px;
  }
}

/* !END: Theme Device CSS */
/**----------------------------------------
START: Theme Inner CSS
----------------------------------------*/
.tj-inner-page-area {
  padding-top: 120px;
  padding-bottom: 90px;
  background: var(--tj-color-theme-bg-2);
  position: relative;
  z-index: 2;
}
.tj-inner-page-area .heading-area {
  margin-bottom: 60px;
}
.tj-inner-page-area .heading-area .title {
  color: var(--tj-color-common-white);
}
.tj-inner-page-area .heading-area .desc {
  color: var(--tj-color-common-white);
  max-width: 465px;
}
.tj-inner-page-area .heading-area .counter-item {
  position: absolute;
  top: 25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
.tj-inner-page-area .heading-area .counter-item .tj-count {
  font-size: 200px;
  font-weight: var(--tj-fw-bold);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
  opacity: 0.4;
  font-family: var(--tj-ff-heading);
}
@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-inner-page-area .heading-area .counter-item .tj-count {
    font-size: 150px;
  }
}
@media (max-width: 575px) {
  .tj-inner-page-area .heading-area .counter-item {
    top: 100px;
  }
  .tj-inner-page-area .heading-area .counter-item .tj-count {
    font-size: 100px;
  }
}
.tj-inner-page-area .shapes-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 365px;
  width: 100%;
}
.tj-inner-page-area .shapes-1 img {
  width: 100%;
}
.tj-inner-page-area .shapes-2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  max-width: 365px;
  width: 100%;
}
.tj-inner-page-area .shapes-2 img {
  width: 100%;
}
.tj-inner-page-area .shapes-3 {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 170px;
  width: 100%;
  z-index: -1;
}
.tj-inner-page-area .shapes-3 img {
  width: 100%;
}
.tj-inner-page-area .shapes-4 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 170px;
  width: 100%;
  z-index: -1;
}
.tj-inner-page-area .shapes-4 img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-inner-page-area {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-inner-page-area .heading-area {
    margin-bottom: 40px;
  }
}
.tj-inner-page-area .inner-slier-1 {
  margin-bottom: 30px;
}
.tj-inner-page-area .swiper-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.tj-inner-page-area .swiper-container.swiper--bottom:after {
  animation-direction: reverse;
}
.tj-inner-page-area .swiper-container .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
  position: relative;
}
.tj-inner-page-area .swiper-container .slider-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 15px;
}
.tj-inner-page-area .swiper-container .inner-item {
  max-width: 425px;
  width: 100%;
}
@-webkit-keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes line-slide {
  0% {
    background-position: -5% 0;
  }
  100% {
    background-position: 100% 0;
  }
}

/* !END: Theme Inner CSS */
/**----------------------------------------
START: Theme Feature CSS
----------------------------------------*/
.tj-feature-area {
  padding-top: 120px;
  padding-bottom: 95px;
}
.tj-feature-area .heading-area {
  max-width: 425px;
  width: 100%;
  margin: 0 auto 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-area {
    padding-top: 80px;
    padding-bottom: 55px;
  }
  .tj-feature-area .heading-area {
    margin: 0 auto 40px;
  }
}

.feature-item {
  background: var(--tj-color-theme-primary-2);
  padding: 40px 20px;
  border-radius: 6px;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}
.feature-item::before {
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: "";
  color: transparent;
  height: 6px;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  border-radius: 0px 0px 6px 6px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.feature-item .feature-icon {
  max-width: 70px;
  width: 100%;
  margin: 0 auto 20px;
}
.feature-item .feature-icon img {
  width: 100%;
}
.feature-item .title {
  margin-bottom: 0;
  font-weight: var(--tj-fw-medium);
}
.feature-item:hover::before {
  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) {
  .feature-item {
    padding: 25px 15px;
  }
  .feature-item .title {
    font-size: 18px;
  }
}

/* !END: Theme Feature CSS */
/**----------------------------------------
START: Theme Roll CSS
----------------------------------------*/
.tj-roll-section {
  position: relative;
  z-index: 9;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  padding: 40px 0;
  overflow: hidden;
}
@media (max-width: 575px) {
  .tj-roll-section {
    padding: 30px 0;
  }
}

.slide-roll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slide-roll .roll-box {
  position: relative;
  -webkit-animation: slide-har 40s linear infinite;
          animation: slide-har 40s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.slide-roll .roll-box .roll-item {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 33px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.slide-roll .roll-box .roll-item .roll-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  gap: 85px;
  padding-left: 85px;
}
.slide-roll .roll-box .roll-item .roll-text::before {
  display: none;
}
.slide-roll .roll-box .roll-item .roll-text .title {
  white-space: nowrap;
  line-height: 1;
  font-size: 64px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  margin: 0;
}
.slide-roll .roll-box .roll-item .roll-icon {
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 0;
}
.slide-roll .roll-box .roll-item .roll-icon img {
  min-width: 40px;
  width: 100%;
  -webkit-animation: rotateImg 6s infinite linear;
          animation: rotateImg 6s infinite linear;
}
.slide-roll .roll-box-revers {
  position: relative;
  -webkit-animation: slide-har-revers 80s linear infinite;
          animation: slide-har-revers 80s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slide-roll .roll-box .roll-item .roll-text .title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-roll .roll-box .roll-item .roll-text .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .slide-roll .roll-box .roll-item .roll-text .title {
    font-size: 35px;
  }
}

@-webkit-keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slide-har {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes slide-har-revers {
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
@-webkit-keyframes testimonial_marquee {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes testimonial_marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes testimonial_marquee_reverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes testimonial_marquee_reverse {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.tj-testimonial-area {
  padding-top: 120px;
  padding-bottom: 95px;
  position: relative;
  z-index: 2;
}
.tj-testimonial-area .heading-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  margin-bottom: 60px;
}
.tj-testimonial-area .heading-area .desc {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
}
.tj-testimonial-area .heading-area .desc p:last-child {
  margin-bottom: 0;
}
.tj-testimonial-area .heading-area .desc p span {
  color: var(--tj-color-theme-primary);
}
.tj-testimonial-area .testimonial-shapes {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 1900px;
  width: 100%;
  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-testimonial-area {
    padding-top: 80px;
    padding-bottom: 55px;
  }
  .tj-testimonial-area .heading-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.testimonial_wrap {
  width: 150vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.testimonial_wrap_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-animation: testimonial_marquee 20s linear infinite running;
          animation: testimonial_marquee 20s linear infinite running;
}
.testimonial_wrap_inner.reverse {
  -webkit-animation: testimonial_marquee_reverse 20s linear infinite running;
          animation: testimonial_marquee_reverse 20s linear infinite running;
}

.testimonial-item {
  background: var(--tj-color-theme-primary-4);
  padding: 30px;
  position: relative;
  z-index: 2;
  margin-bottom: 25px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 425px;
          flex: 0 0 425px;
  max-width: 425px;
}
.testimonial-item::before {
  position: absolute;
  content: "";
  width: 254px;
  height: 6px;
  right: 0;
  bottom: 0;
  border-radius: 6px 0 0 0;
  background: var(--tj-color-theme-primary-5);
}
.testimonial-item .testimonial-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.testimonial-item .testimonial-header .testimonial-auother .title {
  font-size: 22px;
  margin-bottom: 5px;
}
.testimonial-item .testimonial-header .testimonial-auother .sub-title {
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
.testimonial-item .desc {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-text-body-2);
  line-height: 1.9;
}
.testimonial-item .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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item {
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-header .testimonial-auother .title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item {
    margin: 0 auto 30px;
  }
}
.testimonial-item .testimonial-rating {
  margin-bottom: 25px;
}
.testimonial-item .testimonial-rating .star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-color-theme-primary-3);
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary-3);
}
.testimonial-item .testimonial-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary-3);
  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-common-white);
}

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