
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
    /**
     @Font-Family Declaration
   */
    --tj-ff-body: 'Roboto', sans-serif;
    --tj-ff-heading: 'Bebas Neue', 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-h1: 88px;
    --tj-fs-h2: 52px;
    --tj-fs-h3: 36px;
    --tj-fs-h4: 28px;
    --tj-fs-h5: 22px;
    --tj-fs-h6: 18px;
    /**
     @Color Declaration
   */
    --tj-color-common-white: #ffffff;
    --tj-color-common-black: #000000;
    --tj-color-common-black-2: #383838;
    --tj-color-heading-primary: #002B45;
    --tj-color-text-body: #4d4d4d;
    --tj-color-theme-primary: #ffcb00;
    --tj-color-theme-dark: #002B45;
    --tj-color-theme-bg: #f2f1eb;
    --tj-color-grey-1: #cccccc;
    --tj-color-grey-2: #b8b8b8;
    --tj-color-grey-3: #f7f2eb;
    --tj-color-grey-4: #969090;
    --tj-color-gradient-1: #cccccc;
    --tj-color-gradient-2: #b8b8b8;
    --tj-color-border-1: #e0e0e0;
    --tj-color-border-2: #424242;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body,
html,
.site-main {
  position: relative;
}

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;
}

a {
  text-decoration: none;
}

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;
}

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-regular);
  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);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 45px;
  }
}

h2 {
  font-size: var(--tj-fs-h2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h2 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h2 {
    font-size: 44px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 42px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 38px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 24px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h4 {
    font-size: 24px;
  }
}
@media (max-width: 575px) {
  h4 {
    font-size: 22px;
  }
}

h5 {
  font-size: var(--tj-fs-h5);
}
@media (max-width: 575px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: var(--tj-fs-h6);
}
@media (max-width: 575px) {
  h6 {
    font-size: 16px;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: inherit;
  display: block;
}

h1:hover a,
h2:hover a,
h3:hover a,
h4:hover a,
h5:hover a,
h6:hover a {
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
}

ul {
  margin: 0px;
  padding: 0px;
}

a,
.btn,
button,
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%;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-theme-dark);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--tj-color-theme-primary);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

*::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

::selection {
  background: var(--tj-color-common-black);
  color: var(--tj-color-common-white);
  text-shadow: none;
}

*::-webkit-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-moz-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*:-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::-ms-input-placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}
*::placeholder {
  color: var(--tj-color-common-black);
  font-size: var(--tj-fs-body);
  opacity: 1;
}

/**
 	Common Classes CSS
*/
i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

img {
  max-width: 100%;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
/* Loader Styling */
.tj-preloader {
  background: var(--tj-color-common-black);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: visible;
  opacity: 1;
  z-index: 999999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.tj-preloader__spins {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--tj-color-theme-primary);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.tj-preloader__spins:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--tj-color-theme-primary);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.tj-preloader__spins:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--tj-color-theme-primary);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}
.tj-preloader--hidden {
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/**
  Buttons CSS
*/
.text-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-family: var(--tj-ff-heading);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.text-button .anim-btn {
  display: block;
  overflow: hidden;
  color: var(--tj-color-heading-primary);
  text-shadow: 0 23px 0 var(--tj-color-heading-primary);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.text-button .anim-btn > .anim-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.text-button .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.text-button .btn-icon i:first-child, .text-button .btn-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.text-button .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.text-button:hover {
  color: var(--tj-color-heading-primary);
}
.text-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-heading-primary);
  -webkit-transform: translateY(-23px);
      -ms-transform: translateY(-23px);
          transform: translateY(-23px);
}
.text-button:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.text-button:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.tj-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 17px;
  line-height: 1;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  padding: 5px;
  position: relative;
  z-index: 1;
}
.tj-primary-btn .btn_inner {
  position: relative;
  z-index: 1;
  padding: 16px 19px 13px 58px;
  width: 100%;
  text-align: center;
}
.tj-primary-btn .btn_inner::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-color: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-primary-btn .btn_inner .btn_icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  min-width: 50px;
  height: 100%;
  z-index: 2;
  font-size: 72%;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.tj-primary-btn .btn_inner .btn_icon > span {
  overflow: hidden;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 5px;
}
.tj-primary-btn .btn_inner .btn_icon > span i:first-child, .tj-primary-btn .btn_inner .btn_icon > span i:last-child {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-primary-btn .btn_inner .btn_icon > span i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-primary-btn .btn_inner .btn_text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  color: var(--tj-color-heading-primary);
  text-shadow: 0 23px 0 currentColor;
}
.tj-primary-btn .btn_inner .btn_text > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.tj-primary-btn.sm-btn .btn_inner {
  padding: 12px 20px 9px 50px;
}
.tj-primary-btn.sm-btn .btn_inner::before {
  width: 42px;
}
.tj-primary-btn.sm-btn .btn_inner .btn_icon {
  min-width: 42px;
}
.tj-primary-btn:hover .btn_inner::before {
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.tj-primary-btn:hover .btn_inner .btn_icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-primary-btn:hover .btn_inner .btn_icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj-primary-btn:hover .btn_inner .btn_text {
  color: var(--tj-color-common-white);
}
.tj-primary-btn:hover .btn_inner .btn_text > span {
  -webkit-transform: translateY(-24px);
      -ms-transform: translateY(-24px);
          transform: translateY(-24px);
}
@media (max-width: 575px) {
  .tj-primary-btn .btn_inner {
    padding: 12px 20px 9px 50px;
  }
  .tj-primary-btn .btn_inner::before {
    width: 42px;
  }
  .tj-primary-btn .btn_inner .btn_icon {
    min-width: 42px;
  }
}

.tj-transparent-btn {
  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-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 17px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  border: 1px solid var(--tj-color-heading-primary);
  background: transparent;
  padding: 19px 35px;
  text-align: center;
  line-height: 1;
}
.tj-transparent-btn .anim-btn {
  display: block;
  overflow: hidden;
  color: var(--tj-color-heading-primary);
  text-shadow: 0 23px 0 var(--tj-color-heading-primary);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-transparent-btn .anim-btn > .anim-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-transparent-btn .anim-btn > .anim-text i {
  font-size: 13px;
  position: relative;
  top: -1px;
}
.tj-transparent-btn .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-transparent-btn .btn-icon i:first-child, .tj-transparent-btn .btn-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-transparent-btn .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-transparent-btn:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-heading-primary);
}
.tj-transparent-btn:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-heading-primary);
  -webkit-transform: translateY(-23px);
      -ms-transform: translateY(-23px);
          transform: translateY(-23px);
}
.tj-transparent-btn:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-transparent-btn:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/**
  Inputs CSS
*/
.tj-input {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 20px;
  color: var(--tj-color-body-text);
  background-color: var(--tj-color-common-white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: var(--tj-fs-body);
  position: relative;
  z-index: 0;
  font-weight: var(--tj-fw-medium);
  outline: none;
  border: 0;
  border-radius: var(--tj-br-md);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-input {
    font-size: 12px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-input {
    font-size: 12px;
  }
}
.tj-input:focus {
  outline: none;
  border: 0;
}
.tj-input__wrapper {
  border: 2px solid var(--tj-color-border-1);
  border-radius: var(--tj-br-md);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.tj-input__wrapper:has(input:focus) {
  border-color: var(--tj-color-theme-primary);
}
.tj-input::-webkit-input-placeholder {
  color: var(--tj-color-body-text);
}
.tj-input::-moz-placeholder {
  color: var(--tj-color-body-text);
}
.tj-input:-ms-input-placeholder {
  color: var(--tj-color-body-text);
}
.tj-input::-ms-input-placeholder {
  color: var(--tj-color-body-text);
}
.tj-input::placeholder {
  color: var(--tj-color-body-text);
}
.tj-input.tj-nice-select {
  padding: 22px 30px;
}

.tj-nice-select {
  height: auto;
  z-index: 99;
}
.tj-nice-select span {
  line-height: 1;
}
.tj-nice-select .list {
  width: 100%;
  border: 0;
}

/**----------------------------------------
START: Progress Bar CSS
----------------------------------------*/
.tj-progress {
  width: 100%;
  padding: 0;
  margin: 0;
  height: 8px;
  background: var(--tj-color-theme-bg);
  position: relative;
  border-radius: 30px;
  z-index: 0;
}
.tj-progress__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress__list {
    margin-top: 20px;
    gap: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress__list {
    margin-top: 20px;
    gap: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress {
    height: 6px;
  }
}
.tj-progress__title {
  font-size: 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-progress__title {
    font-size: 14px;
  }
}
.tj-progress__bar {
  width: 0;
  height: 100%;
  background: var(--tj-color-theme-primary);
  position: relative;
  z-index: 1;
  border-radius: 30px;
}
.tj-progress__bar::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 4px solid var(--tj-color-theme-primary);
  border-radius: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(3px, -50%);
      -ms-transform: translate(3px, -50%);
          transform: translate(3px, -50%);
  background: var(--tj-color-common-black);
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress__bar::after {
    width: 16px;
    height: 16px;
    border-width: 4px;
  }
}
.tj-progress__perchant {
  font-size: 12px;
  padding: 5px 7px 4px;
  line-height: 1;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 100%;
  -webkit-transform: translate(11px, -13px);
      -ms-transform: translate(11px, -13px);
          transform: translate(11px, -13px);
  color: var(--tj-color-common-black) !important;
  background: var(--tj-color-theme-primary);
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress__perchant {
    font-size: 10px;
    padding: 4px 3px 4px 5px;
    -webkit-transform: translate(9px, -11px);
        -ms-transform: translate(9px, -11px);
            transform: translate(9px, -11px);
  }
}
.tj-progress__perchant::after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: var(--tj-color-theme-primary);
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-progress__perchant::after {
    border-width: 4px;
  }
}

/* !END: Progress Bar CSS */
/* !START: Socials CSS */
.tj-socials ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -ms-flex-line-pack: center;
      align-content: center;
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-socials ul {
    gap: 5px;
  }
}
.tj-socials ul li a i {
  font-size: 16px;
  width: 32px;
  height: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  color: var(--tj-color-common-white);
  background: var(--tj-color-common-black);
  border-radius: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-socials ul li a i {
    font-size: 14px;
  }
}
.tj-socials ul li a:hover i {
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-black);
}

/* !END: Socials CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  position: relative;
  padding: 20px 0;
  width: 100%;
  top: 0;
  left: 0;
  background-color: var(--tj-color-theme-dark);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 98;
}
.tj-header-area.header-1 {
  padding: 20px 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.header-1 {
    padding: 20px 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-1 {
    padding: 15px 0px 0px;
  }
}
.tj-header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
}
.tj-header-area.header-absolute .header-wrapper {
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.1);
}
.tj-header-area.header-duplicate {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.tj-header-area.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-animation: sticky 0.9s;
          animation: sticky 0.9s;
  border-bottom: none;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  z-index: 999;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.06);
  opacity: 1;
  visibility: visible;
  background-color: var(--tj-color-theme-dark);
  padding: 0px 50px;
  display: block;
}
.tj-header-area.sticky .header-wrapper {
  background-color: var(--tj-color-theme-dark);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.sticky .header-wrapper {
    padding: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.sticky {
    padding: 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.sticky {
    padding: 20px 0;
  }
}
.tj-header-area.header-2 {
  padding: 20px 50px;
  background: var(--tj-color-theme-dark);
}
.tj-header-area.header-2 .header-wrapper-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-header-area.header-2 .header-wrapper-two .mean-push {
  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-header-area.header-2 {
    padding: 20px 0;
  }
}
.tj-header-area.header-3 {
  background: var(--tj-color-theme-dark);
  padding: 0px;
}
.tj-header-area.header-3 .mainmenu ul > li > a {
  color: var(--tj-color-common-black-2);
}
.tj-header-area.header-3 .mainmenu ul > li.has-dropdown > a::after {
  color: var(--tj-color-common-black-2);
}
.tj-header-area.header-3 .header-right-item .header-search .search {
  color: var(--tj-color-heading-primary);
}
.tj-header-area.header-3 .header-right-item .header-search .search i {
  color: var(--tj-color-heading-primary);
}

.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;
  background-color: var(--tj-color-theme-dark);
  padding: 0px 16px 0px 30px;
}
.header-wrapper .mean-push {
  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) {
  .header-wrapper {
    padding: 16px 20px;
  }
}

.site-logo {
  max-width: 160px;
  width: 100%;
}
.site-logo .logo {
  display: inline-block;
}
.site-logo .logo img {
  width: 100%;
}

.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 36px;
     -moz-column-gap: 36px;
          column-gap: 36px;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  position: relative;
  font-size: 17px;
  color: var(--tj-color-common-white);
  display: block;
  padding: 32px 0;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
  line-height: 1;
}
.mainmenu ul > li.menu-item-has-children > a, .mainmenu ul > li.has-dropdown > a {
  padding-right: 20px;
}
.mainmenu ul > li.menu-item-has-children > a::after, .mainmenu ul > li.has-dropdown > a::after {
  position: absolute;
  content: "\e92d";
  font-family: "conix-icons";
  top: 36px;
  right: 0;
  color: var(--tj-color-grey-1);
  font-size: 6px;
}
.mainmenu ul > li.menu-item-has-children:hover > a::after, .mainmenu ul > li.has-dropdown:hover > a::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.mainmenu ul > li.current-menu-ancestor a, .mainmenu ul > li.current-menu-item a, .mainmenu ul > li:hover a {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor a::after, .mainmenu ul > li.current-menu-item a::after, .mainmenu ul > li:hover a::after {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor a::before, .mainmenu ul > li.current-menu-item a::before, .mainmenu ul > li:hover a::before {
  opacity: 1;
  visibility: visible;
}
.mainmenu ul > li > .sub-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 220px;
  top: 100%;
  left: 0;
  z-index: 99;
  text-align: left;
  background-color: var(--tj-color-common-white);
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  opacity: 0;
  visibility: hidden;
  gap: 0;
  padding: 10px 0;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mainmenu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
}
.mainmenu ul > li > .sub-menu > li > a {
  position: relative;
  padding: 8px 20px;
  display: block;
  color: var(--tj-color-text-body);
}
.mainmenu ul > li > .sub-menu > li > a::before {
  display: none;
}
.mainmenu ul > li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.mainmenu ul > li > .sub-menu > li.menu-item-has-children > a::after, .mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  content: "\e92d";
  top: 35%;
  right: 15px;
  color: var(--tj-color-text-body);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a, .mainmenu ul > li > .sub-menu > li.current-menu-item > a, .mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--tj-color-heading-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::before, .mainmenu ul > li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::after, .mainmenu ul > li > .sub-menu > li:hover > a::after {
  color: var(--tj-color-heading-primary);
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
}
.mainmenu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  pointer-events: inherit;
}

.header-right-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-search {
  line-height: 1;
}
.header-search .search {
  color: var(--tj-color-common-white);
  font-size: 20px;
  line-height: 1;
}

.header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  gap: 10px;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}

.menu-bar button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--tj-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  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;
}
.menu-bar.style-2 button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.menu-bar.style-2 button span {
  background: var(--tj-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}

.header-top-area {
  padding: 19px 50px;
  background-color: var(--tj-color-theme-dark);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top-area {
    padding: 19px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-area {
    padding: 19px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top-area {
    padding: 18px 0px;
  }
}
@media (max-width: 575px) {
  .header-top-area {
    padding: 18px 0px;
  }
}

.header-bottom-area {
  padding: 0px 50px;
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-bottom-area {
    padding: 0px 20px;
  }
}
@media (max-width: 575px) {
  .header-bottom-area {
    padding: 0px;
  }
}

.header-wrapper-three {
  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;
}
.header-wrapper-three .site-logo {
  max-width: 160px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.header-wrapper-three .site-logo::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 100%;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.header-wrapper-three .site-logo .logo {
  max-width: 160px;
  background-color: var(--tj-color-theme-primary);
  padding: 16px 40px 16px 0px;
  position: relative;
  -webkit-clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0, 100% 80%, 80% 100%, 0 100%, 0 0);
  z-index: 1;
}
.header-wrapper-three .mean-push {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-wrapper-three .site-logo .logo {
    padding: 15px 35px 15px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-wrapper-three .site-logo .logo {
    max-width: 145px;
    padding: 15px 35px 15px 0px;
  }
}

.header-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 14px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-content-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.header-infos ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 8px;
}
.header-infos ul li {
  font-size: 14px;
  color: var(--tj-color-common-white);
  position: relative;
  padding-right: 15px;
  margin-right: 15px;
  line-height: 1;
  z-index: 1;
}
.header-infos ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  right: 0;
  background-color: var(--tj-color-common-white);
  -webkit-transform: rotate(18deg);
      -ms-transform: rotate(18deg);
          transform: rotate(18deg);
}
.header-infos ul li a {
  line-height: 1;
}
.header-infos ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-infos ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-infos ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .header-infos ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .header-infos ul li {
    padding-right: 0;
    margin-right: 0;
  }
  .header-infos ul li::before {
    display: none;
  }
}

.header-share 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;
}
.header-share ul li {
  position: relative;
  font-size: 14px;
  color: var(--tj-color-common-white);
  padding-right: 10px;
  margin-right: 8px;
  line-height: 1;
  z-index: 1;
}
.header-share ul li:first-child {
  padding-right: 13px;
  margin-right: 8px;
}
.header-share ul li:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 4px;
  height: 2px;
  background: var(--tj-color-common-white);
}
.header-share ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(20deg);
      -ms-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
  right: 0;
  width: 2px;
  height: 80%;
  background: var(--tj-color-common-white);
}
.header-share ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.header-share ul li:last-child::before {
  display: none;
}

.menu_bar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 28px;
  height: 28px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.menu_bar span {
  display: block;
  width: 14px;
  height: 2px;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  margin-right: auto;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu_bar span:first-child {
  width: 28px;
}
.menu_bar span:last-child {
  width: 28px;
}
.menu_bar:hover span {
  width: 100%;
}
.menu_bar.on {
  left: -4px;
  top: 0;
}
.menu_bar.on span {
  width: 100%;
}
.menu_bar.on span:first-child {
  -webkit-transform: rotate(45deg) translate(9px, 6px);
      -ms-transform: rotate(45deg) translate(9px, 6px);
          transform: rotate(45deg) translate(9px, 6px);
}
.menu_bar.on span:nth-child(2) {
  opacity: 0;
}
.menu_bar.on span:last-child {
  -webkit-transform: rotate(-45deg) translate(8px, -5px);
      -ms-transform: rotate(-45deg) translate(8px, -5px);
          transform: rotate(-45deg) translate(8px, -5px);
}

/* !END: Theme Header CSS */
/* !START: hamburger CSS */
.hamburger-area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
          box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  right: 0px;
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}
.hamburger_bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--tj-color-theme-dark);
  z-index: -1;
  -webkit-backdrop-filter: blur(37px);
          backdrop-filter: blur(37px);
}
.hamburger_wrapper {
  position: relative;
  padding: 45px 45px 90px 45px;
  overflow: auto;
  height: 100%;
}
@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px 60px 20px;
  }
}
.hamburger_top {
  margin-bottom: 40px;
}
.hamburger_close_btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .hamburger_close_btn {
    font-size: 30px;
  }
}
.hamburger_close_btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  color: var(--tj-color-theme-primary);
}
.hamburger_search {
  position: relative;
  margin-bottom: 30px;
}
.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.hamburger_search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding: 0 25px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 18px;
  color: var(--tj-color-common-white);
}
.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-webkit-input-placeholder, .hamburger_search .nice-select::-webkit-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .hamburger_search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-moz-placeholder, .hamburger_search .nice-select::-moz-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .hamburger_search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select:-ms-input-placeholder, .hamburger_search .nice-select:-ms-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .hamburger_search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::-ms-input-placeholder, .hamburger_search .nice-select::-ms-input-placeholder, .hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .hamburger_search input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.hamburger_search input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.hamburger_search button {
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--tj-color-common-white);
}
.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--tj-color-common-white);
  width: 100%;
  padding: 18px 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--tj-color-theme-secondary);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 0;
  top: 10px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--tj-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 6px;
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}
.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0;
  text-transform: capitalize;
}
.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0;
  width: 30px;
}
.hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--tj-color-theme-primary);
}

.tj-offcanvas-area .hamburger_menu .mean-nav ul li a {
  color: var(--tj-color-grey-1);
  font-size: 72px;
  border-bottom: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-area .hamburger_menu .mean-nav ul li a {
    font-size: 40px;
  }
}
.tj-offcanvas-area .hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 0;
}
.tj-offcanvas-area .hamburger_menu .mean-nav ul li .sub-menu li a {
  font-size: 22px;
  padding: 10px 0;
}

.tj-offcanvas-area .hamburger_menu .mean-nav ul li.dropdown-opened > a {
  color: var(--tj-color-common-white);
}

.hamburger-title {
  color: var(--tj-color-common-white);
  font-size: 25px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.hamburger-infos {
  margin-bottom: 50px;
}
.hamburger-infos .contact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.hamburger-infos .contact-item:last-child {
  margin-bottom: 0;
}
.hamburger-infos .contact-item .contact-icon {
  position: relative;
  max-width: 40px;
  height: 55px;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/vector-1.svg);
          mask-image: url(../images/shapes/vector-1.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(180deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
  z-index: 1;
}
.hamburger-infos .contact-item .contact-icon span {
  position: absolute;
  top: 60%;
  left: 50%;
  line-height: 1;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--tj-color-common-white);
  font-size: 18px;
  z-index: 2;
}
.hamburger-infos .contact-item .contact-text .text {
  color: var(--tj-color-grey-1);
  font-size: 20px;
}

.hamburger-socials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.hamburger-socials ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  border: 1.5px solid var(--tj-color-common-white);
}
.hamburger-socials ul li a i {
  color: var(--tj-color-common-white);
}
.hamburger-socials ul li a:hover {
  background-color: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
  color: var(--tj-color-common-white);
}
.hamburger-socials ul li a:hover i {
  color: var(--tj-color-common-white);
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 185px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
      -ms-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--tj-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  margin-left: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  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;
}
.menu-bar.style-2 button span {
  background: var(--tj-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .menu-bar {
    margin-left: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: hamburger CSS */
/* !START: Mainmenu CSS */
.tj-offcanvas-area {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--tj-color-theme-dark);
  z-index: 9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
  max-width: 480px;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transform: translateX(-30px);
      -ms-transform: translateX(-30px);
          transform: translateX(-30px);
  padding: 110px 30px 60px;
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu {
  max-width: 350px;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding-right: 16px;
}
.tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu .mean-bar {
  margin-bottom: 0;
}
.tj-offcanvas-area .offcanvas_warp .canvas-content-area {
  max-width: 720px;
  width: 100%;
  margin-left: auto;
  height: 100vh;
  position: relative;
  padding: 110px 30px 180px;
  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: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  -webkit-transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  transition: 0.4s cubic-bezier(0, 0, 0.3642, 1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.tj-offcanvas-area .offcanvas_warp .canvas-content-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 19, 19, 0)), to(var(--tj-color-theme-dark)));
  background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, var(--tj-color-theme-dark) 100%);
  z-index: -1;
}
@media only screen and (min-width: 1601px) and (max-width: 1700px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    margin-left: 70px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 450px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 420px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 470px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    max-width: 350px;
    margin-left: 200px;
  }
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap .mobile_menu {
    padding-left: 25px;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    max-width: 360px;
  }
}
.tj-offcanvas-area.opened {
  opacity: 1;
  pointer-events: all;
}
.tj-offcanvas-area.opened .offcanvas_warp .offcanvas_menu_wrap {
  opacity: 1;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.tj-offcanvas-area.opened .offcanvas_warp .canvas-content-area {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.tj-offcanvas-area .offcanvas-copyright {
  position: absolute;
  bottom: 25px;
  left: 25px;
}
.tj-offcanvas-area .offcanvas-copyright p {
  color: var(--tj-color-grey-2);
  margin-bottom: 0;
}
.tj-offcanvas-area .offcanvas-copyright p a {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-copyright p a:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-offcanvas-area .offcanvas_warp .offcanvas_menu_wrap {
    padding: 110px 0 40px 0;
  }
  .tj-offcanvas-area .offcanvas_warp .canvas-content-area {
    padding: 110px 25px 80px 50px;
  }
}

.canvas-content-area .contact-box-one .contact-item {
  text-align: end;
}
.canvas-content-area .contact-box-one .contact-item::before {
  background: var(--tj-color-common-white);
  right: 0;
  left: auto;
}
.canvas-content-area .contact-box-one .contact-item::after {
  background: var(--tj-color-common-white);
}
.canvas-content-area .contact-box-one .contact-item:last-child::after {
  background: var(--tj-color-common-white);
  right: 0;
  left: auto;
}
.canvas-content-area .contact-box-one .contact-item .contact-link {
  position: relative;
  color: var(--tj-color-common-white);
  z-index: 1;
}
.canvas-content-area .contact-box-one .contact-item .contact-link::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--tj-color-common-white);
  bottom: 5px;
  left: 0px;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.canvas-content-area .contact-box-one .contact-item .contact-link:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.canvas-content-area .contact-box-one .contact-item .location {
  color: var(--tj-color-common-white);
}
.canvas-content-area .contact-box-one .contact-item .sub-title {
  color: var(--tj-color-grey-1);
}

/* !END: Mainmenu CSS */
/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search_popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--tj-color-theme-dark);
  z-index: 100;
  padding-top: 60px;
  padding-bottom: 90px;
  opacity: 0;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  z-index: 9999;
}
.search_popup .search_close {
  position: absolute;
  top: 36px;
  right: 36px;
}
.search_popup .search_close .search_close_btn {
  font-size: 24px;
  color: var(--tj-color-common-white);
}
.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.search_popup .search_close .search_close_btn svg path {
  fill: var(--tj-color-common-white);
}
.search_popup .search_close .search_close_btn svg:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--tj-color-theme-primary);
}
.search_popup.search-opened {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

.tj_search_wrapper .search_form form .search_input {
  position: relative;
  z-index: 1;
}
.tj_search_wrapper .search_form form .search_input .title {
  color: var(--tj-color-common-white);
  margin-bottom: 30px;
}
.tj_search_wrapper .search_form form .search_input .search-box {
  position: relative;
  z-index: 1;
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj_search_wrapper .search_form form .search_input .search-box input[type=text] {
  width: 100%;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-common-white);
  background: transparent;
  padding: 20px 75px 20px 24px;
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-moz-placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .tj_search_wrapper .search_form form .search_input .search-box input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj_search_wrapper .search_form form .search_input .search-box button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 62px;
  font-size: 22px;
  color: var(--tj-color-common-white);
  border-left: 1px solid var(--tj-color-common-white);
  width: 100%;
  height: 100%;
}

.search-popup-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 99;
  -webkit-transform: translateY(calc(-100% - 80px));
  -ms-transform: translateY(calc(-100% - 80px));
  transform: translateY(calc(-100% - 80px));
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.search-popup-overlay.search-popup-overlay-open {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* !END: Theme Search CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-area {
  position: relative;
  background-color: var(--tj-color-theme-dark);
  overflow: hidden;
}
.tj-footer-area.footer-3 .footer-top-area {
  padding-top: 52px;
  padding-bottom: 0;
  border-bottom: none;
}
.tj-footer-area.footer-3 .footer-bottom-area {
  padding-bottom: 0px;
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.footer-top-area {
  position: relative;
  padding-top: 96px;
  padding-bottom: 88px;
  border-bottom: 2px solid var(--tj-color-common-black-2);
  z-index: 2;
}
.footer-top-area .footer-shapes {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.footer-top-area .footer-shapes img {
  white-space: nowrap;
  -webkit-animation: marquee 50s linear infinite;
          animation: marquee 50s linear infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-top-area {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-top-area {
    padding-top: 75px;
    padding-bottom: 75px;
  }
  .footer-top-area .footer-shapes img {
    height: 70px;
  }
}
@media (max-width: 575px) {
  .footer-top-area {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .footer-top-area .footer-shapes img {
    height: 50px;
  }
}

.footer-bottom-area {
  padding-top: 100px;
  padding-bottom: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-bottom-area {
    padding-top: 80px;
    padding-bottom: 10px;
  }
}

.footer-content-inner {
  max-width: 645px;
  width: 100%;
}
.footer-content-inner .footer-menu-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-content-inner .footer-menu-area .footer-widget {
    max-width: calc(50% - 15px);
    width: 100%;
  }
}
.footer-content-inner .footer-form {
  margin-top: 20px;
  margin-bottom: 60px;
}
.footer-content-inner .footer-form .subscribe_form .title {
  color: var(--tj-color-common-white);
  margin-bottom: 25px;
}
.footer-content-inner .footer-form .subscribe_form .form_input {
  max-width: 100%;
}
.footer-content-inner .copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--tj-color-border-2);
  padding: 25px 0;
}
.footer-content-inner .copyright-wrapper .copyright-text p a {
  color: var(--tj-color-common-white);
}
.footer-content-inner .copyright-wrapper .copyright-text p a:hover {
  color: var(--tj-color-theme-primary);
}

.subscribe-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.subscribe-content-area .subscribe-title .title {
  font-size: 88px;
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  line-height: 1;
}
.subscribe-content-area form {
  max-width: 420px;
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .subscribe-content-area .subscribe-title .title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .subscribe-content-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subscribe-content-area .subscribe-title .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .subscribe-content-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subscribe-content-area .subscribe-title .title {
    font-size: 55px;
  }
}
@media (max-width: 575px) {
  .subscribe-content-area {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .subscribe-content-area .subscribe-title .title {
    font-size: 45px;
  }
}

.footer-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-content-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.footer-lg-logo {
  position: relative;
  top: 70px;
}
.footer-lg-logo .logo {
  display: inline-block;
  max-width: 250px;
  width: 100%;
}
.footer-lg-logo .logo 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) {
  .footer-lg-logo .logo {
    max-width: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-lg-logo {
    top: auto;
  }
}

.subscribe_form .form_input {
  position: relative;
  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;
  max-width: 420px;
  width: 100%;
  border: 1px solid var(--tj-color-common-white);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.subscribe_form .form_input input[type=email] {
  width: 100%;
  padding: 19px 135px 19px 15px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-dark);
  border: none;
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .subscribe_form .form_input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .subscribe_form .form_input input[type=email]::-moz-placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .subscribe_form .form_input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .subscribe_form .form_input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.subscribe_form .form_input input[type=email]::placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.subscribe_form .form_input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-grey-2);
}
.subscribe_form .form_input .text-button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--tj-color-common-white);
  padding: 23px 20px;
}
.subscribe_form .form_input .text-button .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.subscribe_form .form_input .text-button::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 64px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-color-common-white);
}
.subscribe_form .form_input .text-button i {
  color: var(--tj-color-common-white);
}
.subscribe_form .form_input .text-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
  -webkit-transform: translateY(-23px);
      -ms-transform: translateY(-23px);
          transform: translateY(-23px);
}

.footer-infos-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-infos-wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-infos-wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 25px;
    padding: 30px 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-infos-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 575px) {
  .footer-infos-wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 25px;
    padding: 30px 20px;
    -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;
    text-align: center;
  }
}

.footer-contact-item {
  border-right: 1px solid rgba(255, 255, 255, 0.1019607843);
  margin-right: 70px;
  padding: 28px 70px 28px 0px;
}
.footer-contact-item .sub-title {
  display: block;
  color: var(--tj-color-grey-2);
  font-size: 14px;
  margin-bottom: 15px;
}
.footer-contact-item .contact-link {
  font-size: 28px;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  line-height: 1;
}
.footer-contact-item .contact-link:hover {
  color: var(--tj-color-theme-primary);
}
.footer-contact-item .location {
  font-size: 28px;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  line-height: 1;
}
.footer-contact-item:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-contact-item {
    margin-right: 40px;
    padding: 28px 50px 28px 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-contact-item {
    margin-right: 15px;
    padding: 25px 40px 25px 0px;
  }
  .footer-contact-item .contact-link {
    font-size: 22px;
  }
  .footer-contact-item .location {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-contact-item {
    margin-right: 0px;
    padding: 0px;
    border-right: none;
  }
  .footer-contact-item .contact-link {
    font-size: 22px;
  }
  .footer-contact-item .location {
    font-size: 22px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-contact-item {
    margin-right: 0px;
    padding: 0px;
    border-right: none;
  }
  .footer-contact-item .contact-link {
    font-size: 22px;
  }
  .footer-contact-item .location {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .footer-contact-item {
    margin-right: 0px;
    padding: 0px;
    border-right: none;
  }
  .footer-contact-item .contact-link {
    font-size: 20px;
  }
  .footer-contact-item .location {
    font-size: 20px;
  }
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget .footer-title .title {
  color: var(--tj-color-common-white);
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-title .title {
    margin-bottom: 20px;
  }
}
.footer-widget.footer2-col-2 {
  padding-left: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-2 {
    padding-left: 0px;
  }
}
.footer-widget.footer2-col-3 {
  padding-left: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-3 {
    padding-left: 0px;
  }
}
.footer-widget.widget_infos .footer-logo {
  max-width: 190px;
  width: 100%;
  margin-bottom: 35px;
}
.footer-widget.widget_infos .footer-logo a {
  display: inline-block;
}
.footer-widget.widget_infos .desc {
  color: rgb(184, 184, 184);
  max-width: 370px;
  width: 100%;
}
.footer-widget.widget_infos .desc p:last-child {
  margin-bottom: 0;
}
.footer-widget.widget_infos .footer-button {
  margin-top: 35px;
}
.footer-widget.widget_infos .footer-button .text-button {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
}
.footer-widget.widget_infos .footer-button .text-button .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.footer-widget.widget_infos .footer-button .text-button i {
  color: var(--tj-color-common-white);
}
.footer-widget.widget_infos .footer-button .text-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.widget_infos .footer-button {
    margin-top: 20px;
  }
}
.footer-widget.widget_nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.widget_nav_menu ul li {
  color: var(--tj-color-grey-2);
  margin-bottom: 14px;
}
.footer-widget.widget_nav_menu ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.widget_nav_menu ul li a {
  color: var(--tj-color-grey-2);
}
.footer-widget.widget_nav_menu ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-widget.footer_contact .contact-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.footer_contact .contact-list ul li {
  position: relative;
  color: var(--tj-color-grey-2);
  padding-left: 35px;
  margin-bottom: 20px;
  z-index: 2;
}
.footer-widget.footer_contact .contact-list ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.footer_contact .contact-list ul li .link {
  color: var(--tj-color-grey-2);
}
.footer-widget.footer_contact .contact-list ul li:hover .link {
  color: var(--tj-color-theme-primary);
}
.footer-widget.footer_contact .contact-list ul span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  line-height: 1;
  font-size: 10px;
  background: transparent;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.footer-widget.footer-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.footer-share ul li {
  margin-top: -6px;
}
.footer-widget.footer-share ul li:first-child {
  margin-top: 0;
}
.footer-widget.footer-share 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: 34px;
  height: 34px;
  line-height: 1;
  border: 2px solid var(--tj-color-heading-primary);
  border-radius: 50%;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
}
.footer-widget.footer-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}

.tj-copyright-area {
  padding-bottom: 30px;
}
.tj-copyright-area .copyright-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--tj-color-common-black-2);
  border-bottom: 1px solid var(--tj-color-common-black-2);
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-copyright-area {
    padding: 20px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-copyright-area {
    padding: 20px 0;
  }
  .tj-copyright-area .copyright-wrapper {
    -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;
  }
}

.copyright-text p {
  color: var(--tj-color-grey-2);
}
.copyright-text p:last-child {
  margin-bottom: 0;
}
.copyright-text p a {
  color: var(--tj-color-common-white);
}
.copyright-text p a:hover {
  color: var(--tj-color-theme-primary);
}

.copyright-share 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;
}
.copyright-share ul li {
  margin-left: -8px;
}
.copyright-share ul li:first-child {
  margin-left: 0;
}
.copyright-share 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: 34px;
  height: 34px;
  line-height: 1;
  border-radius: 50%;
  color: var(--tj-color-heading-primary);
  border: 2px solid var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
}
.copyright-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}

.copyright-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;
}
.copyright-menu ul li {
  position: relative;
  color: var(--tj-color-grey-2);
  padding-right: 15px;
  margin-right: 15px;
  line-height: 1;
  z-index: 1;
}
.copyright-menu ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--tj-color-common-black-2);
}
.copyright-menu ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.copyright-menu ul li:last-child::before {
  display: none;
}
.copyright-menu ul li a {
  color: var(--tj-color-grey-2);
}
.copyright-menu ul li a:hover {
  color: var(--tj-color-theme-primary);
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: back to top CSS
----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  cursor: pointer;
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}

.back-to-top-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  font-size: 18px;
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-heading-primary);
  border-radius: 50%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.back-to-top-btn i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  line-height: 1;
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

/* !END: back to top CSS */
/**----------------------------------------
START: Theme Animate CSS
----------------------------------------*/
@-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%);
  }
}
@-webkit-keyframes contactrotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes contactrotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes contactrotate-2 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes contactrotate-2 {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes bounceLeftToRight {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@keyframes bounceLeftToRight {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@-webkit-keyframes jump-arrow {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
@keyframes jump-arrow {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
@-webkit-keyframes jump-arrow-2 {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
@keyframes jump-arrow-2 {
  0%, 20%, 55%, 80%, 100% {
    -webkit-transform: translate3d(-50%, 0, 0) rotate(-90deg);
            transform: translate3d(-50%, 0, 0) rotate(-90deg);
  }
  40% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  70% {
    -webkit-transform: translate3d(-50%, -8px, 0) rotate(-90deg);
            transform: translate3d(-50%, -8px, 0) rotate(-90deg);
  }
  90% {
    -webkit-transform: translate3d(-50%, -5px, 0) rotate(-90deg);
            transform: translate3d(-50%, -5px, 0) rotate(-90deg);
  }
}
@-webkit-keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
@keyframes borderanimate2 {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
            transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(2.5);
            transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}
/* !END: Theme Animate CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.tj-hero-section {
  position: relative;
  padding-top: 200px;
  padding-bottom: 330px;
  background: var(--tj-color-theme-bg);
  overflow: hidden;
  z-index: 2;
}
.tj-hero-section .hero-imges-box {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.tj-hero-section .hero-imges-box .images-1 {
  position: relative;
  max-width: 1260px;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/shapes/h2-hero-shapes.svg);
          mask-image: url(../images/shapes/h2-hero-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  z-index: -1;
}
.tj-hero-section .hero-imges-box .images-2 {
  position: absolute;
  top: 1px;
  right: 10px;
  max-width: 1260px;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/shapes/h2-hero-shapes.svg);
          mask-image: url(../images/shapes/h2-hero-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: var(--tj-color-theme-primary);
  z-index: -2;
}
.tj-hero-section .hero-imges-box .images-3 {
  position: absolute;
  top: 16%;
  right: 50px;
  max-width: 1260px;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/shapes/h2-hero-shapes.svg);
          mask-image: url(../images/shapes/h2-hero-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: var(--tj-color-theme-dark);
  z-index: -3;
}
.tj-hero-section .hero-imges-box .video-area {
  position: absolute;
  bottom: 20%;
  left: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-section .hero-imges-box .video-area {
    bottom: 18%;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn {
    width: 80px;
    height: 80px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::before {
    width: 135px;
    height: 135px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::after {
    width: 110px;
    height: 110px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section .hero-imges-box .video-area {
    bottom: 16%;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn {
    width: 60px;
    height: 60px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::before {
    width: 115px;
    height: 115px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::after {
    width: 90px;
    height: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-section .hero-imges-box .video-area {
    bottom: 18%;
    left: -10px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn {
    width: 60px;
    height: 60px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::before {
    width: 115px;
    height: 115px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::after {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .tj-hero-section .hero-imges-box .video-area {
    bottom: 24%;
    left: 0;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::before {
    width: 115px;
    height: 115px;
  }
  .tj-hero-section .hero-imges-box .video-area .video-btn::after {
    width: 90px;
    height: 90px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 1150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 950px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 800px;
  }
  .tj-hero-section .hero-imges-box .images-3 {
    right: 40px;
    top: 18%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 580px;
  }
  .tj-hero-section .hero-imges-box .images-3 {
    right: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 465px;
  }
  .tj-hero-section .hero-imges-box .images-3 {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .tj-hero-section .hero-imges-box .images-1 {
    max-width: 325px;
  }
  .tj-hero-section .hero-imges-box .images-3 {
    right: 28px;
  }
}
.tj-hero-section .bg-shapes {
  position: absolute;
  bottom: 0;
  left: -100px;
  z-index: -3;
}
.tj-hero-section .hero_scroll {
  position: absolute;
  left: 25px;
  bottom: 80px;
  z-index: 2;
}
.tj-hero-section .hero_scroll .down {
  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: 16px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  text-decoration: none;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
}
.tj-hero-section .hero_scroll .down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 30px;
  border: 2px solid var(--tj-color-heading-primary);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: relative;
  top: -2px;
  border-radius: 50px;
}
.tj-hero-section .hero_scroll .down span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--tj-color-heading-primary);
  -webkit-animation: jump-arrow 2.5s infinite;
  animation: jump-arrow 2.5s infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-section .hero_scroll {
    left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section .hero_scroll {
    left: -6px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section .hero_scroll {
    left: 0px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-section .hero_scroll {
    left: -6px;
    bottom: 60px;
  }
}
@media (max-width: 575px) {
  .tj-hero-section .hero_scroll {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-hero-section {
    padding-top: 170px;
    padding-bottom: 300px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-section {
    padding-top: 140px;
    padding-bottom: 230px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-hero-section {
    padding-top: 128px;
    padding-bottom: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section {
    padding-top: 160px;
    padding-bottom: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-hero-section {
    padding-top: 160px;
    padding-bottom: 190px;
  }
}
@media (max-width: 575px) {
  .tj-hero-section {
    padding-top: 160px;
    padding-bottom: 250px;
  }
}

.tj-hero-section-two {
  padding-top: 260px;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 2;
}
.tj-hero-section-two .hero-shapes-one {
  position: absolute;
  left: 0;
  top: 12%;
  opacity: 0.1;
  z-index: -1;
}
.tj-hero-section-two .hero-overly {
  position: absolute;
  width: 475px;
  height: 500px;
  top: 10%;
  right: 120px;
  -webkit-mask-image: url(../images/shapes/h3-hero-shapes.svg);
          mask-image: url(../images/shapes/h3-hero-shapes.svg);
  background: rgba(255, 255, 255, 0.03);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  z-index: -1;
}
.tj-hero-section-two .hero_scroll {
  position: absolute;
  left: 25px;
  bottom: 30%;
  z-index: 2;
}
.tj-hero-section-two .hero_scroll .down {
  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: 16px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 18px;
  color: var(--tj-color-common-white);
  text-decoration: none;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
}
.tj-hero-section-two .hero_scroll .down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 30px;
  border: 2px solid var(--tj-color-common-white);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: relative;
  top: -2px;
  border-radius: 50px;
}
.tj-hero-section-two .hero_scroll .down span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--tj-color-common-white);
  -webkit-animation: jump-arrow 2.5s infinite;
  animation: jump-arrow 2.5s infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-hero-section-two .hero_scroll {
    bottom: 18%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-hero-section-two .hero_scroll {
    left: 10px;
    bottom: 15%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-hero-section-two .hero_scroll {
    display: none;
  }
}
@media (max-width: 575px) {
  .tj-hero-section-two .hero-overly {
    display: none;
  }
}

.hero-wrapper {
  max-width: 610px;
  width: 100%;
}
.hero-wrapper .sub-title {
  display: inline-block;
  position: relative;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.17em;
  margin-bottom: 20px;
  padding-left: 16px;
  z-index: 1;
}
.hero-wrapper .sub-title::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  left: 0;
  top: 0px;
  background: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
  z-index: -1;
}
.hero-wrapper .hero-title {
  margin-bottom: 0;
  line-height: 1;
}
.hero-wrapper .hero-button {
  margin-top: 35px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-wrapper {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-wrapper {
    padding-left: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-wrapper {
    max-width: 450px;
    padding-left: 25px;
  }
  .hero-wrapper .hero-button {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper {
    max-width: 400px;
    padding-left: 30px;
  }
  .hero-wrapper .hero-button {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-wrapper {
    max-width: 345px;
    padding-left: 30px;
  }
  .hero-wrapper .hero-button {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .hero-wrapper {
    max-width: 100%;
    padding-left: 45px;
  }
  .hero-wrapper .hero-button {
    margin-top: 20px;
  }
}

.hero-wrapper-two {
  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;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 20px;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper-two {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-wrapper-two {
    margin-bottom: 60px;
  }
  .hero-wrapper-two .hero-title {
    font-size: 40px;
  }
}

.hero-left-content {
  max-width: 940px;
  width: 100%;
}
.hero-left-content .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--tj-color-common-black-2);
  border-radius: 20px;
  padding: 4px 16px 2px 3px;
  margin-bottom: 30px;
}
.hero-left-content .sub-title span {
  position: relative;
  top: -1px;
  display: block;
  font-size: 14px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  letter-spacing: initial;
  font-family: var(--tj-ff-body);
  background-color: var(--tj-color-theme-primary);
  padding: 5px 8px 3px;
  border-radius: 20px;
  line-height: 1;
}
.hero-left-content .hero-title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  line-height: 1;
}
.hero-left-content .hero-title i {
  font-size: 72px;
  color: var(--tj-color-theme-primary);
  -webkit-animation: contactrotate-2 15s infinite linear;
          animation: contactrotate-2 15s infinite linear;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-left-content {
    max-width: 795px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-left-content {
    max-width: 650px;
  }
  .hero-left-content .hero-title i {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-left-content {
    max-width: 420px;
  }
  .hero-left-content .hero-title i {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-left-content {
    max-width: 100%;
  }
  .hero-left-content .hero-title {
    line-height: 1.2;
  }
  .hero-left-content .hero-title i {
    font-size: 35px;
  }
  .hero-left-content .sub-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .hero-left-content {
    max-width: 100%;
  }
  .hero-left-content .hero-title {
    line-height: 1.2;
  }
  .hero-left-content .hero-title i {
    font-size: 30px;
  }
  .hero-left-content .sub-title {
    margin-bottom: 20px;
  }
}

.hero-right-content {
  max-width: 250px;
  width: 100%;
}
.hero-right-content .desc {
  color: var(--tj-color-grey-1);
}
.hero-right-content .desc p:last-child {
  margin-bottom: 0;
}
.hero-right-content .hero-button {
  margin-top: 35px;
}
.hero-right-content .hero-button .link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74px;
  height: 74px;
  line-height: 1;
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
}
.hero-right-content .hero-button .link-btn .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 15px;
  overflow: hidden;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.hero-right-content .hero-button .link-btn .btn-icon i:first-child, .hero-right-content .hero-button .link-btn .btn-icon i:last-child {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hero-right-content .hero-button .link-btn .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.hero-right-content .hero-button .link-btn:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.hero-right-content .hero-button .link-btn:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-right-content .hero-button {
    margin-top: 25px;
  }
  .hero-right-content .hero-button .link-btn {
    font-size: 20px;
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 575px) {
  .hero-right-content .hero-button {
    margin-top: 25px;
  }
  .hero-right-content .hero-button .link-btn {
    font-size: 18px;
    width: 50px;
    height: 50px;
  }
}

.h3-hero-bg-images {
  margin-left: calc((100% - 1300px) / 2);
  -webkit-clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
          clip-path: polygon(3% 0, 100% 0, 100% 100%, 0 100%, 0 7%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 1220px) / 2);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 1020px) / 2);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 830px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 590px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 510px) / 2);
  }
}
@media (max-width: 575px) {
  .h3-hero-bg-images {
    margin-left: calc((100% - 330px) / 2);
  }
  .h3-hero-bg-images img {
    min-height: 250px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right;
       object-position: right;
  }
}

.hero-share {
  position: absolute;
  left: -45px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  z-index: -1;
}
.hero-share 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;
}
.hero-share ul li {
  position: relative;
  font-family: var(--tj-ff-heading);
  font-size: 18px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  text-transform: uppercase;
  padding-right: 12px;
  margin-right: 12px;
  line-height: 1;
  z-index: 1;
}
.hero-share ul li a {
  overflow-y: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.hero-share ul li a span {
  text-shadow: 0 -23px 0 currentColor;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hero-share ul li a:hover span {
  -webkit-transform: translateY(23px);
      -ms-transform: translateY(23px);
          transform: translateY(23px);
}
.hero-share ul li:first-child {
  padding-right: 10px;
  margin-right: 10px;
}
.hero-share ul li:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 4px;
  height: 2px;
  background: var(--tj-color-heading-primary);
}
.hero-share ul li::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(20deg);
      -ms-transform: translateY(-50%) rotate(20deg);
          transform: translateY(-50%) rotate(20deg);
  right: 0;
  width: 2px;
  height: 80%;
  background: var(--tj-color-heading-primary);
}
.hero-share ul li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.hero-share ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-share {
    left: -70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-share {
    left: -65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-share {
    left: -75px;
  }
}

.video-area .video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 110px;
  height: 110px;
  line-height: 1;
  border-radius: 50%;
  font-size: 32px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-heading-primary);
}
.video-area .video-btn::before {
  position: absolute;
  content: "";
  width: 180px;
  height: 180px;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  border: 2px solid var(--tj-color-heading-primary);
  z-index: -1;
}
.video-area .video-btn::after {
  position: absolute;
  content: "";
  width: 153px;
  height: 153px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../images/shapes/hero-shapes.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: contactrotate 20s infinite linear;
          animation: contactrotate 20s infinite linear;
}
.video-area .video-btn:hover::after {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.tj-slider-section {
  position: relative;
  z-index: 1;
}
.tj-slider-section .slider-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 60px;
  right: 50px;
  z-index: 2;
}
.tj-slider-section .slider-navigation .slider-next,
.tj-slider-section .slider-navigation .slider-prev {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
  font-family: var(--tj-ff-heading);
  font-size: 17px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  padding-right: 30px;
  margin-right: 30px;
  line-height: 1;
}
.tj-slider-section .slider-navigation .slider-next .anim-btn,
.tj-slider-section .slider-navigation .slider-prev .anim-btn {
  display: block;
  overflow: hidden;
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-slider-section .slider-navigation .slider-next .anim-btn > .anim-text,
.tj-slider-section .slider-navigation .slider-prev .anim-btn > .anim-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-slider-section .slider-navigation .slider-next .btn-icon,
.tj-slider-section .slider-navigation .slider-prev .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-slider-section .slider-navigation .slider-next .btn-icon i:first-child, .tj-slider-section .slider-navigation .slider-next .btn-icon i:last-child,
.tj-slider-section .slider-navigation .slider-prev .btn-icon i:first-child,
.tj-slider-section .slider-navigation .slider-prev .btn-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  color: var(--tj-color-common-white);
}
.tj-slider-section .slider-navigation .slider-next .btn-icon i:last-child,
.tj-slider-section .slider-navigation .slider-prev .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-common-white);
}
.tj-slider-section .slider-navigation .slider-next::before,
.tj-slider-section .slider-navigation .slider-prev::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 80px;
  width: 1px;
  height: 85%;
  background-color: var(--tj-color-common-white);
}
.tj-slider-section .slider-navigation .slider-next:hover .anim-btn > .anim-text,
.tj-slider-section .slider-navigation .slider-prev:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
  -webkit-transform: translateY(-23px);
      -ms-transform: translateY(-23px);
          transform: translateY(-23px);
}
.tj-slider-section .slider-navigation .slider-next:hover .btn-icon i:first-child,
.tj-slider-section .slider-navigation .slider-prev:hover .btn-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-slider-section .slider-navigation .slider-next:hover .btn-icon i:last-child,
.tj-slider-section .slider-navigation .slider-prev:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj-slider-section .slider-navigation .slider-next {
  padding-right: 0;
  margin-right: 0;
}
.tj-slider-section .slider-navigation .slider-next .btn-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-slider-section .slider-navigation .slider-next::before {
  display: none;
}
.tj-slider-section .slider-navigation .slider-next:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-slider-section .slider-navigation .slider-next:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-section .slider-navigation {
    right: 30px;
    bottom: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-slider-section .slider-navigation {
    right: 25px;
    bottom: 40px;
  }
  .tj-slider-section .slider-navigation .slider-next,
  .tj-slider-section .slider-navigation .slider-prev {
    padding-right: 20px;
    margin-right: 20px;
  }
  .tj-slider-section .slider-navigation .slider-next {
    padding-right: 0;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .tj-slider-section .slider-navigation {
    right: 15px;
    bottom: 40px;
  }
  .tj-slider-section .slider-navigation .slider-next,
  .tj-slider-section .slider-navigation .slider-prev {
    padding-right: 20px;
    margin-right: 20px;
  }
  .tj-slider-section .slider-navigation .slider-next {
    padding-right: 0;
    margin-right: 0;
  }
}
.tj-slider-section .slider_scroll {
  position: absolute;
  left: 35px;
  bottom: 80px;
  z-index: 2;
}
.tj-slider-section .slider_scroll .down {
  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: 16px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  font-size: 18px;
  color: var(--tj-color-common-white);
  text-decoration: none;
  font-weight: var(--tj-fw-regular);
  font-family: var(--tj-ff-heading);
}
.tj-slider-section .slider_scroll .down span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 16px;
  height: 30px;
  border: 2px solid var(--tj-color-common-white);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: relative;
  top: -2px;
  border-radius: 50px;
}
.tj-slider-section .slider_scroll .down span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--tj-color-common-white);
  -webkit-animation: jump-arrow 2.5s infinite;
  animation: jump-arrow 2.5s infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-slider-section .slider_scroll {
    left: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-section .slider_scroll {
    left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-section .slider_scroll {
    left: 0px;
    bottom: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-slider-section .slider_scroll {
    left: 0px;
    bottom: 60px;
  }
}
@media (max-width: 575px) {
  .tj-slider-section .slider_scroll {
    left: -12px;
    bottom: 60px;
  }
}

.slider-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 363px;
  padding-bottom: 180px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-wrapper {
    padding-top: 295px;
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-wrapper {
    padding-top: 195px;
    padding-bottom: 160px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-wrapper {
    padding-top: 195px;
    padding-bottom: 160px;
  }
}
@media (max-width: 575px) {
  .slider-wrapper {
    padding-top: 165px;
    padding-bottom: 160px;
    gap: 50px;
  }
}

.tj-slider-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 9;
  min-height: 100vh;
}
.tj-slider-item::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: rgba(19, 19, 19, 0.64);
}
.tj-slider-item .slider-bg-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all 1s linear;
  transition: all 1s linear;
  z-index: 2;
}
.tj-slider-item .slider-content {
  max-width: 800px;
  position: relative;
  z-index: 3;
}
.tj-slider-item .slider-content .sub-title {
  display: inline-block;
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--tj-color-common-white);
  position: relative;
  margin-bottom: 15px;
  padding-left: 16px;
  z-index: 1;
}
.tj-slider-item .slider-content .sub-title::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  left: 0;
  top: 5px;
  background: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
  z-index: -1;
}
.tj-slider-item .slider-content .slider-title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  line-height: 1;
}
.tj-slider-item .slider-content .slider-button {
  margin-top: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-content {
    max-width: 735px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-item .slider-content {
    max-width: 585px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content {
    max-width: 595px;
  }
  .tj-slider-item .slider-content .slider-button {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-item .slider-content {
    max-width: 100%;
  }
  .tj-slider-item .slider-content .slider-button {
    margin-top: 20px;
  }
}

.tj-reveal-line {
  overflow: hidden;
}

.swiper-slide .slider-content .sub-title,
.swiper-slide .slider-content .slider-title,
.swiper-slide .slider-content .slider-button {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
}
.swiper-slide .slider-highlight {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.6s;
          transition-duration: 0.6s;
}
.swiper-slide.swiper-slide-active .slider-content .sub-title,
.swiper-slide.swiper-slide-active .slider-content .slider-title,
.swiper-slide.swiper-slide-active .slider-content .slider-button {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.swiper-slide.swiper-slide-active .slider-content .sub-title {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
.swiper-slide.swiper-slide-active .slider-content .slider-title {
  -webkit-transition-delay: 1.25s;
          transition-delay: 1.25s;
}
.swiper-slide.swiper-slide-active .slider-content .slider-button {
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
}
.swiper-slide.swiper-slide-active .slider-highlight {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 2.25s;
          transition-delay: 2.25s;
}

.slider-highlight {
  position: relative;
  background-color: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  -webkit-clip-path: polygon(50% 0%, 100% 0, 100% 94%, 94% 100%, 25% 100%, 0 100%, 0 0);
          clip-path: polygon(50% 0%, 100% 0, 100% 94%, 94% 100%, 25% 100%, 0 100%, 0 0);
  max-width: 310px;
  padding: 50px 30px;
  min-height: 305px;
  height: 100%;
  width: 100%;
  margin-top: -140px;
  z-index: 3;
}
.slider-highlight .highlight-thumb {
  border-top: 2px solid var(--tj-color-common-white);
  padding-top: 30px;
  margin-bottom: 40px;
}
.slider-highlight .highlight-thumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.slider-highlight .highlight-thumb ul li {
  max-width: 50px;
  width: 100%;
  margin-left: -15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.slider-highlight .highlight-thumb ul li:first-child {
  margin-left: 0;
}
.slider-highlight .highlight-thumb ul li img {
  border-radius: 50%;
  border: 2px solid var(--tj-color-common-white);
}
.slider-highlight .highlight-thumb ul .plus-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--tj-color-common-white);
  border-radius: 50%;
}
.slider-highlight .highlight-thumb ul .plus-icon span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 46px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  height: 46px;
  line-height: 1;
}
.slider-highlight .desc {
  color: var(--tj-color-grey-1);
}
.slider-highlight .desc p:last-child {
  margin-bottom: 0;
}
.slider-highlight .desc p strong {
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-highlight {
    margin-top: -120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-highlight {
    margin-top: -100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-highlight {
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
  }
  .slider-highlight .highlight-thumb {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .slider-highlight {
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    min-height: auto;
    padding: 35px 20px;
  }
  .slider-highlight .highlight-thumb {
    margin-bottom: 30px;
  }
}

/* !END: Theme Slider CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
.tj-about-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-about-section .sec-heading {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.tj-about-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--tj-color-theme-bg);
}
.tj-about-section-two .sec-heading {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section-two {
    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-about-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.tj-about-section-three {
  background-color: var(--tj-color-common-white);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tj-about-section-three::before {
  position: absolute;
  content: "";
  width: 95%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-dark);
  -webkit-clip-path: polygon(0 0, 98% 0%, 100% 4%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 98% 0%, 100% 4%, 100% 100%, 0 100%, 0% 50%);
  z-index: -1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section-three::before {
    width: 98%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-about-section-three {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tj-about-section-three::before {
    width: 98%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-about-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-about-section-three::before {
    width: 100%;
    -webkit-clip-path: polygon(0 0, 96% 0%, 100% 4%, 100% 100%, 0 100%, 0% 50%);
            clip-path: polygon(0 0, 96% 0%, 100% 4%, 100% 100%, 0 100%, 0% 50%);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-about-section-three::before {
    width: 100%;
    -webkit-clip-path: polygon(0 0, 95% 0%, 100% 2%, 100% 100%, 0 100%, 0% 50%);
            clip-path: polygon(0 0, 95% 0%, 100% 2%, 100% 100%, 0 100%, 0% 50%);
  }
}

.about-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 106px;
}
.about-wrapper .about-images {
  max-width: 615px;
  width: 100%;
}
.about-wrapper .about-right-content {
  max-width: 555px;
  width: 100%;
}
.about-wrapper .about-right-content .funfact-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-wrapper {
    gap: 35px;
  }
  .about-wrapper .about-images {
    max-width: 560px;
  }
  .about-wrapper .about-right-content {
    max-width: 520px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper {
    gap: 35px;
  }
  .about-wrapper .about-images {
    max-width: 420px;
  }
  .about-wrapper .about-right-content {
    max-width: 475px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-wrapper {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-wrapper .about-images-box {
    width: 100%;
  }
  .about-wrapper .about-images {
    max-width: 100%;
  }
  .about-wrapper .about-images img {
    width: 100%;
  }
  .about-wrapper .about-right-content {
    max-width: 100%;
  }
  .about-wrapper .about-right-content .funfact-box {
    padding-top: 35px;
  }
}

.about-wrapper-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 65px;
  overflow: hidden;
  position: relative;
}
.about-wrapper-two .about-image {
  max-width: 440px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-wrapper-two {
    gap: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper-two {
    gap: 30px;
  }
  .about-wrapper-two .about-image {
    max-width: 305px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-wrapper-two {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-wrapper-two .about-image {
    max-width: 100%;
  }
  .about-wrapper-two .about-image img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-wrapper-two {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-wrapper-two .about-image {
    max-width: 100%;
  }
  .about-wrapper-two .about-image img {
    height: 500px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-wrapper-two {
    gap: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-wrapper-two .about-image {
    max-width: 100%;
  }
  .about-wrapper-two .about-image img {
    height: 380px;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}

.about-wrapper-three {
  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: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-wrapper-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.about-counter-wrap {
  max-width: 200px;
  width: 100%;
}
@media (max-width: 575px) {
  .about-counter-wrap {
    max-width: 100%;
  }
  .about-counter-wrap .funfact-item-three {
    margin-left: auto;
    margin-right: auto;
  }
  .about-counter-wrap .funfact-item-three .tj-count {
    font-size: 70px;
  }
  .about-counter-wrap .funfact-item-three .tj-count .counter {
    font-size: 70px;
  }
}

.h3-about-images {
  max-width: 460px;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 99%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 90% 0%, 100% 8%, 100% 99%, 0 100%, 0% 50%);
}
.h3-about-images img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .h3-about-images {
    max-width: 416px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .h3-about-images {
    max-width: 306px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .h3-about-images {
    max-width: 100%;
  }
}

.about-right-content-two {
  max-width: 790px;
  width: 100%;
}
.about-right-content-two .about-feature-two {
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-right-content-two {
    max-width: 645px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-right-content-two {
    max-width: 600px;
  }
  .about-right-content-two .about-feature-two {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-right-content-two {
    max-width: 100%;
  }
  .about-right-content-two .about-feature-two {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-right-content-two {
    max-width: 100%;
  }
  .about-right-content-two .about-feature-two {
    gap: 20px;
    margin-top: 20px;
  }
}

.about-right-content-three {
  max-width: 450px;
  width: 100%;
}
.about-right-content-three .sec-heading.style-2 {
  margin-bottom: 0;
}
.about-right-content-three .sec-heading.style-2 .sub-title {
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-2);
}
.about-right-content-three .sec-heading.style-2 .sec-title {
  color: var(--tj-color-common-white);
}
.about-right-content-three .desc {
  color: var(--tj-color-grey-1);
  margin-top: 15px;
}
.about-right-content-three .desc p {
  margin-bottom: 20px;
}
.about-right-content-three .about-button {
  margin-top: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-right-content-three {
    max-width: 380px;
  }
  .about-right-content-three .about-button {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .about-right-content-three .about-button {
    margin-top: 20px;
  }
}

.about-feature-item .feature-infos {
  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;
  padding-left: 20px;
  gap: 35px;
  margin-top: 40px;
}
.about-feature-item .feature-infos .desc {
  max-width: 335px;
  width: 100%;
  line-height: 1.5;
}
.about-feature-item .feature-infos .desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .about-feature-item .feature-infos {
    padding-left: 12px;
    margin-top: 20px;
  }
}

.about-feature-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-feature-two .feature-left-content {
  max-width: 300px;
  width: 100%;
  padding-right: 25px;
  margin-right: 30px;
  border-right: 1px solid var(--tj-color-border-1);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-feature-two .feature-left-content {
    max-width: 210px;
    padding-right: 15px;
    margin-right: 15px;
  }
}
@media (max-width: 575px) {
  .about-feature-two .feature-left-content {
    max-width: 100%;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}
.about-feature-two .about-button {
  margin-top: 30px;
}
.about-feature-two .feature-right-content .desc {
  max-width: 335px;
  width: 100%;
}
.about-feature-two .feature-right-content .desc p:last-child {
  margin-bottom: 0;
}
.about-feature-two .feature-right-content .about-images {
  margin-top: 45px;
  padding-left: 35px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-feature-two .feature-right-content .about-images {
    margin-top: 30px;
    padding-left: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-feature-two .feature-right-content .about-images {
    margin-top: 30px;
    padding-left: 25px;
  }
  .about-feature-two .about-button {
    margin-top: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-feature-two .feature-right-content .about-images {
    margin-top: 30px;
    padding-left: 25px;
  }
  .about-feature-two .about-button {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .about-feature-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .about-feature-two .feature-right-content .about-images {
    margin-top: 30px;
    padding-left: 0px;
  }
  .about-feature-two .about-button {
    margin-top: 20px;
  }
}

.circle-contact {
  position: relative;
  z-index: 2;
}
.circle-contact .circle-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 86px;
  height: 86px;
  font-size: 15px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border: 2px solid var(--tj-color-heading-primary);
  border-radius: 50%;
  line-height: 1;
}
.circle-contact .circle-button::before {
  position: absolute;
  content: "";
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url(../images/shapes/circle-shapes.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: contactrotate 20s infinite linear;
          animation: contactrotate 20s infinite linear;
}
.circle-contact .circle-button .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.circle-contact .circle-button .btn-icon i:first-child, .circle-contact .circle-button .btn-icon i:last-child {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.circle-contact .circle-button .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.circle-contact .circle-button:hover::before {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.circle-contact .circle-button:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.circle-contact .circle-button:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 575px) {
  .circle-contact .circle-button {
    width: 55px;
    height: 55px;
    font-size: 10px;
  }
  .circle-contact .circle-button::before {
    width: 80px;
    height: 80px;
  }
}

.funfact-item {
  max-width: 220px;
  width: 100%;
  border-top: 2px solid var(--tj-color-heading-primary);
  padding-top: 20px;
  position: relative;
  z-index: 2;
}
.funfact-item::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 11px;
  bottom: 0;
  right: 0;
  background-color: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(100% 0, 0% 100%, 100% 100%);
          clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.funfact-item .tj-count {
  font-family: var(--tj-ff-heading);
  font-size: 100px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.funfact-item .tj-count .counter {
  font-family: var(--tj-ff-heading);
  font-size: 100px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.funfact-item .sub-title {
  display: block;
  color: var(--tj-color-heading-primary);
  margin-top: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-item .number {
    font-size: 80px;
  }
  .funfact-item .number span {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-item .number {
    font-size: 75px;
  }
  .funfact-item .number span {
    font-size: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .funfact-item {
    padding-top: 20px;
  }
  .funfact-item .number {
    font-size: 70px;
  }
  .funfact-item .number span {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .funfact-item {
    padding-top: 20px;
    max-width: 165px;
  }
  .funfact-item .number {
    font-size: 60px;
  }
  .funfact-item .number span {
    font-size: 60px;
  }
}

.funfact-two {
  max-width: 275px;
  width: 100%;
}
.funfact-two .tj-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--tj-ff-heading);
  font-size: 225px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.funfact-two .tj-count .counter {
  font-family: var(--tj-ff-heading);
  font-size: 225px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.funfact-two .sub-title {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  margin-top: -15px;
  z-index: 1;
}
.funfact-two .sub-title a {
  font-weight: var(--tj-fw-sbold);
  text-decoration: underline;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-two .tj-count {
    font-size: 120px;
  }
  .funfact-two .tj-count .counter {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .funfact-two .tj-count {
    font-size: 110px;
  }
  .funfact-two .tj-count .counter {
    font-size: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .funfact-two .tj-count {
    font-size: 100px;
  }
  .funfact-two .tj-count .counter {
    font-size: 100px;
  }
}
@media (max-width: 575px) {
  .funfact-two .tj-count {
    font-size: 90px;
  }
  .funfact-two .tj-count .counter {
    font-size: 90px;
  }
}

.funfact-item-three {
  padding-top: 18px;
  padding-bottom: 23px;
  padding-left: 40px;
  border-top: 1px solid var(--tj-color-border-2);
  position: relative;
  max-width: 200px;
  width: 100%;
  z-index: 1;
}
.funfact-item-three:last-child {
  border-bottom: 1px solid var(--tj-color-border-2);
}
.funfact-item-three::before {
  position: absolute;
  content: "";
  top: 28px;
  left: 0;
  width: 4px;
  height: 28px;
  background: var(--tj-color-common-white);
}
.funfact-item-three .tj-count {
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-size: 92px;
  line-height: 1;
}
.funfact-item-three .tj-count .counter {
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-size: 92px;
  line-height: 1;
}
.funfact-item-three .sub-title {
  color: var(--tj-color-grey-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .funfact-item-three .tj-count {
    font-size: 75px;
  }
  .funfact-item-three .tj-count .counter {
    font-size: 75px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .funfact-item-three .tj-count {
    font-size: 65px;
  }
  .funfact-item-three .tj-count .counter {
    font-size: 65px;
  }
}

.scale-shape {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.1;
  z-index: -1;
}

@keyframes contactrotate {
  from {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
.tj-img-reveal {
  overflow: hidden;
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.tj-service-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-bg);
}
.tj-service-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-service-section .sec-heading .service-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tj-service-section .sec-heading .service-navigation .slider-next,
.tj-service-section .sec-heading .service-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj-service-section .sec-heading .service-navigation .slider-next .anim-icon,
.tj-service-section .sec-heading .service-navigation .slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-service-section .sec-heading .service-navigation .slider-next .anim-icon i:first-child, .tj-service-section .sec-heading .service-navigation .slider-next .anim-icon i:last-child,
.tj-service-section .sec-heading .service-navigation .slider-prev .anim-icon i:first-child,
.tj-service-section .sec-heading .service-navigation .slider-prev .anim-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-service-section .sec-heading .service-navigation .slider-next .anim-icon i:last-child,
.tj-service-section .sec-heading .service-navigation .slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.tj-service-section .sec-heading .service-navigation .slider-next:hover,
.tj-service-section .sec-heading .service-navigation .slider-prev:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.tj-service-section .sec-heading .service-navigation .slider-next:hover .anim-icon i:first-child,
.tj-service-section .sec-heading .service-navigation .slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-service-section .sec-heading .service-navigation .slider-next:hover .anim-icon i:last-child,
.tj-service-section .sec-heading .service-navigation .slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj-service-section .sec-heading .service-navigation .slider-next {
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.tj-service-section .sec-heading .service-navigation .slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-service-section .sec-heading .service-navigation .slider-next:hover:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-service-section .service-pagination {
  text-align: center;
  margin-top: 60px;
  line-height: 1;
}
.tj-service-section .service-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-heading-primary);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.tj-service-section .service-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.tj-service-section .service-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.tj-service-section .service-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.tj-service-section.service-inner {
  padding-bottom: 90px;
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section.service-inner {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section.service-inner {
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-service-section .service-pagination {
    margin-top: 40px;
  }
}

.tj-service-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
  background: var(--tj-color-theme-dark);
}
.tj-service-section-two .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-service-section-two .sec-heading .sec-text .sub-title {
  color: var(--tj-color-common-white);
}
.tj-service-section-two .sec-heading .sec-text .sec-title {
  color: var(--tj-color-common-white);
}
.tj-service-section-two .sec-heading .service-button .service-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  width: 115px;
  height: 54px;
  font-size: 17px;
  color: var(--tj-color-common-white);
  text-transform: uppercase;
  border: 1px solid var(--tj-color-common-white);
  border-radius: 50%;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
}
.tj-service-section-two .sec-heading .service-button .service-btn .anim-btn {
  display: block;
  overflow: hidden;
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-service-section-two .sec-heading .service-button .service-btn .anim-btn > .anim-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.tj-service-section-two .sec-heading .service-button .service-btn .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-service-section-two .sec-heading .service-button .service-btn .btn-icon i:first-child, .tj-service-section-two .sec-heading .service-button .service-btn .btn-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: 1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-service-section-two .sec-heading .service-button .service-btn .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-service-section-two .sec-heading .service-button .service-btn:hover {
  color: var(--tj-color-common-white);
}
.tj-service-section-two .sec-heading .service-button .service-btn:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
  -webkit-transform: translateY(-20px);
      -ms-transform: translateY(-20px);
          transform: translateY(-20px);
}
.tj-service-section-two .sec-heading .service-button .service-btn:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.tj-service-section-two .sec-heading .service-button .service-btn:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section-two {
    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) {
  .tj-service-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .tj-service-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-service-section-two .sec-heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tj-service-section-three {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section-three {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.service-wrapper-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 65px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.service-wrapper-two .service-left-content {
  max-width: 420px;
  width: 100%;
}
.service-wrapper-two .service-left-content .sec-heading {
  margin-bottom: 0;
}
.service-wrapper-two .service-left-content .service-button {
  margin-top: 30px;
}
.service-wrapper-two .service-left-content .service-shapes {
  max-width: 295px;
  width: 100%;
  opacity: 0.1;
  margin-top: 30px;
}
.service-wrapper-two .service-right-content .service-style-3 {
  max-width: 794px;
  width: 100%;
  margin-bottom: 45px;
}
.service-wrapper-two .service-right-content .service-style-3:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-wrapper-two .service-left-content {
    max-width: 345px;
  }
  .service-wrapper-two .service-right-content .service-style-3 {
    max-width: 740px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper-two .service-left-content {
    max-width: 320px;
  }
  .service-wrapper-two .service-right-content .service-style-3 {
    max-width: 590px;
  }
}
@media (max-width: 575px) {
  .service-wrapper-two {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 30px;
  }
}

.service-item {
  background-color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 50px 30px;
}
.service-item .service-icons {
  font-size: 86px;
  color: var(--tj-color-heading-primary);
  margin-bottom: 25px;
  line-height: 1;
}
.service-item .service-icons i {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.service-item .service-content .title {
  margin-bottom: 25px;
}
.service-item .service-content .desc {
  color: var(--tj-color-common-black-2);
}
.service-item .service-content .desc p:last-child {
  margin-bottom: 0;
}
.service-item .service-content .service-button {
  margin-top: 45px;
}
.service-item .service-overly {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: -1;
}
.service-item.style-4 {
  background: transparent;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.service-item:hover .service-overly {
  opacity: 0.35;
  visibility: visible;
}
.service-item:hover .service-icons i {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.service-item:hover.style-4 {
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item {
    padding: 30px 15px;
  }
  .service-item .service-icons {
    font-size: 65px;
    margin-bottom: 20px;
  }
  .service-item .service-content .title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item {
    padding: 30px 15px;
  }
  .service-item .service-icons {
    font-size: 60px;
    margin-bottom: 20px;
  }
  .service-item .service-content .title {
    margin-bottom: 15px;
  }
}

.service-style-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.service-style-2:not(:last-child) {
  margin-bottom: 30px;
}
.service-style-2 .service_inner {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-right-color: transparent;
  width: calc(100% - 45px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 218px;
  padding: 40px 95px 40px 40px;
}
.service-style-2:last-child {
  margin-bottom: 0;
}
.service-style-2 .service-title {
  width: calc(100% - 450px);
}
.service-style-2 .service-title .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 0;
}
.service-style-2 .service-title .title span {
  display: block;
  font-size: 88px;
  color: var(--tj-color-common-black-2);
  line-height: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.service-style-2 .service-title .title a {
  font-size: 88px;
  line-height: 1;
  color: var(--tj-color-common-white);
}
.service-style-2 .service-content .desc {
  max-width: 280px;
  width: 100%;
  color: var(--tj-color-grey-2);
}
.service-style-2 .service-content .desc p:last-child {
  margin-bottom: 0;
}
.service-style-2 .service-link {
  max-width: 45px;
  width: 100%;
  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;
  color: var(--tj-color-common-white);
  font-size: 14px;
  background: transparent;
  position: relative;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 0;
  z-index: 1;
}
.service-style-2 .service-link .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}
.service-style-2 .service-link .btn-icon i:first-child, .service-style-2 .service-link .btn-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  left: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  color: var(--tj-color-common-white);
}
.service-style-2 .service-link .btn-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  color: var(--tj-color-heading-primary);
}
.service-style-2 .service-link::before {
  position: absolute;
  content: "";
  width: 45px;
  right: -1px;
  bottom: -1px;
  height: 20%;
  border: 1px solid var(--tj-color-border-1);
  border-width: 0px 0 0px 1px;
  -webkit-transform: skew(-46deg);
      -ms-transform: skew(-46deg);
          transform: skew(-46deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  z-index: 1;
  background-color: var(--tj-color-theme-dark);
}
.service-style-2:hover .service-title .title span {
  color: var(--tj-color-common-white);
}
.service-style-2:hover .service-link {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.service-style-2:hover .service-link::before {
  border-color: var(--tj-color-theme-primary);
}
.service-style-2:hover .service-link .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.service-style-2:hover .service-link .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-style-2 .service_inner {
    padding: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-style-2 .service_inner {
    padding: 40px 30px;
  }
  .service-style-2 .service-title .title span {
    font-size: 74px;
  }
  .service-style-2 .service-title .title a {
    font-size: 74px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-style-2 .service_inner {
    padding: 40px 20px;
  }
  .service-style-2 .service-title .title span {
    font-size: 50px;
  }
  .service-style-2 .service-title .title a {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-style-2 .service_inner {
    padding: 40px 15px;
  }
  .service-style-2 .service-title .title span {
    font-size: 36px;
  }
  .service-style-2 .service-title .title a {
    font-size: 36px;
  }
  .service-style-2 .service-content .desc {
    max-width: 220px;
  }
}
@media (max-width: 575px) {
  .service-style-2 {
    overflow: hidden;
  }
  .service-style-2 .service_inner {
    width: 100%;
    border-right-color: rgba(255, 255, 255, 0.5);
    -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: 30px 15px;
  }
  .service-style-2::before {
    position: absolute;
    content: "";
    width: 31px;
    right: -1px;
    bottom: -1px;
    height: 13%;
    border: 1px solid var(--tj-color-border-1);
    border-width: 0px 0 0px 1px;
    -webkit-transform: skew(-46deg);
        -ms-transform: skew(-46deg);
            transform: skew(-46deg);
    -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
            transform-origin: right bottom;
    z-index: 1;
    background-color: var(--tj-color-theme-dark);
  }
  .service-style-2 .service-title {
    margin-bottom: 15px;
  }
  .service-style-2 .service-title .title span {
    font-size: 36px;
  }
  .service-style-2 .service-title .title a {
    font-size: 36px;
  }
  .service-style-2 .service-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 35px;
  }
  .service-style-2 .service-content .desc {
    max-width: 100%;
  }
  .service-style-2 .service-content .service-link {
    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: 45px;
    height: 45px;
    padding: 0px;
    -webkit-clip-path: initial;
            clip-path: initial;
    border: 1px solid var(--tj-color-border-1);
    border-radius: 50%;
  }
  .service-style-2 .service-content .service-link .btn-icon i {
    left: 0;
    top: 0;
  }
  .service-style-2 .service-content .service-link::before {
    display: none;
  }
  .service-style-2 .service-content .service-link:hover {
    border-color: var(--tj-color-theme-primary);
  }
}

.service-style-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--tj-color-border-1);
}
.service-style-3 .service-list {
  position: relative;
  border-right: 1px solid var(--tj-color-border-1);
  padding: 50px 40px 55px;
  z-index: 1;
}
.service-style-3 .service-list .number {
  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: 32px;
  height: 32px;
  font-family: var(--tj-ff-heading);
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-1);
  position: absolute;
  top: -16px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: var(--tj-color-common-white);
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.service-style-3 .service-list .service-icons {
  color: var(--tj-color-heading-primary);
  font-size: 100px;
  line-height: 1;
}
.service-style-3 .service-list .service-icons i {
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.service-style-3 .service-content {
  padding: 45px 30px;
}
.service-style-3 .service-content .title {
  margin-bottom: 15px;
}
.service-style-3 .service-content .desc p:last-child {
  margin-bottom: 0;
}
.service-style-3 .service-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 1px solid var(--tj-color-border-1);
  padding: 20px 30px;
}
.service-style-3 .service-button .link-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74px;
  height: 74px;
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
}
.service-style-3 .service-button .link-btn .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  overflow: hidden;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.service-style-3 .service-button .link-btn .btn-icon i:first-child, .service-style-3 .service-button .link-btn .btn-icon i:last-child {
  color: var(--tj-color-heading-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.service-style-3 .service-button .link-btn .btn-icon i:last-child {
  color: var(--tj-color-common-white);
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.service-style-3 .service-button .link-btn:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-dark);
  border-color: var(--tj-color-theme-dark);
}
.service-style-3 .service-button .link-btn:hover .btn-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.service-style-3 .service-button .link-btn:hover .btn-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.service-style-3:hover .service-list .number {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.service-style-3:hover .service-list .service-icons i {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-style-3 .service-list {
    padding: 40px 20px 45px;
  }
  .service-style-3 .service-list .service-icons {
    font-size: 70px;
  }
  .service-style-3 .service-button {
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-style-3 .service-list {
    padding: 35px 15px 45px;
  }
  .service-style-3 .service-list .service-icons {
    font-size: 60px;
  }
  .service-style-3 .service-content {
    padding: 30px 15px;
  }
  .service-style-3 .service-button {
    padding: 20px 15px;
  }
  .service-style-3 .service-button .link-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .service-style-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-style-3 .service-list {
    padding: 30px 15px 15px;
    border-right: none;
  }
  .service-style-3 .service-list .service-icons {
    font-size: 60px;
  }
  .service-style-3 .service-content {
    padding: 10px 15px;
  }
  .service-style-3 .service-button {
    padding: 20px 15px;
    border-left: none;
  }
  .service-style-3 .service-button .link-btn {
    width: 60px;
    height: 60px;
    font-size: 20px;
  }
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Service CSS
----------------------------------------*/
.tj-service-details {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-details {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-details {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.service-details-area .deails-group-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
}
.service-details-area .deails-group-images img {
  max-width: 412px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-area .deails-group-images img {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-details-area .deails-group-images img {
    max-width: 290px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-area .deails-group-images img {
    max-width: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-area .deails-group-images img {
    max-width: 240px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-details-area .deails-group-images {
    margin-bottom: 35px;
  }
}
.service-details-area .check-list-one {
  margin-bottom: 40px;
}
.service-details-area .blog-details-prev-next {
  margin-bottom: 0;
}

.tj-service-sidebar {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-sidebar {
    padding-left: 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-service-sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}

.service-details-content {
  margin-bottom: 40px;
}
.service-details-content .details-image {
  margin-bottom: 35px;
}
.service-details-content .title {
  margin-bottom: 25px;
  line-height: 1.1;
}
.service-details-content .desc p {
  margin-bottom: 20px;
}
.service-details-content .desc p:last-child {
  margin-bottom: 0;
}

.service-details-cta {
  margin-bottom: 60px;
}
.service-details-cta .title {
  margin-bottom: 20px;
}
.service-details-cta .desc {
  margin-bottom: 30px;
}
.service-details-cta .desc p:last-child {
  margin-bottom: 0;
}
.service-details-cta .deails-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-details-cta {
    margin-bottom: 40px;
  }
}

.service-details-item {
  background-color: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  padding: 30px 15px 25px 20px;
  max-width: 275px;
  width: 100%;
}
.service-details-item .number {
  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: 33px;
  height: 33px;
  font-size: 18px;
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 25px;
}
.service-details-item .title {
  margin-bottom: 20px;
}
.service-details-item .desc {
  margin-bottom: 0;
}
.service-details-item .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-item {
    max-width: 235px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-item {
    max-width: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-item {
    max-width: 250px;
    padding: 30px 15px 15px 15px;
  }
}
@media (max-width: 575px) {
  .service-details-item {
    max-width: 100%;
  }
}

.service-details-faq {
  margin-bottom: 40px;
}
.service-details-faq .title {
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .service-details-faq .title {
    margin-bottom: 15px;
  }
}
.service-details-faq .tj-faq {
  border: 1px solid var(--tj-color-border-1);
}
.service-details-faq .accordion-item {
  margin-bottom: 0;
}
.service-details-faq .accordion-item .faq-title {
  font-size: 22px;
  padding: 24px 55px 20px 30px;
}
.service-details-faq .accordion-item .faq-title:before {
  top: 30px;
  right: 30px;
  width: auto;
  height: auto;
  border: none;
}
.service-details-faq .accordion-item .faq-title:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.service-details-faq .accordion-item .faq-title:not(.collapsed):before {
  content: "\f068";
  background-color: transparent;
  border-color: transparent;
}
@media (max-width: 575px) {
  .service-details-faq .accordion-item .faq-title {
    padding: 16px 55px 12px 15px;
  }
  .service-details-faq .accordion-item .faq-title::before {
    top: 25px;
    right: 15px;
  }
}
.service-details-faq .accordion-item .faq-text {
  padding: 15px 10px 25px 30px;
}
@media (max-width: 575px) {
  .service-details-faq .accordion-item .faq-text {
    padding: 10px 10px 25px 15px;
  }
}

.check-list-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.check-list-one ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  margin-bottom: 16px;
}
.check-list-one ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 12px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
}

.tj-service_widget {
  position: relative;
  background-color: var(--tj-color-theme-bg);
  padding: 30px;
  margin-bottom: 30px;
  z-index: 3;
}
.tj-service_widget .widget-title {
  position: relative;
  color: var(--tj-color-heading-primary);
  margin-bottom: 20px;
  z-index: 1;
}
.tj-service_widget.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-service_widget.widget_categories ul li {
  margin-bottom: 15px;
}
.tj-service_widget.widget_categories ul li:last-child {
  margin-bottom: 0;
}
.tj-service_widget.widget_categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-heading-primary);
  position: relative;
  font-size: 17px;
  background: var(--tj-color-common-white);
  padding: 20px 25px 16px;
  z-index: 1;
}
.tj-service_widget.widget_categories ul li a i {
  font-size: 12px;
}
.tj-service_widget.widget_categories ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-service_widget {
    padding: 30px 15px;
  }
}

.widget_feature_item {
  padding: 20px;
}
.widget_feature_item .feature-box {
  position: relative;
  background: var(--tj-color-theme-dark);
  overflow: hidden;
}
.widget_feature_item .feature-box .feature-content {
  padding: 35px 30px 12px;
}
.widget_feature_item .feature-box .feature-content .title {
  font-size: 115px;
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget_feature_item .feature-box .feature-content .title {
    font-size: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget_feature_item .feature-box .feature-content .title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget_feature_item .feature-box .feature-content .title {
    font-size: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .widget_feature_item .feature-box .feature-content .title {
    font-size: 70px;
  }
}
@media (max-width: 575px) {
  .widget_feature_item .feature-box .feature-content .title {
    font-size: 65px;
    margin-bottom: 10px;
  }
}
.widget_feature_item .feature-box .feature-content .sub-title {
  display: block;
  font-family: var(--tj-ff-heading);
  font-size: 28px;
  color: var(--tj-color-common-white);
  margin-bottom: 15px;
  line-height: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .widget_feature_item .feature-box .feature-content .sub-title {
    font-size: 22px;
  }
}
.widget_feature_item .feature-box .feature-content .feature-contact {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  padding: 7px 12px 5px;
  border-radius: 50px;
  line-height: 1;
}
.widget_feature_item .feature-box .feature-content .feature-contact span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 14px;
  border: 1px solid var(--tj-color-heading-primary);
  border-radius: 50%;
}
.widget_feature_item .feature-box .feature-content .feature-contact span i {
  position: relative;
  top: 1px;
  left: -1px;
}
.widget_feature_item .feature-box .feature-content .feature-contact .link {
  font-size: 28px;
  font-family: var(--tj-ff-heading);
  line-height: 1;
}
.widget_feature_item .feature-images {
  position: relative;
  left: 75px;
  bottom: -20px;
  max-width: 350px;
  margin-left: auto;
  width: 100%;
  z-index: 1;
}
.widget_feature_item .feature-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 5px;
  left: -10px;
  background: var(--tj-color-theme-primary);
  border-radius: 180px 180px 0px 180px;
  z-index: -1;
}
.widget_feature_item .feature-images img {
  border-radius: 180px 180px 0px 180px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .widget_feature_item {
    padding: 20px 15px;
  }
  .widget_feature_item .feature-box .feature-content {
    padding: 30px 15px 12px;
  }
}

/* !END: Theme Service CSS */
/**----------------------------------------
START: Theme Process CSS
----------------------------------------*/
.tj-process-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tj-process-section .sec-heading {
  max-width: 475px;
  width: 100%;
  margin-bottom: 0;
}
    .tj-process-section .sec-heading .sub-title {
        color: var(--tj-color-heading-primary);
    }
    .tj-process-section .sec-heading .sec-title {
        color: var(--tj-color-heading-primary);
    }
    .tj-process-section .sec-heading .desc {
        color: var(--tj-color-heading-primary);
        margin-top: 25px;
    }
.tj-process-section .sec-heading .desc p:last-child {
  margin-bottom: 0;
}
.tj-process-section .sec-heading .process-button {
  margin-top: 40px;
}
.tj-process-section .process-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 104px;
}
.tj-process-section .process-sec-bg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-process-section .process-content-area {
    gap: 35px;
  }
  .tj-process-section .sec-heading {
    max-width: 430px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tj-process-section .process-content-area {
    gap: 30px;
  }
  .tj-process-section .sec-heading {
    max-width: 370px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-process-section .process-content-area {
    gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .tj-process-section .sec-heading {
    max-width: 100%;
  }
  .tj-process-section .sec-heading .desc {
    margin-top: 15px;
  }
  .tj-process-section .sec-heading .process-button {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  .tj-process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-process-section .process-content-area {
    gap: 60px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .tj-process-section .sec-heading {
    max-width: 100%;
  }
  .tj-process-section .sec-heading .desc {
    margin-top: 15px;
  }
  .tj-process-section .sec-heading .process-button {
    margin-top: 25px;
  }
}

.process-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  max-width: 646px;
  width: 100%;
}
.process-wrapper .process-item:first-child {
  max-width: 100%;
  width: 100%;
  overflow: visible;
  padding: 15px 30px;
}
.process-wrapper .process-item:first-child .process-content {
  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;
}
.process-wrapper .process-item:first-child .process-content .process-text {
  max-width: 200px;
  width: 100%;
}
.process-wrapper .process-item:first-child .process-content .process-text .title {
  margin-bottom: 10px;
}
.process-wrapper .process-item:first-child .process-content .desc {
  max-width: 295px;
  width: 100%;
}
.process-wrapper .process-item:first-child .sub-title {
  position: absolute;
  top: -11px;
  left: 95px;
}
.process-wrapper .process-item:first-child .process-arrow {
  position: absolute;
  bottom: -26px;
  left: 130px;
  background: var(--tj-color-theme-dark);
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.process-wrapper .process-item:first-child .process-arrow i {
  display: inline-block;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 575px) {
  .process-wrapper .process-item:first-child .process-arrow {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .process-wrapper .process-item:first-child .process-content .process-text {
    max-width: 175px;
  }
  .process-wrapper .process-item:first-child .process-content .desc {
    max-width: 275px;
  }
}
@media (max-width: 575px) {
  .process-wrapper .process-item:first-child {
    padding: 30px 30px 45px;
  }
}
.process-wrapper .process-item:nth-child(2) .process-arrow {
  position: absolute;
  right: -26px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-135deg);
      -ms-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
}
.process-wrapper .process-item:nth-child(2) .process-arrow i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 575px) {
  .process-wrapper .process-item:nth-child(2) .process-arrow {
    left: 50%;
    -webkit-transform: translateX(-50%) rotate(-45deg);
        -ms-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
    bottom: -26px;
    top: auto;
    right: auto;
  }
}
.process-wrapper .process-item:nth-child(3) .process-arrow {
  position: absolute;
  left: 50%;
  top: -26px;
  -webkit-transform: translateX(-50%) rotate(135deg);
      -ms-transform: translateX(-50%) rotate(135deg);
          transform: translateX(-50%) rotate(135deg);
  border-bottom: 1px solid transparent;
  border-left: 1px solid transparent;
}
.process-wrapper .process-item:nth-child(3) .process-arrow i {
  display: inline-block;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media (max-width: 575px) {
  .process-wrapper .process-item:nth-child(3) .process-arrow {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-wrapper {
    max-width: 535px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .process-wrapper {
    max-width: 100%;
  }
  .process-wrapper .process-button {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 100%;
  }
  .process-wrapper .process-button {
    width: 100%;
  }
}

.process-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid var(--tj-color-heading-primary);
    max-width: calc(50% - 15px);
    position: relative;
    padding: 40px 30px;
    z-index: 2;
}
.process-item .sub-title {
  display: inline-block;
  font-size: 12px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-regular);
  text-transform: uppercase;
  border-radius: 40px;
  padding: 6px 8px 4px;
  line-height: 1;
}
    .process-item .process-content .process-text .number {
        display: inline-block;
        font-size: 18px;
        color: var(--tj-color-heading-primary);
        font-family: var(--tj-ff-heading);
        font-weight: var(--tj-fw-regular);
        margin-bottom: 15px;
        line-height: 1;
    }
    .process-item .process-content .process-text .title {
        color: var(--tj-color-heading-primary);
        
        margin-bottom: 40px;
    }
    .process-item .process-content .desc {
        color: var(--tj-color-heading-primary);
    }
.process-item .process-content .desc p:last-child {
  margin-bottom: 0;
}
    .process-item .process-arrow {
        display: -webkit-inline-box;
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        line-height: 1;
        color: #ffffff;
        border: 1px solid var(--tj-color-heading-primary);
        background-color: var(--tj-color-theme-dark);
        border-radius: 50%;
    }
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item .process-content .process-text .title {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .process-item {
    padding: 30px 15px;
  }
  .process-item .process-content .process-text .title {
    margin-bottom: 15px;
  }
}
@media (max-width: 575px) {
  .process-item {
    padding: 30px 15px 45px;
    max-width: 100%;
  }
  .process-item .process-content .process-text .title {
    margin-bottom: 15px;
  }
}

/* !END: Theme Process CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.tj-marquee-section {
  position: relative;
  padding-top: 25px;
  padding-bottom: 23px;
  background-color: var(--tj-color-theme-primary);
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-marquee-section {
    padding-top: 22px;
    padding-bottom: 16px;
  }
}

.tj-marquee-section-three {
  padding-top: 20px;
  padding-bottom: 12px;
  background-color: var(--tj-color-common-white);
  border-bottom: 1px solid var(--tj-color-border-1);
}

.marquee-wrapper .marquee-slider .marquee-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.marquee-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  padding-right: 30px;
}
.marquee-item .marquee-title .text {
  margin-bottom: 0;
}
.marquee-item .marquee-icons {
  position: relative;
  top: 4px;
  color: var(--tj-color-heading-primary);
  font-size: 18px;
}
.marquee-item .marquee-icons i {
  -webkit-animation: rotateImg 6s infinite linear;
          animation: rotateImg 6s infinite linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item {
    gap: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 575px) {
  .marquee-item {
    gap: 20px;
    padding-right: 20px;
  }
  .marquee-item .marquee-icons {
    font-size: 16px;
    top: 1px;
  }
}

.marquee-style-3 {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-right: 30px;
}
.marquee-style-3 .marquee-title .text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px var(--tj-color-heading-primary);
  margin-bottom: 0;
}
.marquee-style-3 .marquee-icons {
  color: var(--tj-color-heading-primary);
  font-size: 30px;
}
.marquee-style-3 .marquee-icons i {
  -webkit-animation: rotateImg 6s infinite linear;
          animation: rotateImg 6s infinite linear;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-style-3 {
    gap: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .marquee-style-3 {
    gap: 20px;
    padding-right: 20px;
  }
  .marquee-style-3 .marquee-icons {
    top: 1px;
    font-size: 20px;
  }
}

@-webkit-keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}

@keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
            transform: rotate(-360deg);
  }
}
/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.tj-project-section {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.tj-project-section .sec-heading {
  max-width: 500px;
}
.tj-project-section .project-pagination {
  text-align: center;
  margin-top: 60px;
  line-height: 1;
}
.tj-project-section .project-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-heading-primary);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.tj-project-section .project-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.tj-project-section .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.tj-project-section .project-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-project-section .project-pagination {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section .project-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.tj-project-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-dark);
}
.tj-project-section-two .sec-heading {
  max-width: 465px;
}
.tj-project-section-two .sec-heading .sub-title {
  color: var(--tj-color-common-white);
}
.tj-project-section-two .sec-heading .sec-title {
  color: var(--tj-color-common-white);
}
.tj-project-section-two.project-inner {
  padding-bottom: 120px;
  background-color: var(--tj-color-common-white);
}
.tj-project-section-two.project-inner .page-pagination ul {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section-two.project-inner {
    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-project-section-two.project-inner {
    padding-bottom: 80px;
  }
  .tj-project-section-two.project-inner .page-pagination {
    margin-top: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section-two {
    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-project-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.tj-project-section-three {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 2;
}
.tj-project-section-three .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-project-section-three .sec-heading .sec-text .sub-title {
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-border-2);
}
.tj-project-section-three .sec-heading .sec-text .sec-title {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section-three {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-project-section-three .sec-heading {
    margin-bottom: 20px;
  }
}

.project-slider-two .project-pagination {
  text-align: center;
  margin-top: 30px;
  line-height: 1;
}
.project-slider-two .project-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-common-white);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.project-slider-two .project-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.project-slider-two .project-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.project-slider-two .project-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.project-slider-two .project-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.project-slider-two .project-navigation .slider-next,
.project-slider-two .project-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 10px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  position: absolute;
  top: 39%;
  left: 20px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.project-slider-two .project-navigation .slider-next .anim-icon,
.project-slider-two .project-navigation .slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.project-slider-two .project-navigation .slider-next .anim-icon i:first-child, .project-slider-two .project-navigation .slider-next .anim-icon i:last-child,
.project-slider-two .project-navigation .slider-prev .anim-icon i:first-child,
.project-slider-two .project-navigation .slider-prev .anim-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  color: var(--tj-color-heading-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.project-slider-two .project-navigation .slider-next .anim-icon i:last-child,
.project-slider-two .project-navigation .slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.project-slider-two .project-navigation .slider-next:hover,
.project-slider-two .project-navigation .slider-prev:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.project-slider-two .project-navigation .slider-next:hover .anim-icon i:first-child,
.project-slider-two .project-navigation .slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.project-slider-two .project-navigation .slider-next:hover .anim-icon i:last-child,
.project-slider-two .project-navigation .slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.project-slider-two .project-navigation .slider-next {
  left: auto;
  right: 20px;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.project-slider-two .project-navigation .slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.project-slider-two .project-navigation .slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-slider-two .project-navigation .slider-next,
  .project-slider-two .project-navigation .slider-prev {
    top: 30%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-slider-two .project-navigation .slider-next,
  .project-slider-two .project-navigation .slider-prev {
    top: 24%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-slider-two .project-navigation .slider-next,
  .project-slider-two .project-navigation .slider-prev {
    top: 25%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-slider-two .project-pagination {
    margin-top: 30px;
  }
  .project-slider-two .project-navigation .slider-next,
  .project-slider-two .project-navigation .slider-prev {
    display: none;
  }
}

.project-wrapper-three {
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.project_list_wrap {
  max-width: 645px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
.project_list_wrap .project_item {
  position: relative;
  text-align: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  width: 100%;
  border-radius: 0px;
  padding: 35px 0 32px;
  cursor: pointer;
  z-index: 1;
}
.project_list_wrap .project_item::before {
  position: absolute;
  content: "\e92f";
  font-family: "conix-icons";
  font-size: 12px;
  top: 40px;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: var(--tj-color-common-white);
}
.project_list_wrap .project_item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: var(--tj-color-common-white);
  z-index: 2;
  -webkit-transition: 0.7s;
  transition: 0.7s;
}
.project_list_wrap .project_item .title {
  display: block;
  color: rgba(255, 255, 255, 0.15);
  font-family: var(--tj-ff-heading);
  font-size: 36px;
  line-height: 1;
  -webkit-transition: none;
  transition: none;
}
.project_list_wrap .project_item .desc {
  position: absolute;
  bottom: 30px;
  left: 0;
  color: var(--tj-color-grey-1);
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
}
.project_list_wrap .project_item.active {
  background-color: transparent;
}
.project_list_wrap .project_item.active::before {
  opacity: 1;
  visibility: visible;
}
.project_list_wrap .project_item.active::after {
  width: 100%;
}
.project_list_wrap .project_item.active .title {
  color: var(--tj-color-common-white);
  margin-bottom: 60px;
}
.project_list_wrap .project_item.active .desc {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project_list_wrap .project_item {
    padding: 25px 0 23px;
  }
  .project_list_wrap .project_item::before {
    top: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project_list_wrap .project_item {
    padding: 24px 0 22px;
  }
  .project_list_wrap .project_item::before {
    top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project_list_wrap {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project_list_wrap {
    max-width: 100%;
  }
  .project_list_wrap .project_item {
    padding: 24px 0 22px;
  }
  .project_list_wrap .project_item::before {
    top: 30px;
  }
  .project_list_wrap .project_item .title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .project_list_wrap {
    max-width: 100%;
  }
  .project_list_wrap .project_item {
    padding: 22px 0 20px;
  }
  .project_list_wrap .project_item::before {
    top: 25px;
    font-size: 10px;
  }
  .project_list_wrap .project_item .title {
    font-size: 22px;
  }
  .project_list_wrap .project_item.active .title {
    margin-bottom: 90px;
  }
}

.project_list_img_wrap .project_list_img {
  max-width: 535px;
  width: 100%;
  -webkit-clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
          clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%, 0 8%);
}
.project_list_img_wrap .project_list_img img {
  width: 100%;
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease;
  transition: transform 0.6s ease, opacity 0.6s ease, -webkit-transform 0.6s ease;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1); /* Default full size */
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project_list_img_wrap {
    margin-top: 50px;
  }
  .project_list_img_wrap .project_list_img {
    max-width: 100%;
  }
}

.project-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-border-1);
  padding: 15px 15px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.project-item .project-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  max-width: 365px;
  width: 100%;
  padding: 35px 35px;
}
.project-item .project-content .project-text .sub-title {
  display: inline-block;
  font-size: 12px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  text-transform: uppercase;
  border-radius: 40px;
  padding: 3px 8px 1px;
  margin-bottom: 25px;
}
.project-item .project-content .project-text .title {
  margin-bottom: 0;
}
.project-item .project-content .project-text .project-button {
  margin-top: 30px;
}
.project-item .project-content .project-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
}
.project-item .project-content .project-author .author-icons {
  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;
  font-size: 30px;
  color: var(--tj-color-grey-3);
  background-color: var(--tj-color-theme-dark);
  border-radius: 50%;
}
.project-item .project-content .project-author .author-icons i {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.project-item .project-content .project-author .author-header .title {
  margin-bottom: 0;
}
.project-item .project-content .project-author .author-header .sub-title {
  display: inline-block;
  font-size: 14px;
}
.project-item .project-images {
  position: relative;
  overflow: hidden;
  max-width: 405px;
  width: 100%;
}
.project-item .project-images a {
  display: inline-block;
  width: 100%;
}
.project-item .project-images img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.project-item:hover .project-images img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.project-item:hover .author-icons i {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-item .project-content {
    max-width: 355px;
  }
  .project-item .project-images {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-item .project-content {
    max-width: 315px;
    padding: 35px 15px;
  }
  .project-item .project-images {
    max-width: 280px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-item .project-content {
    max-width: 315px;
    padding: 30px 15px;
  }
  .project-item .project-content .project-text .project-button {
    margin-top: 20px;
  }
  .project-item .project-images {
    max-width: 280px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-item .project-content {
    max-width: 100%;
    padding: 30px 0px;
  }
  .project-item .project-content .project-text .project-button {
    margin-top: 20px;
  }
  .project-item .project-content .project-text .sub-title {
    margin-bottom: 15px;
  }
  .project-item .project-images {
    max-width: 100%;
  }
  .project-item .project-images img {
    height: 480px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .project-item .project-content {
    max-width: 100%;
    padding: 30px 0px;
  }
  .project-item .project-content .project-text .project-button {
    margin-top: 20px;
  }
  .project-item .project-content .project-text .sub-title {
    margin-bottom: 15px;
  }
  .project-item .project-images {
    max-width: 100%;
  }
  .project-item .project-images img {
    min-height: 350px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.project-style-2 {
  position: relative;
  text-align: center;
  overflow: hidden;
  z-index: 2;
}
.project-style-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 19, 19, 0)), to(var(--tj-color-theme-dark)));
  background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, var(--tj-color-theme-dark) 114%);
}
.project-style-2 .project-images a {
  display: inline-block;
  width: 100%;
}
.project-style-2 .project-images a img {
  width: 100%;
}
.project-style-2 .project-content {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  max-width: 90%;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  text-align: center;
}
.project-style-2 .project-content .sub-title {
  display: inline-block;
  position: relative;
  top: -14px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 40px;
  padding: 5px 8px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  line-height: 1;
}
.project-style-2 .project-content .project-text {
  position: relative;
  max-width: 325px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 2px 15px 20px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}
.project-style-2 .project-content .project-text .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.project-style-2 .project-content .project-text .project-button {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.project-style-2 .project-content .project-text .project-button .text-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--tj-color-common-white);
}
.project-style-2 .project-content .project-text .project-button .text-button .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.project-style-2 .project-content .project-text .project-button .text-button i {
  color: var(--tj-color-common-white);
}
.project-style-2 .project-content .project-text .project-button:hover {
  color: var(--tj-color-common-white);
}
.project-style-2 .project-content .project-text .project-button:hover i {
  color: var(--tj-color-common-white);
}
.project-style-2 .project-content .project-text .project-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.project-style-2.style-4 {
  margin-bottom: 30px;
}
.project-style-2.style-4 .project-content {
  bottom: 10px;
  max-width: 95%;
}
.project-style-2:hover .project-images a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.project-style-2:hover .project-content .sub-title {
  opacity: 1;
  visibility: visible;
}
.project-style-2:hover .project-content .project-text {
  padding: 2px 15px 60px;
}
.project-style-2:hover .project-content .project-text .project-button {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.tj-project-details {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-details {
    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-project-details {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.project-details-area .blog-details-prev-next {
  margin-bottom: 0;
}

.project-details-cta .title {
  margin-bottom: 15px;
}
.project-details-cta .desc {
  margin-bottom: 35px;
}
.project-details-cta .desc p:last-child {
  margin-bottom: 0;
}
.project-details-cta .deails-group-images .lg-images {
  margin-bottom: 30px;
}
.project-details-cta .deails-group-images .project-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 55px;
}
.project-details-cta .deails-group-images .project-images img {
  max-width: 412px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-details-cta .deails-group-images .project-images img {
    max-width: 353px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-details-cta .deails-group-images .project-images img {
    max-width: 292px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-details-cta .deails-group-images .project-images {
    margin-bottom: 35px;
  }
  .project-details-cta .deails-group-images .project-images img {
    max-width: 333px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-details-cta .deails-group-images .project-images {
    margin-bottom: 35px;
  }
  .project-details-cta .deails-group-images .project-images img {
    max-width: 243px;
  }
}
@media (max-width: 575px) {
  .project-details-cta .deails-group-images .project-images {
    margin-bottom: 35px;
  }
  .project-details-cta .deails-group-images .project-images img {
    max-width: 100%;
  }
}

.tj-project-sidebar {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-sidebar {
    padding-left: 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-project-sidebar {
    padding-left: 0;
    margin-top: 50px;
  }
}

.project-details-item {
  margin-bottom: 50px;
}
.project-details-item .details-image {
  margin-bottom: 35px;
}
.project-details-item .title {
  margin-bottom: 25px;
  line-height: 1.1;
}
.project-details-item .desc p {
  margin-bottom: 20px;
}
.project-details-item .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) {
  .project-details-item {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .project-details-item {
    margin-bottom: 40px;
  }
  .project-details-item .title {
    margin-bottom: 15px;
  }
}

.details-check-box .title {
  margin-bottom: 15px;
}
.details-check-box .desc p:last-child {
  margin-bottom: 0;
}
.details-check-box .check-list-one {
  margin-top: 35px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .details-check-box .check-list-one {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

.tj-project_widget {
  position: relative;
  background-color: var(--tj-color-theme-bg);
  padding: 30px;
  margin-bottom: 30px;
  z-index: 3;
}
.tj-project_widget .widget-title {
  position: relative;
  color: var(--tj-color-heading-primary);
  margin-bottom: 20px;
  z-index: 1;
}
.tj-project_widget.widget_infos .infos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--tj-color-border-1);
}
.tj-project_widget.widget_infos .infos-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tj-project_widget.widget_infos .infos-item .project-icons {
  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: 40px;
  height: 40px;
  font-size: 20px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  position: relative;
  top: 2px;
}
.tj-project_widget.widget_infos .infos-item .project-text .sub-title {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
}
.tj-project_widget.widget_infos .infos-item .project-text .title {
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-project_widget {
    padding: 30px 15px;
  }
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Client CSS
----------------------------------------*/
.tj-client-section .sec-heading .sec-title {
  letter-spacing: 0.17em;
}
@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-client-section {
    padding-bottom: 80px;
  }
}

.tj-client-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: hidden;
}
.tj-client-section-two .sec-heading.style-2 {
  position: relative;
  z-index: 1;
}
.tj-client-section-two .sec-heading.style-2::before {
  position: absolute;
  content: "";
  top: 12px;
  left: -35%;
  width: 100%;
  height: 1px;
  background: var(--tj-color-border-1);
}
.tj-client-section-two .sec-heading.style-2::after {
  position: absolute;
  content: "";
  top: 12px;
  right: -35%;
  width: 100%;
  height: 1px;
  background: var(--tj-color-border-1);
}
.tj-client-section-two .sec-heading.style-2 .sub-title {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.tj-client-section-two.client-inner {
  padding-top: 90px;
}
.tj-client-section-two.client-inner-two {
  padding-top: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-client-section-two {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tj-client-section-two.client-inner {
    padding-top: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-client-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-client-section-two.client-inner {
    padding-top: 50px;
  }
}

.client-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--tj-color-heading-primary);
  margin: -1px -1px 0 0;
  border-width: 1px 1px 0 0;
  background-color: var(--tj-color-common-white);
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .client-wrapper {
    margin: 0;
    border: none;
  }
}

.client-wrapper-two {
  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;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .client-wrapper-two {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.client-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 217px;
  width: 100%;
  min-height: 215px;
  border: 1px solid var(--tj-color-heading-primary);
  margin: -1px -1px 0px 0;
  border-width: 1px 1px 1px 1px;
  padding: 15px;
}
.client-item .anim-logo {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.client-item .anim-logo img:first-child, .client-item .anim-logo img:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.client-item .anim-logo img:last-child {
  position: absolute;
  -webkit-transform: translateY(150%);
      -ms-transform: translateY(150%);
          transform: translateY(150%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .client-item {
    max-width: 187px;
    min-height: 187px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-item {
    max-width: 157px;
    min-height: 157px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-item {
    max-width: 233px;
    min-height: 233px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .client-item {
    max-width: 173px;
    min-height: 173px;
  }
}
@media (max-width: 575px) {
  .client-item {
    max-width: 50%;
    min-height: 164px;
  }
}
.client-item:hover .anim-logo img:first-child {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}
.client-item:hover .anim-logo img:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.client-style-3 {
  margin-left: -30px;
}
.client-style-3:first-child {
  margin-left: 0;
}
.client-style-3 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: 240px;
  height: 240px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
}
.client-style-3 a img {
  opacity: 0.5;
}
.client-style-3 a .anim-logo {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.client-style-3 a .anim-logo img:first-child, .client-style-3 a .anim-logo img:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.client-style-3 a .anim-logo img:last-child {
  position: absolute;
  -webkit-transform: translateY(150%);
      -ms-transform: translateY(150%);
          transform: translateY(150%);
}
.client-style-3:hover a {
  border-color: var(--tj-color-heading-primary);
}
.client-style-3:hover a img {
  opacity: 1;
}
.client-style-3:hover a .anim-logo img:first-child {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}
.client-style-3:hover a .anim-logo img:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .client-style-3 a {
    width: 210px;
    height: 210px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-style-3 a {
    width: 180px;
    height: 180px;
  }
  .client-style-3 a img {
    max-width: 120px;
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .client-style-3 {
    margin-left: 0;
  }
  .client-style-3 a {
    width: 220px;
    height: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .client-style-3 {
    margin-left: 0;
  }
  .client-style-3 a {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 575px) {
  .client-style-3 {
    margin-left: 0;
  }
  .client-style-3 a {
    width: 165px;
    height: 165px;
  }
  .client-style-3 a img {
    max-width: 125px;
    width: 100%;
  }
}

/* !END: Theme Client CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  position: relative;
  padding-top: 200px;
  padding-bottom: 120px;
  margin-top: -110px;
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section {
    padding-top: 180px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-testimonial-section {
    padding-top: 55px;
    padding-bottom: 80px;
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .tj-testimonial-section {
    padding-top: 65px;
    padding-bottom: 80px;
    margin-top: 0px;
  }
}

.tj-testimonial-section-three {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-bg);
  overflow: hidden;
}
.tj-testimonial-section-three .test-container {
  margin-left: calc((100% - 1320px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
  padding-right: 0;
}
.tj-testimonial-section-three .sec-heading {
  max-width: 310px;
  width: 100%;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}
.tj-testimonial-section-three .testimonial-slider-wrapper {
  max-width: 1320px;
  width: 100%;
}
.tj-testimonial-section-three .testimonial-slider-wrapper .testimonial-slider-three {
  padding-top: 50px;
}
.tj-testimonial-section-three .testimonial-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 40px;
}
.tj-testimonial-section-three .testimonial-navigation .slider-next,
.tj-testimonial-section-three .testimonial-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.tj-testimonial-section-three .testimonial-navigation .slider-next .anim-icon,
.tj-testimonial-section-three .testimonial-navigation .slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next .anim-icon i:first-child, .tj-testimonial-section-three .testimonial-navigation .slider-next .anim-icon i:last-child,
.tj-testimonial-section-three .testimonial-navigation .slider-prev .anim-icon i:first-child,
.tj-testimonial-section-three .testimonial-navigation .slider-prev .anim-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-testimonial-section-three .testimonial-navigation .slider-next .anim-icon i:last-child,
.tj-testimonial-section-three .testimonial-navigation .slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next:hover,
.tj-testimonial-section-three .testimonial-navigation .slider-prev:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next:hover .anim-icon i:first-child,
.tj-testimonial-section-three .testimonial-navigation .slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next:hover .anim-icon i:last-child,
.tj-testimonial-section-three .testimonial-navigation .slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next {
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.tj-testimonial-section-three .testimonial-navigation .slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-testimonial-section-three .test-container {
    margin-left: calc((100% - 1140px) / 2);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section-three {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .tj-testimonial-section-three .test-container {
    margin-left: calc((100% - 960px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-testimonial-section-three {
    padding-top: 80px;
    padding-bottom: 155px;
  }
  .tj-testimonial-section-three .test-container {
    margin-left: calc((100% - 720px) / 2);
  }
  .tj-testimonial-section-three .sec-heading {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-testimonial-section-three {
    padding-top: 80px;
    padding-bottom: 155px;
  }
  .tj-testimonial-section-three .test-container {
    margin-left: calc((100% - 540px) / 2);
    padding-right: 30px;
  }
  .tj-testimonial-section-three .sec-heading {
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .tj-testimonial-section-three {
    padding-top: 80px;
    padding-bottom: 155px;
  }
  .tj-testimonial-section-three .test-container {
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
  .tj-testimonial-section-three .sec-heading {
    max-width: 100%;
  }
}

.tj-testimonial-two {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-bg);
}
.tj-testimonial-two .sec-heading {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-two {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-testimonial-two .sec-heading {
    margin-bottom: 30px;
  }
}

.testimonial-slider-two {
  padding-top: 50px;
  padding-bottom: 40px;
}
.testimonial-slider-two .testimonial-pagination {
  text-align: center;
  margin-top: 25px;
  line-height: 1;
}
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-heading-primary);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.testimonial-slider-two .testimonial-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-slider-two .testimonial-pagination {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-slider-two {
    padding-bottom: 0px;
  }
}

.testimonial-wrapper .testimonial-slider .testimonial-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  position: absolute;
  top: 39%;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next .anim-icon,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next .anim-icon i:first-child, .testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next .anim-icon i:last-child,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev .anim-icon i:first-child,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev .anim-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next .anim-icon i:last-child,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next:hover,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next:hover .anim-icon i:first-child,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next:hover .anim-icon i:last-child,
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next {
  left: auto;
  right: 0;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.testimonial-wrapper .testimonial-slider .testimonial-navigation .slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.testimonial-wrapper .testimonial-slider .testimonial-pagination {
  text-align: center;
  margin-top: 60px;
  line-height: 1;
}
.testimonial-wrapper .testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-heading-primary);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.testimonial-wrapper .testimonial-slider .testimonial-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.testimonial-wrapper .testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.testimonial-wrapper .testimonial-slider .testimonial-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.testimonial-wrapper-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 25px;
  position: relative;
  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) {
  .testimonial-wrapper-three {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonial-wrapper-three .testimonial-navigation {
    position: absolute;
    bottom: -75px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: 0;
  }
}

.testimonial-item {
  max-width: 785px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.testimonial-item .testimonial-quote {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 202px;
  height: 106px;
  font-size: 40px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  position: relative;
  top: 55px;
  border-radius: 50%;
  -webkit-transform: rotate(-34.21deg);
      -ms-transform: rotate(-34.21deg);
          transform: rotate(-34.21deg);
  z-index: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.testimonial-item .testimonial-quote::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -8px;
  left: 0px;
  border-radius: 50%;
  border: 1px solid var(--tj-color-heading-primary);
}
.testimonial-item .testimonial-quote i {
  display: inline-block;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
}
.testimonial-item .desc {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-heading-primary);
  font-size: 24px;
  padding: 115px 40px 100px;
  line-height: 1.4;
}
.testimonial-item .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-item .testimonial-author {
  max-width: 175px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -45px;
}
.testimonial-item .testimonial-author .author-images {
  width: 86px;
  height: 86px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  z-index: 1;
}
.testimonial-item .testimonial-author .author-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid var(--tj-color-theme-primary);
  border-radius: 100%;
}
.testimonial-item .testimonial-author .author-header .title {
  margin-bottom: 0;
}
.testimonial-item .testimonial-author .author-header .sub-title {
  display: inline-block;
  font-size: 14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item .desc {
    font-size: 22px;
    padding: 100px 25px 85px;
  }
  .testimonial-item .testimonial-quote {
    width: 160px;
    height: 90px;
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item .desc {
    font-size: 20px;
    padding: 90px 20px 75px;
  }
  .testimonial-item .testimonial-quote {
    width: 155px;
    height: 85px;
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .testimonial-item .desc {
    font-size: 18px;
    padding: 65px 15px;
  }
  .testimonial-item .testimonial-quote {
    top: 35px;
    width: 140px;
    height: 75px;
    font-size: 32px;
  }
}
.testimonial-item:hover .testimonial-quote {
  background-color: var(--tj-color-theme-primary);
}

.testimonial-style-2 {
  position: relative;
  background-color: var(--tj-color-common-white);
  border-top: 3px solid var(--tj-color-theme-primary);
  text-align: center;
  z-index: 1;
}
.testimonial-style-2 .testimonial-images {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}
.testimonial-style-2 .testimonial-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid var(--tj-color-theme-bg);
  border-radius: 50%;
}
.testimonial-style-2 .desc {
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  padding: 30px 40px 45px;
}
.testimonial-style-2 .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-style-2 .testimonial-author {
  border-top: 1px solid var(--tj-color-border-1);
  padding: 30px 15px 35px;
}
.testimonial-style-2 .testimonial-author .author-name {
  margin-bottom: 5px;
}
.testimonial-style-2 .testimonial-author .description {
  font-size: 14px;
  color: var(--tj-color-heading-primary);
}
.testimonial-style-2 .testimonial-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 160px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  color: var(--tj-color-grey-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-style-2 .desc {
    padding: 30px 20px 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-style-2 .desc {
    padding: 25px 15px 30px;
  }
  .testimonial-style-2 .testimonial-quote {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-style-2 .desc {
    padding: 25px 20px 30px;
  }
  .testimonial-style-2 .testimonial-quote {
    font-size: 120px;
  }
}
@media (max-width: 575px) {
  .testimonial-style-2 .desc {
    font-size: 16px;
    padding: 25px 15px 30px;
  }
  .testimonial-style-2 .testimonial-quote {
    font-size: 100px;
  }
  .testimonial-style-2 .testimonial-author {
    padding: 25px 15px 30px;
  }
}

.testimonial-style-3 {
  position: relative;
  background-color: var(--tj-color-common-white);
  border-top: 3px solid var(--tj-color-theme-primary);
  text-align: center;
  z-index: 1;
}
.testimonial-style-3 .testimonial-images {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}
.testimonial-style-3 .testimonial-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 6px solid var(--tj-color-theme-bg);
  border-radius: 50%;
}
.testimonial-style-3 .desc {
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  padding: 30px 40px 45px;
}
.testimonial-style-3 .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-style-3 .testimonial-author {
  border-top: 1px solid var(--tj-color-border-1);
  padding: 30px 15px 35px;
}
.testimonial-style-3 .testimonial-author .author-name {
  margin-bottom: 5px;
}
.testimonial-style-3 .testimonial-author .description {
  font-size: 14px;
  color: var(--tj-color-heading-primary);
}
.testimonial-style-3 .testimonial-quote {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 160px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  color: var(--tj-color-grey-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-style-3 .desc {
    padding: 30px 20px 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-style-3 .desc {
    padding: 25px 15px 30px;
  }
  .testimonial-style-3 .testimonial-quote {
    font-size: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-style-3 .desc {
    padding: 25px 20px 30px;
  }
  .testimonial-style-3 .testimonial-quote {
    font-size: 120px;
  }
}
@media (max-width: 575px) {
  .testimonial-style-3 .desc {
    font-size: 16px;
    padding: 25px 15px 30px;
  }
  .testimonial-style-3 .testimonial-quote {
    font-size: 100px;
  }
  .testimonial-style-3 .testimonial-author {
    padding: 25px 15px 30px;
  }
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.tj-team-section {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-team-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.team-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}
.team-item .team-images {
  position: relative;
  overflow: hidden;
}
.team-item .team-images img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  width: 100%;
}
.team-item .team-content {
  border: 1px solid var(--tj-color-border-1);
  margin-top: -1px;
  padding: 25px 25px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  z-index: 1;
}
.team-item .team-content::before {
  position: absolute;
  content: "";
  width: calc(25% - 2px);
  right: 22px;
  bottom: 0;
  height: 18%;
  border: 1px solid var(--tj-color-border-1);
  border-width: 0px 2px 0px 0px;
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  z-index: -1;
}
.team-item .team-content::after {
  position: absolute;
  content: "";
  right: -43px;
  bottom: -25px;
  width: 0;
  height: 0;
  border-bottom: 90px solid var(--tj-color-common-white);
  border-left: 90px solid transparent;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: -1;
}
.team-item .team-content .title {
  margin-bottom: 4px;
}
.team-item .team-content .sub-title {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-common-black-2);
}
.team-item .team-content .team-share {
  margin-top: 6px;
}
.team-item .team-content .team-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.team-item .team-content .team-share 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: 20px;
  height: 20px;
  line-height: 1;
  font-size: 10px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-grey-2);
  border-radius: 50%;
}
.team-item .team-content .team-share ul li a i {
  color: var(--tj-color-common-white);
}
.team-item .team-content .team-share ul li a:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.team-item .team-content .team-share ul li a:hover i {
  color: var(--tj-color-heading-primary);
}
.team-item:hover .team-images img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.team-item:hover .team-content {
  background-color: var(--tj-color-theme-bg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item .team-content {
    padding: 25px 15px;
  }
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.tj-contact-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-dark);
}
.tj-contact-section.contact-inner {
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-contact-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.contact-left-content {
  position: relative;
  background-color: var(--tj-color-theme-primary);
  min-height: 700px;
  overflow: hidden;
}
.contact-left-content .sec-heading {
  position: relative;
  padding: 45px 30px 0px;
  margin-bottom: 0;
  z-index: 2;
}
.contact-left-content .sec-heading .sub-title::before {
  background-color: var(--tj-color-heading-primary);
}
.contact-left-content .sec-heading .sec-title {
  margin-bottom: 15px;
}
.contact-left-content .sec-heading .desc {
  color: var(--tj-color-heading-primary);
}
.contact-left-content .sec-heading .desc p:last-child {
  margin-bottom: 0;
}
.contact-left-content .sec-heading .contact-button {
  margin-top: 35px;
}
.contact-left-content .contact-images {
  position: absolute;
  bottom: -1px;
  right: 0;
  max-width: 416px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-left-content {
    min-height: 695px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-left-content {
    min-height: 690px;
  }
  .contact-left-content .sec-heading {
    padding: 45px 15px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-left-content {
    margin-bottom: 30px;
  }
  .contact-left-content .sec-heading {
    padding: 35px 15px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-left-content {
    min-height: 645px;
    margin-bottom: 30px;
  }
  .contact-left-content .sec-heading {
    padding: 35px 15px 0px;
  }
}
@media (max-width: 575px) {
  .contact-left-content {
    min-height: 560px;
    margin-bottom: 30px;
  }
  .contact-left-content .sec-heading {
    padding: 35px 15px 0px;
  }
  .contact-left-content .sec-heading .contact-button {
    margin-top: 25px;
  }
}

.contact-form-one {
  background-color: var(--tj-color-common-white);
  padding: 40px 40px 50px;
}
.contact-form-one .title {
  margin-bottom: 15px;
}
.contact-form-one .form-input {
  margin-bottom: 25px;
}
.contact-form-one .form-input label {
  display: inline-block;
  color: var(--tj-color-common-black-2);
  margin-bottom: 10px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-form-one .form-input textarea,
.contact-form-one .form-input input[type=tel],
.contact-form-one .form-input input[type=email],
.contact-form-one .form-input input[type=text] {
  width: 100%;
  padding: 16px 20px;
  font-size: 15px;
  background: transparent;
  text-transform: uppercase;
  border: 1px solid var(--tj-color-heading-primary);
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .contact-form-one .form-input textarea::-webkit-input-placeholder, .contact-form-one .form-input input[type=tel]::-webkit-input-placeholder, .contact-form-one .form-input input[type=email]::-webkit-input-placeholder, .contact-form-one .form-input input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .contact-form-one .form-input textarea::-moz-placeholder, .contact-form-one .form-input input[type=tel]::-moz-placeholder, .contact-form-one .form-input input[type=email]::-moz-placeholder, .contact-form-one .form-input input[type=text]::-moz-placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .contact-form-one .form-input textarea:-ms-input-placeholder, .contact-form-one .form-input input[type=tel]:-ms-input-placeholder, .contact-form-one .form-input input[type=email]:-ms-input-placeholder, .contact-form-one .form-input input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .contact-form-one .form-input textarea::-ms-input-placeholder, .contact-form-one .form-input input[type=tel]::-ms-input-placeholder, .contact-form-one .form-input input[type=email]::-ms-input-placeholder, .contact-form-one .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.contact-form-one .form-input textarea::placeholder,
.contact-form-one .form-input input[type=tel]::placeholder,
.contact-form-one .form-input input[type=email]::placeholder,
.contact-form-one .form-input input[type=text]::placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.contact-form-one .form-input textarea::-ms-input-placeholder,
.contact-form-one .form-input input[type=tel]::-ms-input-placeholder,
.contact-form-one .form-input input[type=email]::-ms-input-placeholder,
.contact-form-one .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-2);
  font-size: 15px;
}
.contact-form-one .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-form-one .form-input textarea:focus,
.contact-form-one .form-input input[type=tel]:focus,
.contact-form-one .form-input input[type=email]:focus,
.contact-form-one .form-input input[type=text]:focus {
  border: 1px solid var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-bg);
}
.contact-form-one .form-input textarea {
  min-height: 178px;
  resize: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-one {
    padding: 30px 15px 35px;
  }
  .contact-form-one .form-input textarea {
    min-height: 150px;
  }
}
@media (max-width: 575px) {
  .contact-form-one {
    padding: 30px 15px 35px;
  }
  .contact-form-one .form-input textarea {
    min-height: 130px;
  }
}

.contact-form-two .sec-heading {
  max-width: 360px;
  width: 100%;
  margin-bottom: 40px;
  margin-left: 0;
}
.contact-form-two .form-input {
  margin-bottom: 25px;
}
.contact-form-two .form-input label {
  display: inline-block;
  color: var(--tj-color-common-black-2);
  margin-bottom: 10px;
}
    .contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
    .contact-form-two .form-input textarea,
    .contact-form-two .form-input input[type=tel],
    .contact-form-two .form-input input[type=email],
    .contact-form-two .form-input input[type=text],
    .contact-form-two .form-input select {
        width: 100%;
        padding: 16px 20px;
        background: transparent;
        border: 1px solid var(--tj-color-heading-primary);
    }
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .contact-form-two .form-input textarea::-webkit-input-placeholder, .contact-form-two .form-input input[type=tel]::-webkit-input-placeholder, .contact-form-two .form-input input[type=email]::-webkit-input-placeholder, .contact-form-two .form-input input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .contact-form-two .form-input textarea::-moz-placeholder, .contact-form-two .form-input input[type=tel]::-moz-placeholder, .contact-form-two .form-input input[type=email]::-moz-placeholder, .contact-form-two .form-input input[type=text]::-moz-placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .contact-form-two .form-input textarea:-ms-input-placeholder, .contact-form-two .form-input input[type=tel]:-ms-input-placeholder, .contact-form-two .form-input input[type=email]:-ms-input-placeholder, .contact-form-two .form-input input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .contact-form-two .form-input textarea::-ms-input-placeholder, .contact-form-two .form-input input[type=tel]::-ms-input-placeholder, .contact-form-two .form-input input[type=email]::-ms-input-placeholder, .contact-form-two .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.contact-form-two .form-input textarea::placeholder,
.contact-form-two .form-input input[type=tel]::placeholder,
.contact-form-two .form-input input[type=email]::placeholder,
.contact-form-two .form-input input[type=text]::placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.contact-form-two .form-input textarea::-ms-input-placeholder,
.contact-form-two .form-input input[type=tel]::-ms-input-placeholder,
.contact-form-two .form-input input[type=email]::-ms-input-placeholder,
.contact-form-two .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.contact-form-two .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-form-two .form-input textarea:focus,
.contact-form-two .form-input input[type=tel]:focus,
.contact-form-two .form-input input[type=email]:focus,
.contact-form-two .form-input input[type=text]:focus {
  border: 1px solid var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-bg);
}
.contact-form-two .form-input textarea {
  min-height: 178px;
  resize: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-two {
    margin-top: 50px;
  }
  .contact-form-two .sec-heading {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .contact-form-two .form-input textarea {
    min-height: 150px;
  }
}
@media (max-width: 575px) {
  .contact-form-two {
    margin-top: 40px;
  }
  .contact-form-two .sec-heading {
    max-width: 100%;
    margin-bottom: 20px;
  }
  .contact-form-two .form-input textarea {
    min-height: 130px;
  }
}

.contact-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;
  position: relative;
  width: 200px;
  height: 200px;
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  border: 2px solid var(--tj-color-heading-primary);
  z-index: 1;
}
.contact-btn .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 124px;
  height: 124px;
  line-height: 1;
  border-radius: 50%;
  font-size: 32px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-heading-primary);
}
.contact-btn .icon img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  max-width: 68px;
  width: 100%;
}
.contact-btn::after {
  position: absolute;
  content: "";
  width: 165px;
  height: 165px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-image: url("../images/shapes/contact-shapes.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  -webkit-animation: contactrotate 20s infinite linear;
          animation: contactrotate 20s infinite linear;
}
.contact-btn:hover::after {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-btn {
    width: 140px;
    height: 140px;
  }
  .contact-btn .icon {
    width: 80px;
    height: 80px;
  }
  .contact-btn .icon img {
    max-width: 40px;
  }
  .contact-btn::after {
    width: 115px;
    height: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-btn {
    width: 150px;
    height: 150px;
  }
  .contact-btn .icon {
    width: 90px;
    height: 90px;
  }
  .contact-btn .icon img {
    max-width: 45px;
  }
  .contact-btn::after {
    width: 125px;
    height: 125px;
  }
}
@media (max-width: 575px) {
  .contact-btn {
    width: 145px;
    height: 145px;
  }
  .contact-btn .icon {
    width: 80px;
    height: 80px;
  }
  .contact-btn .icon img {
    max-width: 45px;
  }
  .contact-btn::after {
    width: 120px;
    height: 120px;
  }
}

.contact-inner-wrapper {
  background-color: var(--tj-color-theme-bg);
  padding: 50px 40px 40px;
  max-width: 500px;
  width: 100%;
}
.contact-inner-wrapper .title {
  margin-bottom: 40px;
}
.contact-inner-wrapper .contact-box-one {
  padding-top: 60px;
}
.contact-inner-wrapper .contact-box-one .contact-item::before {
  height: 35px;
  top: -60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-inner-wrapper {
    padding: 45px 30px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-inner-wrapper {
    max-width: 100%;
  }
  .contact-inner-wrapper .contact-box-one {
    display: block;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child {
    margin-bottom: 0;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child::before {
    display: block;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-inner-wrapper {
    max-width: 100%;
  }
  .contact-inner-wrapper .contact-box-one {
    display: block;
  }
  .contact-inner-wrapper .contact-box-one .contact-item::before {
    height: 30px;
    top: -45px;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child {
    margin-bottom: 0;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child::before {
    display: block;
  }
}
@media (max-width: 575px) {
  .contact-inner-wrapper {
    max-width: 100%;
    padding: 35px 20px 30px;
  }
  .contact-inner-wrapper .contact-box-one {
    display: block;
  }
  .contact-inner-wrapper .contact-box-one .contact-item::before {
    display: block;
    height: 25px;
    top: -45px;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child {
    margin-bottom: 0;
  }
  .contact-inner-wrapper .contact-box-one .contact-item:last-child::before {
    display: block;
  }
}

.tj-map-section {
  position: relative;
  overflow: hidden;
}

.map-area iframe {
  position: relative;
  top: 10px;
  width: 100%;
  min-height: 750px;
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .map-area iframe {
    min-height: 620px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .map-area iframe {
    min-height: 520px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .map-area iframe {
    min-height: 420px;
  }
}
@media (max-width: 575px) {
  .map-area iframe {
    min-height: 350px;
  }
}

.contact-team-details {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-team-details {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-team-details {
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details {
    padding-bottom: 60px;
  }
}
.contact-team-details__inner {
  background: var(--tj-color-theme-bg);
  padding: 80px;
  padding-left: 50px;
  border-radius: var(--tj-br-md);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-team-details__inner {
    padding: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__inner {
    padding: 30px;
  }
}
.contact-team-details__message {
  font-size: 16px;
}
.contact-team-details__message a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contact-team-details__message a img {
  width: 23px;
  margin-top: 2px;
}
.contact-team-details__message a:hover {
  color: var(--tj-color-teme-primary);
}
.contact-team-details__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 0;
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__form {
    margin-top: 30px;
    padding-left: 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) {
  .contact-team-details__form {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__form {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
  }
}
.contact-team-details__form select,
.contact-team-details__form .nice-select,
.contact-team-details__form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.contact-team-details__form textarea {
  color: var(--tj-color-common-black);
  font-weight: var(--tj-fw-normal);
  padding-top: 15px;
  padding-bottom: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__form select,
  .contact-team-details__form .nice-select,
  .contact-team-details__form input:not([type=submit]):not([type=radio]):not([type=checkbox]),
  .contact-team-details__form textarea {
    font-size: 14px;
    padding: 12px 16px;
  }
}
.contact-team-details__form .tj-input {
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
}
.contact-team-details__form .tj-input__wrapper {
  width: 100%;
  border: 0;
}
.contact-team-details__form .tj-input__wrapper--message {
  grid-column: 1/3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__form .tj-input__wrapper--message {
    grid-column: 1/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) {
  .contact-team-details__form .tj-input {
    font-size: 14px;
    padding: 12px 16px;
  }
}
.contact-team-details__form .tj-input.tj-nice-select {
  padding: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-team-details__form .tj-input.tj-nice-select {
    padding: 16px 16px;
  }
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.tj-blog-section {
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}
.tj-blog-section.blog-inner-one {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-blog-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
  .tj-blog-section.blog-inner-one {
    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-blog-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-blog-section.blog-inner-one {
    padding-bottom: 50px;
  }
}

.tj-blog-section-two {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: var(--tj-color-theme-bg);
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-blog-section-two {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.tj-blog-section-three {
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-blog-section-three {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section-three {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.blog-item {
  overflow: hidden;
}
.blog-item .blog-images {
  position: relative;
  overflow: hidden;
}
.blog-item .blog-images a {
  display: inline-block;
}
.blog-item .blog-images a img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.blog-item .blog-content {
  position: relative;
  border: 1px solid var(--tj-color-border-1);
  padding: 25px 30px 30px;
  margin-top: -1px;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}
.blog-item .blog-content::before {
  position: absolute;
  content: "";
  width: calc(25% - 2px);
  right: 22px;
  bottom: 0;
  height: 12%;
  border: 1px solid var(--tj-color-border-1);
  border-width: 0px 2px 0px 0px;
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  z-index: -1;
}
.blog-item .blog-content::after {
  position: absolute;
  content: "";
  right: -43px;
  bottom: -25px;
  width: 0;
  height: 0;
  border-bottom: 90px solid var(--tj-color-common-white);
  border-left: 90px solid transparent;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: -1;
}
.blog-item .blog-content .blog-meta {
  margin-bottom: 20px;
}
.blog-item .blog-content .title {
  margin-bottom: 0;
}
.blog-item .blog-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 84%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-item .blog-content .title a:hover {
  color: var(--tj-color-heading-primary);
  background-size: 100% 2px;
}
.blog-item .blog-content .blog-button {
  margin-top: 20px;
}
.blog-item:hover .blog-images img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.blog-item:hover .blog-content {
  background-color: var(--tj-color-theme-bg);
}
.blog-item.style-2 {
  margin-bottom: 40px;
  border: 1px solid var(--tj-color-border-1);
}
.blog-item.style-2 .blog-images {
  position: relative;
}
.blog-item.style-2 .blog-images .video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
.blog-item.style-2 .blog-images .video-btn span {
  font-size: 20px;
}
.blog-item.style-2 .blog-images .video-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-animation: borderanimate2 2s linear infinite;
          animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}
.blog-item.style-2 .blog-content {
  border: none;
  margin-bottom: 0;
}
.blog-item.style-2 .blog-content::after, .blog-item.style-2 .blog-content::before {
  display: none;
}
.blog-item.style-2 .blog-content .blog-meta {
  margin-bottom: 15px;
}
.blog-item.style-2 .blog-content .title {
  margin-bottom: 15px;
  line-height: 1.1;
}
.blog-item.style-2 .blog-content .desc {
  color: var(--tj-color-common-black-2);
}
.blog-item.style-2 .blog-content .desc p:last-child {
  margin-bottom: 0;
}
.blog-item.style-2 .blog-content .blog-button {
  margin-top: 25px;
}
.blog-item.style-2:hover .blog-content {
  background-color: var(--tj-color-common-white);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-heading-primary);
  -webkit-clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 85% 100%, 0% 100%);
  position: absolute;
  top: 44%;
  left: 20px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 2;
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next .anim-icon,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev .anim-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next .anim-icon i:first-child, .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next .anim-icon i:last-child,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev .anim-icon i:first-child,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev .anim-icon i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next .anim-icon i:last-child,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev .anim-icon i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next:hover,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next:hover .anim-icon i:first-child,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev:hover .anim-icon i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next:hover .anim-icon i:last-child,
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev:hover .anim-icon i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next {
  left: auto;
  right: 20px;
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next .anim-icon i:last-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next:hover .anim-icon i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next,
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev {
    top: 42%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next,
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev {
    top: 40%;
  }
}
@media (max-width: 575px) {
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-next,
  .blog-item.style-2 .blog-standard-slider .blog-navigation .slider-prev {
    width: 46px;
    height: 40px;
    top: 38%;
  }
}
@media (max-width: 575px) {
  .blog-item.style-2 .blog-content {
    padding: 25px 15px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item .blog-content::before {
    bottom: -1px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-item .blog-content {
    padding: 25px 15px;
  }
}

.blog-style-2 {
  background-color: var(--tj-color-common-white);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
  margin-bottom: 30px;
}
.blog-style-2 .blog-images {
  position: relative;
  overflow: hidden;
}
.blog-style-2 .blog-images a {
  display: inline-block;
}
.blog-style-2 .blog-images a img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.blog-style-2 .blog-content .blog-category {
  position: relative;
  padding-left: 30px;
  margin-top: -14px;
  z-index: 1;
}
.blog-style-2 .blog-content .blog-text {
  padding: 25px 30px 40px;
}
.blog-style-2 .blog-content .blog-text .title {
  margin-bottom: 0;
}
.blog-style-2 .blog-content .blog-text .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 84%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-style-2 .blog-content .blog-text .title a:hover {
  color: var(--tj-color-heading-primary);
  background-size: 100% 2px;
}
.blog-style-2 .blog-content .blog-text .blog-meta-two {
  margin-top: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-style-2 .blog-content .blog-text {
    padding: 15px 15px 30px;
  }
}
@media (max-width: 575px) {
  .blog-style-2 .blog-content .blog-text {
    padding: 15px 15px 30px;
  }
}
.blog-style-2:hover .blog-images img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-style-3 {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  z-index: 2;
}
.blog-style-3::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(19, 19, 19, 0)), to(var(--tj-color-theme-dark)));
  background: linear-gradient(180deg, rgba(19, 19, 19, 0) 0%, var(--tj-color-theme-dark) 100%);
  z-index: 2;
}
.blog-style-3 .blog-images {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-style-3 .blog-images a {
  display: inline-block;
}
.blog-style-3 .blog-images a img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.blog-style-3 .blog-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 30px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 3;
}
.blog-style-3 .blog-content .blog-meta-three {
  margin-bottom: 20px;
}
.blog-style-3 .blog-content .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.blog-style-3 .blog-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 84%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-style-3 .blog-content .title a:hover {
  color: var(--tj-color-common-white);
  background-size: 100% 2px;
}
.blog-style-3 .blog-content .blog-button {
  margin-top: 20px;
}
.blog-style-3 .blog-content .blog-button .text-button {
  color: var(--tj-color-common-white);
}
.blog-style-3 .blog-content .blog-button .text-button .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.blog-style-3 .blog-content .blog-button .text-button:hover {
  color: var(--tj-color-common-white);
}
.blog-style-3 .blog-content .blog-button .text-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.blog-style-3:hover .blog-images img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .blog-style-3 .blog-content {
    padding: 30px 15px;
  }
}

.blog-category ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-category ul li a {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-radius: 40px;
  padding: 4px 8px;
}

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog-meta span {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}
.blog-meta span .category {
  font-size: 12px;
  background: var(--tj-color-border-1);
  border-radius: 40px;
  padding: 2px 8px 1px;
}
.blog-meta span .category:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}

.blog-meta-two {
  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;
}
.blog-meta-two span {
  display: inline-block;
  font-size: 14px;
  position: relative;
  padding-right: 15px;
  margin-right: 10px;
  z-index: 1;
}
.blog-meta-two span::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: var(--tj-color-grey-1);
  border-radius: 50%;
}
.blog-meta-two span:last-child::before {
  display: none;
}

.blog-meta-three {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog-meta-three span {
  display: inline-block;
  font-size: 14px;
  color: var(--tj-color-grey-1);
  text-transform: uppercase;
}
.blog-meta-three span .category {
  font-size: 12px;
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-1);
  background: transparent;
  border-radius: 40px;
  padding: 2px 8px 1px;
}
.blog-meta-three span .category:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.tj-blog-details {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-blog-details {
    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-blog-details {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.tj-main-sidebar {
  padding-left: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-main-sidebar {
    padding-left: 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-main-sidebar {
    padding-left: 0px;
    margin-top: 60px;
  }
}

.post-details-wrapper .blog-images {
  margin-bottom: 20px;
}
.post-details-wrapper .title {
  line-height: 1.1;
  margin-bottom: 0;
}
.post-details-wrapper p {
  margin-bottom: 30px;
}
.post-details-wrapper .images-box {
  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: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  margin-bottom: 35px;
}
.post-details-wrapper .images-box img {
  max-width: 413px;
  width: 100%;
}
.post-details-wrapper .blog-text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.post-details-wrapper .blog-text ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 16px;
}
.post-details-wrapper .blog-text ul li span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  line-height: 1;
  font-size: 12px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
}
.post-details-wrapper .blog-text .blog-video {
  position: relative;
  z-index: 1;
  margin-top: 60px;
  margin-bottom: 55px;
}
.post-details-wrapper .blog-text .blog-video .video-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
}
.post-details-wrapper .blog-text .blog-video .video-btn span {
  font-size: 20px;
}
.post-details-wrapper .blog-text .blog-video .video-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-animation: borderanimate2 2s linear infinite;
          animation: borderanimate2 2s linear infinite;
  z-index: -1;
  border-radius: 50%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .post-details-wrapper .images-box img {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-details-wrapper .images-box img {
    max-width: 290px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-details-wrapper .images-box img {
    max-width: 330px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .post-details-wrapper .images-box img {
    max-width: 240px;
  }
}
@media (max-width: 575px) {
  .post-details-wrapper .images-box img {
    max-width: 100%;
  }
  .post-details-wrapper .blog-text .blog-video {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .post-details-wrapper .blog-text .blog-video .video-btn {
    width: 60px;
    height: 60px;
  }
  .post-details-wrapper .blog-text .blog-video .video-btn::before {
    width: 70px;
    height: 70px;
  }
}

.tj-tags-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 15px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 1px solid var(--tj-color-border-1);
  padding: 22px 0;
  margin-top: 40px;
  margin-bottom: 30px;
}
.tj-tags-post .tagcloud {
  width: calc(100% - 195px);
}
.tj-tags-post .tagcloud a {
  background: var(--tj-color-border-1);
}
.tj-tags-post .tagcloud span {
  color: var(--tj-color-common-black-2);
}
@media (max-width: 575px) {
  .tj-tags-post .tagcloud {
    width: 100%;
  }
}
.tj-tags-post .post-share 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: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 10px;
}
.tj-tags-post .post-share ul li {
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  margin-bottom: 0;
}
.tj-tags-post .post-share ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 17px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
}
.tj-tags-post .post-share ul li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.tj-tags-post .post-share ul li a:hover i {
  color: var(--tj-color-theme-primary);
}
.tj-tags-post.no_socials {
  width: 100%;
}

.blog-details-prev-next {
  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: var(--tj-color-theme-bg);
  padding: 15px 20px;
  margin-bottom: 60px;
}
.blog-details-prev-next .prev-button .prev-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: var(--tj-color-heading-primary);
  font-size: 17px;
  font-family: var(--tj-ff-heading);
}
.blog-details-prev-next .prev-button .prev-btn .anim-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-dark);
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.blog-details-prev-next .prev-button .prev-btn .anim-icon .icon-anim {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}
.blog-details-prev-next .prev-button .prev-btn .anim-icon .icon-anim i:first-child, .blog-details-prev-next .prev-button .prev-btn .anim-icon .icon-anim i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  left: -3px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog-details-prev-next .prev-button .prev-btn .anim-icon .icon-anim i:last-child {
  position: absolute;
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
  color: var(--tj-color-heading-primary);
}
.blog-details-prev-next .prev-button .prev-btn:hover .anim-icon {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.blog-details-prev-next .prev-button .prev-btn:hover .anim-icon .icon-anim i:first-child {
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
}
.blog-details-prev-next .prev-button .prev-btn:hover .anim-icon .icon-anim i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.blog-details-prev-next .menu-bar {
  line-height: 1;
}
.blog-details-prev-next .menu-bar a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: var(--tj-color-heading-primary);
  font-size: 30px;
  line-height: 1;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.blog-details-prev-next .menu-bar a:hover {
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .blog-details-prev-next .menu-bar a {
    font-size: 25px;
  }
}
.blog-details-prev-next .next-button .next-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  color: var(--tj-color-heading-primary);
  font-size: 17px;
  font-family: var(--tj-ff-heading);
}
.blog-details-prev-next .next-button .next-btn .anim-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 50px;
  font-size: 12px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-dark);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.blog-details-prev-next .next-button .next-btn .anim-icon .icon-anim {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
}
.blog-details-prev-next .next-button .next-btn .anim-icon .icon-anim i:first-child, .blog-details-prev-next .next-button .next-btn .anim-icon .icon-anim i:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  right: -3px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog-details-prev-next .next-button .next-btn .anim-icon .icon-anim i:last-child {
  position: absolute;
  -webkit-transform: translateX(-150%);
      -ms-transform: translateX(-150%);
          transform: translateX(-150%);
  color: var(--tj-color-heading-primary);
}
.blog-details-prev-next .next-button .next-btn:hover .anim-icon {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
.blog-details-prev-next .next-button .next-btn:hover .anim-icon .icon-anim i:first-child {
  -webkit-transform: translateX(150%);
      -ms-transform: translateX(150%);
          transform: translateX(150%);
}
.blog-details-prev-next .next-button .next-btn:hover .anim-icon .icon-anim i:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media (max-width: 575px) {
  .blog-details-prev-next {
    margin-bottom: 40px;
  }
}

.blog-category-two {
  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;
  border: 1px solid var(--tj-color-border-1);
  margin-bottom: 35px;
  margin-top: 25px;
}
.blog-category-two .category-item {
  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;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-right: 1px solid var(--tj-color-border-1);
  padding: 25px 90px 25px 30px;
}
.blog-category-two .category-item:last-child {
  border-right: none;
}
.blog-category-two .category-item .cate-images {
  width: 52px;
  height: 52px;
}
.blog-category-two .category-item .cate-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.blog-category-two .category-item .cate-text .degination {
  display: block;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--tj-color-common-black-2);
  margin-bottom: 10px;
}
.blog-category-two .category-item .cate-text .title {
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
}
.blog-category-two .category-item .cate-icons {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 24px;
  width: 52px;
  height: 52px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
}
.blog-category-two .category-item .text {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-category-two .category-item {
    padding: 25px 50px 25px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item {
    padding: 20px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-category-two .category-item {
    padding: 25px 40px 25px 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-category-two .category-item {
    padding: 20px 15px;
  }
  .blog-category-two .category-item .cate-images {
    width: 30px;
    height: 30px;
  }
  .blog-category-two .category-item .cate-icons {
    font-size: 15px;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 575px) {
  .blog-category-two {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 20px;
    padding: 20px 15px;
  }
  .blog-category-two .category-item {
    padding: 0px;
    border-right: none;
  }
  .blog-category-two .category-item .cate-images {
    width: 45px;
    height: 45px;
  }
  .blog-category-two .category-item .cate-icons {
    font-size: 18px;
    width: 40px;
    height: 40px;
  }
  .blog-category-two .category-item .cate-text .degination {
    margin-bottom: 6px;
  }
}

.search-box {
  position: relative;
  width: 100%;
  border: 1px solid var(--tj-color-heading-primary);
  z-index: 1;
}
.search-box select,
.search-box .nice-select,
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.search-box textarea {
  font-size: 16px;
  background: var(--tj-color-common-white);
  width: 100%;
  border: none;
  padding: 20px 65px 20px 25px;
  line-height: 1;
}
.search-box select::-webkit-input-placeholder, .search-box .nice-select::-webkit-input-placeholder, .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .search-box textarea::-webkit-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box select::-moz-placeholder, .search-box .nice-select::-moz-placeholder, .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .search-box textarea::-moz-placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box select:-ms-input-placeholder, .search-box .nice-select:-ms-input-placeholder, .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .search-box textarea:-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box select::-ms-input-placeholder, .search-box .nice-select::-ms-input-placeholder, .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .search-box textarea::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box select::placeholder,
.search-box .nice-select::placeholder,
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.search-box textarea::placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box select::-ms-input-placeholder,
.search-box .nice-select::-ms-input-placeholder,
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.search-box textarea::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.search-box :focus {
  outline: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.search-box button {
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  width: 54px;
  height: 60px;
  position: absolute;
  border-left: 1px solid var(--tj-color-heading-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.tj-sidebar__widget {
  margin-bottom: 25px;
  padding: 30px;
  position: relative;
  background-color: var(--tj-color-theme-bg);
  z-index: 3;
}
.tj-sidebar__widget .widget-title {
  color: var(--tj-color-heading-primary);
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  z-index: 1;
}
.tj-sidebar__widget.widget_search .search-box form {
  position: relative;
  width: 100%;
  border: 1px solid var(--tj-color-heading-primary);
  z-index: 1;
}
.tj-sidebar__widget.widget_search .search-box form input[type=search] {
  font-size: 16px;
  background: var(--tj-color-common-white);
  width: 100%;
  border: none;
  padding: 20px 65px 20px 25px;
  line-height: 1;
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]::-webkit-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]::-moz-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]:-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]::placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form input[type=search]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-sidebar__widget.widget_search .search-box form :focus {
  outline: none;
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.tj-sidebar__widget.widget_search .search-box form button {
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  width: 54px;
  height: 60px;
  position: absolute;
  border-left: 1px solid var(--tj-color-heading-primary);
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.tj-sidebar__widget.tj_recent_posts ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-sidebar__widget.tj_recent_posts ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 20px;
}
.tj-sidebar__widget.tj_recent_posts ul li:last-child {
  margin-bottom: 0;
}
.tj-sidebar__widget.tj_recent_posts .post-thumb {
  position: relative;
  max-width: 100px;
  width: 100%;
  overflow: hidden;
}
.tj-sidebar__widget.tj_recent_posts .post-thumb a {
  display: inline-block;
  width: 100%;
}
.tj-sidebar__widget.tj_recent_posts .post-thumb a img {
  width: 100%;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.tj-sidebar__widget.tj_recent_posts .post-thumb:hover a img {
  -webkit-transform: scale(1.15);
      -ms-transform: scale(1.15);
          transform: scale(1.15);
}
.tj-sidebar__widget.tj_recent_posts .post-content .post-title {
  margin-bottom: 10px;
}
.tj-sidebar__widget.tj_recent_posts .post-content .post-title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 84%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.tj-sidebar__widget.tj_recent_posts .post-content .post-title a:hover {
  color: var(--tj-color-heading-primary);
  background-size: 100% 2px;
}
.tj-sidebar__widget.tj_recent_posts .post-content .blog-meta ul li {
  font-size: 14px;
  color: var(--tj-color-common-black-2);
  gap: 6px;
}
.tj-sidebar__widget.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-sidebar__widget.widget_categories ul li {
  margin-bottom: 10px;
}
.tj-sidebar__widget.widget_categories ul li:last-child {
  margin-bottom: 0;
}
.tj-sidebar__widget.widget_categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: var(--tj-ff-heading);
  font-size: 17px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  padding: 20px 20px 17px 25px;
}
.tj-sidebar__widget.widget_categories ul li a:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .tj-sidebar__widget {
    padding: 25px 15px;
  }
}

.tagcloud {
  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: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 12px;
}
.tagcloud a {
  position: relative;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  border-radius: 50px;
  background: var(--tj-color-common-white);
  padding: 5px 8px 4px;
  line-height: 1;
  z-index: 1;
}
.tagcloud a:hover {
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
}

blockquote {
  position: relative;
  padding: 30px 30px;
  background: var(--tj-color-theme-bg);
  border: 1px solid var(--tj-color-theme-primary);
  margin-top: 40px;
  margin-bottom: 55px;
  z-index: 2;
}
blockquote::before {
  content: "\e903";
  font-size: 40px;
  color: var(--tj-color-heading-primary);
  font-family: "conix-icons";
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
blockquote p {
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 32px;
  margin-bottom: 20px !important;
  line-height: 1.2;
}
blockquote cite {
  color: var(--tj-color-heading-primary);
  font-style: normal;
  position: relative;
  padding-left: 65px;
  z-index: 1;
}
blockquote cite::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-color-heading-primary);
}
@media (max-width: 575px) {
  blockquote {
    padding: 30px 15px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  blockquote p {
    font-size: 25px;
    margin-bottom: 15px !important;
  }
}

.tj-comments-wrap {
  padding-top: 60px;
  margin-bottom: 60px;
  border-top: 1px solid var(--tj-color-border-1);
}
.tj-comments-wrap .comments-title .title {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .tj-comments-wrap {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}

.tj-latest-comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-columns: initial;
     -moz-columns: initial;
          columns: initial;
}
.tj-latest-comments ul .tj-comment {
  margin-bottom: 20px;
}
.tj-latest-comments ul .tj-comment:last-child {
  margin-bottom: 0;
}
.tj-latest-comments ul .tj-comment .comment-content {
  padding: 30px;
  border: 1px solid var(--tj-color-border-1);
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar {
  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: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  margin-bottom: 10px;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar .avatar-images {
  max-width: 63px;
  width: 100%;
  height: 63px;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar .avatar-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar .avatar-name .title {
  margin-bottom: 5px;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar .avatar-name .title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .comment-avatar .avatar-name .date {
  display: inline-block;
  color: var(--tj-color-grey-2);
  font-size: 14px;
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .reply-button .reply-btn {
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
}
.tj-latest-comments ul .tj-comment .comment-content .commment-author .reply-button .reply-btn:hover {
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment .comment-content {
    padding: 30px 15px;
  }
}
.tj-latest-comments ul .tj-comment .desc {
  color: var(--tj-color-common-black-2);
  padding-left: 75px;
}
.tj-latest-comments ul .tj-comment .desc p:last-child {
  margin-bottom: 0;
}
.tj-latest-comments ul .tj-comment > .children {
  padding-left: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-latest-comments ul .tj-comment > .children {
    padding-left: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-latest-comments ul .tj-comment > .children {
    padding-left: 25px;
  }
}
@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment > .children {
    padding-left: 15px;
  }
}
.tj-latest-comments ul .tj-comment:last-child .comment-content .comments-header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.tj-comment-respond .comment-header {
  margin-bottom: 20px;
}
.tj-comment-respond .comment-header .title {
  color: var(--tj-color-heading-primary);
  margin-bottom: 20px;
  font-size: 30px;
}
.tj-comment-respond .form-input {
  margin-bottom: 20px;
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj-comment-respond .form-input textarea,
.tj-comment-respond .form-input input[type=email],
.tj-comment-respond .form-input input[type=text] {
  width: 100%;
  padding: 17px 20px;
  font-size: 15px;
  background: transparent;
  border: 2px solid var(--tj-color-heading-primary);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .tj-comment-respond .form-input textarea::-webkit-input-placeholder, .tj-comment-respond .form-input input[type=email]::-webkit-input-placeholder, .tj-comment-respond .form-input input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .tj-comment-respond .form-input textarea::-moz-placeholder, .tj-comment-respond .form-input input[type=email]::-moz-placeholder, .tj-comment-respond .form-input input[type=text]::-moz-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .tj-comment-respond .form-input textarea:-ms-input-placeholder, .tj-comment-respond .form-input input[type=email]:-ms-input-placeholder, .tj-comment-respond .form-input input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .tj-comment-respond .form-input textarea::-ms-input-placeholder, .tj-comment-respond .form-input input[type=email]::-ms-input-placeholder, .tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj-comment-respond .form-input textarea::placeholder,
.tj-comment-respond .form-input input[type=email]::placeholder,
.tj-comment-respond .form-input input[type=text]::placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj-comment-respond .form-input textarea::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=email]::-ms-input-placeholder,
.tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-common-black-2);
}
.tj-comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.tj-comment-respond .form-input textarea:focus,
.tj-comment-respond .form-input input[type=email]:focus,
.tj-comment-respond .form-input input[type=text]:focus {
  background-color: var(--tj-color-theme-bg);
}
.tj-comment-respond .form-input textarea {
  min-height: 180px;
  resize: none;
}
.tj-comment-respond .blog-details-button {
  margin-top: 10px;
}
@media (max-width: 575px) {
  .tj-comment-respond textarea {
    min-height: 150px;
  }
}

.page-pagination {
  margin-top: 20px;
}
.page-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
}
.page-pagination ul li {
  background-color: var(--tj-color-heading-primary);
  padding: 2px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
}
.page-pagination ul li .page-numbers {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 45px;
  line-height: 1;
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  background-color: var(--tj-color-common-white);
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.page-pagination ul li .page-numbers i {
  font-size: 12px;
  color: var(--tj-color-heading-primary);
}
.page-pagination ul li .page-numbers:hover, .page-pagination ul li .page-numbers.current {
  background-color: var(--tj-color-heading-primary);
  color: var(--tj-color-common-white);
}
.page-pagination ul li .page-numbers:hover i, .page-pagination ul li .page-numbers.current i {
  color: var(--tj-color-common-white);
}
.page-pagination ul li:first-child {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
}
.page-pagination ul li:first-child .page-numbers {
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 70% 100%, 0% 100%);
  width: 55px;
  padding-right: 10px;
}
.page-pagination ul li:last-child {
  -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.page-pagination ul li:last-child .page-numbers {
  -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  width: 55px;
  padding-left: 10px;
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Feature CSS
----------------------------------------*/
.tj-feature-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-feature-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-feature-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.feature-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid var(--tj-color-border-1);
  margin: -1px -1px 0 0;
  border-width: 1px 1px 0 0;
  background-color: var(--tj-color-common-white);
  position: relative;
  overflow: hidden;
  -webkit-clip-path: polygon(100% 0, 100% 90%, 98% 100%, 0 100%, 0 10%, 2% 0);
          clip-path: polygon(100% 0, 100% 90%, 98% 100%, 0 100%, 0 10%, 2% 0);
  z-index: 2;
}
.feature-wrapper .feature-item {
  position: relative;
}
.feature-wrapper .feature-item:first-child::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 25px;
  height: 100%;
  border-top: 35px solid var(--tj-color-border-1);
  border-right: 26px solid transparent;
}
.feature-wrapper .feature-item:last-child::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  width: 10px;
  height: 100%;
  border-bottom: 35px solid var(--tj-color-border-1);
  border-left: 25px solid transparent;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-wrapper .feature-item:first-child::before {
    left: -3px;
    border-top: 41px solid var(--tj-color-border-1);
    border-right: 25px solid transparent;
  }
  .feature-wrapper .feature-item:last-child::before {
    border-bottom: 36px solid var(--tj-color-border-1);
    border-left: 22px solid transparent;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-wrapper .feature-item:first-child::before {
    left: -6px;
    border-top: 43px solid var(--tj-color-border-1);
    border-right: 24px solid transparent;
  }
  .feature-wrapper .feature-item:last-child::before {
    border-bottom: 34px solid var(--tj-color-border-1);
    border-left: 19px solid transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-wrapper {
    -webkit-clip-path: polygon(100% 0, 100% 95%, 97% 100%, 0 100%, 0 4%, 3% 0);
            clip-path: polygon(100% 0, 100% 95%, 97% 100%, 0 100%, 0 4%, 3% 0);
  }
  .feature-wrapper .feature-item:first-child::before {
    left: -20px;
    width: 15px;
    border-top: 54px solid var(--tj-color-border-1);
    border-right: 40px solid transparent;
  }
  .feature-wrapper .feature-item:last-child::before {
    width: 15px;
    right: -1px;
    border-bottom: 34px solid var(--tj-color-border-1);
    border-left: 21px solid transparent;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-wrapper {
    -webkit-clip-path: polygon(100% 0, 100% 95%, 97% 100%, 0 100%, 0 4%, 3% 0);
            clip-path: polygon(100% 0, 100% 95%, 97% 100%, 0 100%, 0 4%, 3% 0);
  }
  .feature-wrapper .feature-item:first-child::before {
    left: -5px;
    width: 15px;
    border-top: 32px solid var(--tj-color-border-1);
    border-right: 20px solid transparent;
  }
  .feature-wrapper .feature-item:last-child::before {
    width: 18px;
    right: -3px;
    border-bottom: 30px solid var(--tj-color-border-1);
    border-left: 15px solid transparent;
  }
}
@media (max-width: 575px) {
  .feature-wrapper {
    -webkit-clip-path: polygon(100% 0, 100% 97%, 96% 100%, 0 100%, 0 3%, 3% 0);
            clip-path: polygon(100% 0, 100% 97%, 96% 100%, 0 100%, 0 3%, 3% 0);
  }
  .feature-wrapper .feature-item:first-child::before {
    left: -6px;
    width: 16px;
    border-top: 40px solid var(--tj-color-border-1);
    border-right: 14px solid transparent;
  }
  .feature-wrapper .feature-item:last-child::before {
    width: 15px;
    right: 0px;
    border-bottom: 30px solid var(--tj-color-border-1);
    border-left: 16px solid transparent;
  }
}

.feature-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 325px;
  width: 100%;
  border: 1px solid var(--tj-color-border-1);
  margin: -1px -1px 0px 0;
  border-width: 1px 1px 1px 1px;
  padding: 50px 40px 45px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  z-index: 1;
}
.feature-item .feature-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  line-height: 1;
  font-size: 40px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  margin-bottom: 25px;
  border-radius: 50%;
}
.feature-item .feature-icon i {
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.feature-item .title {
  margin-bottom: 15px;
}
.feature-item .desc p:last-child {
  margin-bottom: 0;
}
.feature-item:hover {
  background-color: var(--tj-color-theme-dark);
}
.feature-item:hover .title {
  color: var(--tj-color-common-white);
}
.feature-item:hover .desc {
  color: var(--tj-color-grey-1);
}
.feature-item:hover .feature-icon i {
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-item {
    max-width: 280px;
    padding: 45px 35px 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-item {
    max-width: 235px;
    padding: 35px 15px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-item {
    max-width: 349px;
    padding: 40px 20px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-item {
    max-width: 259px;
    padding: 30px 15px 25px;
  }
  .feature-item .title {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .feature-item {
    max-width: 100%;
    padding: 30px 15px;
  }
  .feature-item .feature-icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}

/* !END: Theme Feature CSS */
/**----------------------------------------
START: Theme Faq CSS
----------------------------------------*/
.tj-faq-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-faq-section .sec-heading {
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 25px;
  row-gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faq-wrapper .faq-left-content {
  max-width: 360px;
  width: 100%;
}
.faq-wrapper .tj-faq {
  max-width: 775px;
  width: 100%;
  border: 1px solid var(--tj-color-border-1);
  padding: 45px 30px 25px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-wrapper .faq-left-content {
    max-width: 335px;
  }
  .faq-wrapper .tj-faq {
    max-width: 730px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-wrapper .faq-left-content {
    max-width: 305px;
  }
  .faq-wrapper .tj-faq {
    max-width: 580px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-wrapper .faq-left-content {
    max-width: 100%;
  }
  .faq-wrapper .tj-faq {
    max-width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-wrapper .faq-left-content {
    max-width: 100%;
  }
  .faq-wrapper .tj-faq {
    max-width: 100%;
    padding: 30px 20px 25px;
  }
  .faq-wrapper .tj-faq .accordion-item .faq-title {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .faq-wrapper .faq-left-content {
    max-width: 100%;
  }
  .faq-wrapper .tj-faq {
    max-width: 100%;
    padding: 30px 15px 25px;
  }
  .faq-wrapper .tj-faq .accordion-item .faq-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .faq-wrapper {
    row-gap: 20px;
  }
}

.contact-box-one {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.contact-box-one .contact-item {
  position: relative;
  padding-bottom: 55px;
  z-index: 1;
}
.contact-box-one .contact-item:not(:last-child) {
  margin-bottom: 20px;
}
.contact-box-one .contact-item::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 40px;
  bottom: 0;
  left: 0;
  background: var(--tj-color-heading-primary);
}
.contact-box-one .contact-item .sub-title {
  display: block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
}
.contact-box-one .contact-item .contact-link {
  display: inline-block;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 28px;
  line-height: 1.2;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-box-one {
    padding-top: 40px;
  }
  .contact-box-one::before {
    height: 25px;
  }
  .contact-box-one .contact-item {
    padding-bottom: 35px;
  }
  .contact-box-one .contact-item::before {
    height: 25px;
  }
  .contact-box-one .contact-item .contact-link {
    font-size: 20px;
  }
}

.accordion-item {
  position: relative;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  z-index: 2;
  border-radius: 0;
  background: transparent;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--tj-color-border-1);
}
.accordion-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.accordion-item .faq-title {
  font-size: 28px;
  font-family: var(--tj-ff-heading);
  padding: 0px 30px 15px 0px;
  position: relative;
  color: var(--tj-color-heading-primary);
  width: 100%;
  text-align: left;
}
.accordion-item .faq-title.collapsed {
  color: var(--tj-color-heading-primary);
}
.accordion-item .faq-title:before {
  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: 25px;
  height: 25px;
  border: 1px solid var(--tj-color-heading-primary);
  background: transparent;
  position: absolute;
  content: "+";
  top: 6px;
  right: 0px;
  font-family: "Font Awesome 6 Sharp";
  font-size: 14px;
  font-weight: var(--tj-fw-ebold);
  color: var(--tj-color-heading-primary);
  border-radius: 50%;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.accordion-item .faq-title:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-item .faq-title:not(.collapsed):before {
  content: "\f068";
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.accordion-item .faq-title:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-item .faq-title:after {
  display: none;
}
.accordion-item .faq-text {
  padding: 15px 10px 25px 0px;
}
.accordion-item .faq-text p {
  color: var(--tj-color-text-body);
}
.accordion-item .faq-text p:last-child {
  margin-bottom: 0;
}

.tj-faq-search {
  padding-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-search {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-faq-search {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-search {
    padding-top: 60px;
  }
}
.tj-faq-search .sec-heading {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-search .sec-heading {
    margin-bottom: 20px;
  }
}
.tj-faq-search .sec-heading .sec-title {
  text-align: center;
}
.tj-faq-search .sec-heading .sec-title span {
  color: var(--tj-color-theme-primary);
}
.tj-faq-search-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.tj-faq-search form {
  max-width: 550px;
  width: 100%;
}

/* !END: Theme Faq CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.tj-cta-section {
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-cta-section {
    padding-bottom: 115px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-cta-section {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-cta-section {
    padding-bottom: 80px;
  }
}

.cta-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cta-wrapper .cta-left-content {
  position: relative;
  z-index: 1;
}
.cta-wrapper .cta-left-content .cta-link {
  position: absolute;
  top: -10px;
  left: 50px;
  display: inline-block;
  background: var(--tj-color-theme-primary);
  border: 6px solid var(--tj-color-common-white);
  border-radius: 50px;
  -webkit-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
          transform: rotate(-8deg);
  padding: 6px 14px 3px;
  z-index: 1;
}
.cta-wrapper .cta-left-content .cta-link img {
  position: relative;
  top: -3px;
  max-width: 23px;
  width: 100%;
}
.cta-wrapper .cta-left-content .cta-link .link {
  font-family: var(--tj-ff-heading);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.cta-wrapper .title {
  font-size: 262px;
  margin-bottom: 0;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-wrapper .title {
    font-size: 215px;
  }
  .cta-wrapper .cta-left-content .cta-link {
    top: -20px;
    left: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-wrapper .title {
    font-size: 170px;
  }
  .cta-wrapper .cta-left-content .cta-link {
    top: -30px;
    left: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-wrapper .title {
    font-size: 120px;
  }
  .cta-wrapper .cta-left-content .cta-link {
    top: -40px;
    left: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 40px;
  }
  .cta-wrapper .cta-left-content {
    position: relative;
    z-index: 1;
  }
  .cta-wrapper .cta-left-content .cta-link {
    top: -40px;
    left: 10px;
    border: 5px solid var(--tj-color-common-white);
  }
  .cta-wrapper .cta-left-content .cta-link .link {
    font-size: 20px;
  }
  .cta-wrapper .title {
    font-size: 110px;
  }
}
@media (max-width: 575px) {
  .cta-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 40px;
  }
  .cta-wrapper .cta-left-content {
    position: relative;
    z-index: 1;
  }
  .cta-wrapper .cta-left-content .cta-link {
    top: -40px;
    left: 10px;
    border: 5px solid var(--tj-color-common-white);
    padding: 4px 14px 2px;
  }
  .cta-wrapper .cta-left-content .cta-link .link {
    font-size: 18px;
  }
  .cta-wrapper .title {
    font-size: 80px;
  }
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme Brand CSS
----------------------------------------*/
.tj-brand-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-brand-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-brand-section {
    padding-top: 80px;
    padding-bottom: 130px;
  }
}

.brand-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  border: 1px solid var(--tj-color-heading-primary);
  margin: -1px -1px 0 0;
  border-width: 1px 1px 0 0;
  background-color: var(--tj-color-common-white);
  position: relative;
  z-index: 2;
}
@media (max-width: 575px) {
  .brand-wrapper {
    margin: 0;
    border: none;
  }
}

.brand-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 217px;
  width: 100%;
  min-height: 170px;
  border: 1px solid var(--tj-color-heading-primary);
  margin: -1px -1px 0px 0;
  border-width: 1px 1px 1px 1px;
  position: relative;
  padding: 4px 15px;
  overflow: hidden;
  z-index: 1;
}
.brand-item .brand-title .title {
  margin-bottom: 0;
}
.brand-item .anim-logo {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.brand-item .anim-logo img:first-child, .brand-item .anim-logo img:last-child {
  position: relative;
  font-size: 14px;
  top: -1px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.brand-item .anim-logo img:last-child {
  position: absolute;
  -webkit-transform: translateY(150%);
      -ms-transform: translateY(150%);
          transform: translateY(150%);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .brand-item {
    max-width: 224px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand-item {
    max-width: 188px;
    min-height: 165px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-item {
    max-width: 233px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .brand-item {
    max-width: 173px;
    min-height: 155px;
  }
}
@media (max-width: 575px) {
  .brand-item {
    max-width: 50%;
    min-height: 155px;
  }
}
.brand-item:hover .anim-logo img:first-child {
  -webkit-transform: translateY(-150%);
      -ms-transform: translateY(-150%);
          transform: translateY(-150%);
}
.brand-item:hover .anim-logo img:last-child {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/* !END: Theme Brand CSS */
/**----------------------------------------
START: Theme Work CSS
----------------------------------------*/
.tj-work-section {
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-work-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  row-gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-work-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-work-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.work-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .work-wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-wrapper {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-wrapper {
    -webkit-column-gap: 0px;
       -moz-column-gap: 0px;
            column-gap: 0px;
  }
}

.work-cta-wrap {
  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;
  border: 1px solid var(--tj-color-theme-dark);
  border-radius: 90px;
  padding: 6px 30px 6px 15px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.work-cta-wrap .cta-thumb {
  position: relative;
  padding-right: 20px;
  margin-right: 20px;
  z-index: 1;
}
.work-cta-wrap .cta-thumb::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 130%;
  right: 0;
  top: -10px;
  background: var(--tj-color-theme-dark);
}
.work-cta-wrap .cta-thumb 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;
}
.work-cta-wrap .cta-thumb ul li {
  width: 56px;
  height: 56px;
  margin-right: -10px;
}
.work-cta-wrap .cta-thumb ul li:last-child {
  margin-right: 0;
}
.work-cta-wrap .cta-thumb ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--tj-color-common-white);
  border-radius: 50%;
}
.work-cta-wrap .cta-thumb ul li .tj-count {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-dark);
  border: 2px solid var(--tj-color-common-white);
  border-radius: 50%;
  font-family: var(--tj-ff-heading);
  font-size: 20px;
  line-height: 1;
}
.work-cta-wrap .cta-thumb ul li .tj-count .counter {
  position: relative;
  top: 1px;
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
}
.work-cta-wrap .work-title {
  max-width: 115px;
  width: 100%;
}
.work-cta-wrap .work-title .title {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-cta-wrap .cta-thumb {
    padding-right: 15px;
    margin-right: 15px;
  }
  .work-cta-wrap .cta-thumb ul li {
    width: 50px;
    height: 50px;
  }
  .work-cta-wrap .cta-thumb ul li .number {
    width: 50px;
    height: 50px;
  }
}
@media (max-width: 575px) {
  .work-cta-wrap {
    padding: 6px 15px 6px 15px;
  }
  .work-cta-wrap .cta-thumb {
    padding-right: 10px;
    margin-right: 10px;
  }
  .work-cta-wrap .cta-thumb::before {
    top: -6px;
  }
  .work-cta-wrap .cta-thumb ul li {
    width: 48px;
    height: 48px;
  }
  .work-cta-wrap .cta-thumb ul li .number {
    width: 48px;
    height: 48px;
  }
}

.work-left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 635px;
  width: 100%;
}
.work-left-content .stoke-title {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-orientation: mixed;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  position: relative;
  z-index: 1;
}
.work-left-content .stoke-title::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 8px;
  background-image: url(../images/shapes/process-shapes.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.work-left-content .stoke-title .title {
  font-size: 138px;
  -webkit-text-fill-color: var(--tj-color-common-white);
  -webkit-text-stroke: 1px var(--tj-color-border-1);
  margin-bottom: 0;
  line-height: 1;
}
.work-left-content .work-images {
  max-width: 465px;
  width: 100%;
}
.work-left-content .work-images img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .work-left-content {
    max-width: 515px;
  }
  .work-left-content .stoke-title .title {
    font-size: 110px;
  }
  .work-left-content .work-images {
    max-width: 375px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-left-content {
    max-width: 455px;
  }
  .work-left-content .stoke-title .title {
    font-size: 95px;
  }
  .work-left-content .work-images {
    max-width: 330px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .work-left-content {
    max-width: 100%;
  }
  .work-left-content .work-images {
    max-width: 527px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .work-left-content {
    max-width: 100%;
  }
  .work-left-content .stoke-title .title {
    font-size: 90px;
  }
  .work-left-content .work-images {
    max-width: 396px;
  }
  .work-left-content .work-images img {
    height: 430px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 575px) {
  .work-left-content {
    max-width: 100%;
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .work-left-content .stoke-title .title {
    font-size: 75px;
  }
  .work-left-content .work-images {
    max-width: calc(100% - 85px);
  }
}

.works-step-wrap {
  max-width: 600px;
  width: 100%;
}
.works-step-wrap .steps-item:last-child .works-content {
  border-bottom: none;
  padding-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .works-step-wrap {
    max-width: 570px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .works-step-wrap {
    max-width: 425px;
  }
}

.steps-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.steps-item::before {
  position: absolute;
  content: "";
  height: 60%;
  width: 2px;
  left: 40px;
  bottom: -18px;
  background: var(--tj-color-theme-dark);
}
.steps-item:last-child {
  margin-bottom: 0;
}
.steps-item:last-child::before {
  display: none;
}
.steps-item .steps-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 80px;
  width: 100%;
  height: 80px;
  font-size: 14px;
  color: var(--tj-color-heading-primary);
  background-color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-theme-dark);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.steps-item .works-content {
  max-width: 485px;
  width: 100%;
  border-bottom: 1px solid rgb(224, 224, 224);
  padding-bottom: 25px;
}
.steps-item .works-content .number {
  display: block;
  font-size: 18px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  margin-bottom: 12px;
  line-height: 1;
}
.steps-item .works-content .title {
  margin-bottom: 15px;
}
.steps-item .works-content .desc p:last-child {
  margin-bottom: 0;
}
.steps-item:hover .steps-icon {
  background-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .steps-item {
    margin-bottom: 20px;
  }
  .steps-item::before {
    height: 50%;
    bottom: -10px;
  }
  .steps-item .works-content {
    padding-bottom: 15px;
  }
  .steps-item .works-content .title {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .steps-item {
    margin-bottom: 20px;
  }
  .steps-item::before {
    height: 60%;
    bottom: -8px;
  }
  .steps-item .works-content {
    padding-bottom: 15px;
  }
  .steps-item .works-content .title {
    margin-bottom: 10px;
  }
}
@media (max-width: 575px) {
  .steps-item {
    gap: 20px;
  }
  .steps-item::before {
    height: 65%;
    bottom: -10px;
    left: 32px;
  }
  .steps-item .steps-icon {
    max-width: 65px;
    height: 65px;
  }
  .steps-item .works-content {
    padding-bottom: 15px;
  }
  .steps-item .works-content .title {
    margin-bottom: 10px;
  }
}

/* !END: Theme Work CSS */
/**----------------------------------------
START: Theme Step CSS
----------------------------------------*/
.tj-steps-section {
  padding-top: 120px;
  padding-bottom: 135px;
}
.tj-steps-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}
.tj-steps-section .sec-heading .step-award {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--tj-color-heading-primary);
  border-radius: 50px;
}
.tj-steps-section .sec-heading .step-award .award-image {
  border-right: 1px solid var(--tj-color-heading-primary);
  padding: 16px 14px 16px 20px;
}
.tj-steps-section .sec-heading .step-award .award-image img {
  max-width: 58px;
  height: 50px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-steps-section .sec-heading .step-award .award-title {
  padding: 12px 20px 12px 14px;
}
.tj-steps-section .sec-heading .step-award .award-title .title {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-steps-section {
    padding-top: 100px;
    padding-bottom: 115px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-steps-section {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-steps-section {
    padding-top: 80px;
    padding-bottom: 30px;
  }
  .tj-steps-section .sec-heading {
    margin-bottom: 65px;
  }
}

.steps-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.steps-wrapper .steps-box:last-child .steps-infos .steps-arrow {
  opacity: 0;
  visibility: hidden;
}

.steps-box {
  max-width: 33.33%;
  width: 100%;
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 1px solid var(--tj-color-border-1);
  margin-bottom: 50px;
  position: relative;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}
.steps-box::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 146%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 18px;
  background: var(--tj-color-border-1);
  z-index: -1;
}
.steps-box:last-child::before {
  display: none;
}
.steps-box:first-child .steps-infos .steps-list:first-child {
  padding-left: 0;
}
.steps-box:first-child .steps-content {
  padding-left: 0;
}
.steps-box .steps-infos {
  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;
  margin-top: -20px;
}
.steps-box .steps-infos .steps-list {
  padding-left: 60px;
}
.steps-box .steps-infos .steps-list .step {
  display: block;
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  letter-spacing: 0.17em;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-1);
  padding: 5px 12px 2px;
  border-radius: 40px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  line-height: 1;
}
.steps-box .steps-infos .steps-arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-border-1);
  background: var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  border-radius: 50%;
}
.steps-box .steps-content {
  padding: 40px 60px 45px;
}
.steps-box .steps-content .title {
  margin-bottom: 18px;
}
.steps-box .steps-content .desc {
  max-width: 270px;
  width: 100%;
}
.steps-box .steps-content .desc p:last-child {
  margin-bottom: 0;
}
.steps-box:hover {
  border-top: 1px solid var(--tj-color-heading-primary);
}
.steps-box:hover .steps-infos .steps-list .step {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-heading-primary);
  border: 1px solid var(--tj-color-heading-primary);
}
.steps-box:hover .steps-infos .steps-arrow {
  border-color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .steps-box .steps-content {
    padding: 40px 35px 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .steps-box .steps-content {
    padding: 30px 15px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .steps-box {
    max-width: 50%;
  }
  .steps-box::before {
    height: 120%;
    top: 50%;
  }
  .steps-box .steps-content {
    padding: 30px 20px 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .steps-box {
    max-width: 50%;
  }
  .steps-box::before {
    height: 120%;
    top: 50%;
  }
  .steps-box .steps-content {
    padding: 30px 20px;
  }
}
@media (max-width: 575px) {
  .steps-box {
    max-width: 100%;
    margin-bottom: 30px;
    border-bottom: none;
  }
  .steps-box::before {
    height: 100%;
  }
  .steps-box .steps-infos .steps-list {
    padding-left: 0;
  }
  .steps-box .steps-infos .steps-arrow {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .steps-box .steps-content {
    padding: 25px 20px 30px 0px;
  }
}

/* !END: Theme Step CSS */
/**----------------------------------------
START: Theme Price CSS
----------------------------------------*/
.tj-price-section {
  padding-top: 120px;
  padding-bottom: 90px;
  background: var(--tj-color-theme-bg);
}
.tj-price-section.inner-page {
  padding-bottom: 0px;
  background-color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-price-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-price-section {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.tj-price-item {
  background-color: var(--tj-color-common-white);
  border: 1px solid transparent;
  padding: 45px 30px;
  margin-bottom: 30px;
}
.tj-price-item.active {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-heading-primary);
}
.tj-price-item.active .price-header {
  border-bottom: 1px solid var(--tj-color-heading-primary);
}
.tj-price-item.active .tj-transparent-btn {
  border: none;
  background: var(--tj-color-theme-dark);
  padding: 20px 35px;
}
.tj-price-item.active .tj-transparent-btn .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.tj-price-item.active .tj-transparent-btn .btn-icon i:first-child, .tj-price-item.active .tj-transparent-btn .btn-icon i:last-child {
  color: var(--tj-color-common-white);
}
.tj-price-item.active .tj-transparent-btn .btn-icon i:last-child {
  color: var(--tj-color-heading-primary);
}
.tj-price-item.active .tj-transparent-btn:hover {
  background-color: var(--tj-color-common-white);
}
.tj-price-item.active .tj-transparent-btn:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-heading-primary);
}
.tj-price-item.style-2 {
  border: 1px solid var(--tj-color-border-1);
}
.tj-price-item .price-header {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--tj-color-border-1);
}
.tj-price-item .price-header .title {
  margin-bottom: 5px;
}
.tj-price-item .price-header .sub-title {
  display: block;
  font-size: 14px;
}
.tj-price-item .price-percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-top: 30px;
  padding-bottom: 20px;
}
.tj-price-item .price-percent .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 36px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-bold);
  line-height: 1;
}
.tj-price-item .price-percent .number span {
  display: block;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 80px;
  font-weight: var(--tj-fw-regular);
  line-height: 1;
}
.tj-price-item .price-percent .month {
  display: block;
  position: relative;
  top: -12px;
}
.tj-price-item .price-check {
  margin-top: 35px;
}
.tj-price-item .price-check ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-price-item .price-check ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--tj-color-common-black-2);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 20px;
}
.tj-price-item .price-check ul li: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) {
  .tj-price-item {
    padding: 35px 20px;
  }
  .tj-price-item .price-percent .number {
    font-size: 35px;
  }
  .tj-price-item .price-percent .number span {
    font-size: 60px;
  }
  .tj-price-item .price-percent .month {
    top: -12px;
  }
}
@media (max-width: 575px) {
  .tj-price-item {
    padding: 35px 15px;
  }
  .tj-price-item .price-percent .number {
    font-size: 35px;
  }
  .tj-price-item .price-percent .number span {
    font-size: 50px;
  }
  .tj-price-item .price-percent .month {
    top: -12px;
  }
}

/* !END: Theme Price CSS */
/**----------------------------------------
START: Theme Award CSS
----------------------------------------*/
.tj-award-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-dark);
}
.tj-award-section .sec-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-award-section .sec-heading .sec-text .sub-title {
  color: var(--tj-color-common-white);
}
.tj-award-section .sec-heading .sec-text .sec-title {
  color: var(--tj-color-common-white);
}
.tj-award-section .sec-heading .award-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--tj-color-common-white);
  border-radius: 50px;
}
.tj-award-section .sec-heading .award-cta .award-image {
  border-right: 1px solid var(--tj-color-common-white);
  padding: 16px 14px 16px 20px;
}
.tj-award-section .sec-heading .award-cta .award-image img {
  max-width: 58px;
  height: 50px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px) {
  .tj-award-section .sec-heading .award-cta .award-image {
    padding: 10px 20px 10px 14px;
  }
  .tj-award-section .sec-heading .award-cta .award-image img {
    max-width: 43px;
    height: 35px;
  }
}
.tj-award-section .sec-heading .award-cta .award-title {
  padding: 12px 20px 12px 14px;
}
.tj-award-section .sec-heading .award-cta .award-title .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.tj-award-section .award-pagination {
  text-align: center;
  margin-top: 25px;
  line-height: 1;
}
.tj-award-section .award-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--tj-color-common-white);
  border-radius: 0px;
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
  opacity: 1;
}
.tj-award-section .award-pagination .swiper-pagination-bullet:first-child {
  -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}
.tj-award-section .award-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--tj-color-theme-primary);
}
.tj-award-section .award-pagination .swiper-pagination-bullet:last-child {
  -webkit-clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-award-section .award-pagination {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-award-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-award-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.award-wrapper .award-slider {
  padding-top: 20px;
}

.award-tabs-area {
  max-width: 930px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 95px;
  position: relative;
  z-index: 1;
}
.award-tabs-area::before {
  position: absolute;
  content: "";
  width: 140%;
  height: 1px;
  bottom: -36px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--tj-color-border-2);
  z-index: -1;
}
.award-tabs-area .step {
  position: relative;
  z-index: 1;
}
.award-tabs-area .step::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  bottom: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  z-index: 1;
}
.award-tabs-area .step::after {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--tj-color-theme-dark);
  border: 1px solid var(--tj-color-border-2);
  border-radius: 50%;
}
.award-tabs-area .step .number {
  font-size: 28px;
  color: var(--tj-color-grey-2);
  font-family: var(--tj-ff-heading);
}
.award-tabs-area .step.active::before {
  background: var(--tj-color-theme-dark);
}
.award-tabs-area .step.active::after {
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .award-tabs-area {
    max-width: 800px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .award-tabs-area {
    max-width: 670px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .award-tabs-area {
    max-width: 500px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .award-tabs-area {
    max-width: 370px;
    margin-bottom: 75px;
  }
  .award-tabs-area::before {
    bottom: -25px;
  }
  .award-tabs-area .step::before {
    width: 8px;
    height: 8px;
    bottom: -29px;
  }
  .award-tabs-area .step::after {
    width: 26px;
    height: 26px;
    bottom: -38px;
  }
  .award-tabs-area .step .number {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .award-tabs-area {
    max-width: 245px;
    margin-bottom: 75px;
  }
  .award-tabs-area::before {
    bottom: -25px;
  }
  .award-tabs-area .step::before {
    width: 8px;
    height: 8px;
    bottom: -29px;
  }
  .award-tabs-area .step::after {
    width: 24px;
    height: 24px;
    bottom: -37px;
  }
  .award-tabs-area .step .number {
    font-size: 22px;
  }
}

.awards-item {
  text-align: center;
  border: 1px solid var(--tj-color-border-2);
  padding: 35px 30px;
  position: relative;
  z-index: 1;
}
.awards-item::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 27px;
  top: -14px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
      -ms-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  background: var(--tj-color-theme-dark);
  border: 1px solid var(--tj-color-border-2);
  border-left: none;
  border-bottom: none;
  z-index: -1;
}
.awards-item .title {
  color: var(--tj-color-common-white);
  margin-bottom: 20px;
}
.awards-item .desc {
  color: var(--tj-color-grey-2);
}
.awards-item .desc p:last-child {
  margin-bottom: 0;
}
.awards-item .award-button {
  margin-top: 25px;
}
.awards-item .award-button .text-button {
  color: var(--tj-color-common-white);
}
.awards-item .award-button .text-button .anim-btn {
  color: var(--tj-color-common-white);
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
.awards-item .award-button .text-button .btn-icon {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.awards-item .award-button .text-button .btn-icon i:first-child, .awards-item .award-button .text-button .btn-icon i:last-child {
  color: var(--tj-color-common-white);
}
.awards-item .award-button .text-button:hover {
  color: var(--tj-color-common-white);
}
.awards-item .award-button .text-button:hover .anim-btn > .anim-text {
  text-shadow: 0 23px 0 var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .awards-item {
    padding: 30px 24px;
  }
}
@media (max-width: 575px) {
  .awards-item {
    padding: 30px 15px;
  }
  .awards-item .title {
    margin-bottom: 15px;
  }
  .awards-item .award-button {
    margin-top: 20px;
  }
}

/* !END: Theme Award CSS */
/**----------------------------------------
START: Theme Video CSS
----------------------------------------*/
.tj-video-section {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.tj-video-section .video_img {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.tj-video-section .video_img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(19, 19, 19, 0.65);
  mix-blend-mode: multiply;
}
.tj-video-section .video_images {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-video-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-video-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.video_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 50px;
  -webkit-column-gap: 175px;
     -moz-column-gap: 175px;
          column-gap: 175px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video_wrapper .video-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 825px;
  width: 100%;
}
.video_wrapper .video-content .title {
  color: var(--tj-color-common-white);
  font-size: 88px;
  margin-bottom: 0;
  line-height: 1;
}
.video_wrapper .video-content .funfact-box {
  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;
  max-width: 440px;
  width: 100%;
  border-top: 1px solid var(--tj-color-border-2);
  margin-top: 225px;
}
.video_wrapper .video-content .funfact-box .funfact-item {
  max-width: 100%;
  width: auto;
  border-top: none;
  border-right: 1px solid var(--tj-color-border-2);
  padding: 30px 35px 0px 0px;
}
.video_wrapper .video-content .funfact-box .funfact-item:last-child {
  border-right: none;
  padding: 30px 0px 0px 35px;
}
.video_wrapper .video-content .funfact-box .funfact-item .tj-count {
  font-size: 52px;
  color: var(--tj-color-common-white);
}
.video_wrapper .video-content .funfact-box .funfact-item .counter {
  font-size: 52px;
  color: var(--tj-color-common-white);
}
.video_wrapper .video-content .funfact-box .funfact-item .sub-title {
  color: var(--tj-color-grey-1);
}
.video_wrapper .video-area .video-btn {
  position: relative;
  width: 100px;
  height: 100px;
  font-size: 20px;
  color: var(--tj-color-common-white);
  background: transparent;
  border: 2px solid var(--tj-color-common-white);
}
.video_wrapper .video-area .video-btn::before {
  width: 128px;
  height: 128px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  -webkit-animation: borderanimate2 2s linear infinite;
          animation: borderanimate2 2s linear infinite;
  z-index: 1;
}
.video_wrapper .video-area .video-btn::after {
  width: 156px;
  height: 156px;
  background-image: none;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  -webkit-animation: borderanimate2 2s linear infinite;
          animation: borderanimate2 2s linear infinite;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video_wrapper .video-content {
    max-width: 580px;
  }
  .video_wrapper .video-content .title {
    font-size: 68px;
  }
  .video_wrapper .video-content .funfact-box {
    margin-top: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video_wrapper .video-content {
    max-width: 380px;
  }
  .video_wrapper .video-content .title {
    font-size: 48px;
  }
  .video_wrapper .video-content .funfact-box {
    margin-top: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .video_wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .video_wrapper .video-content {
    max-width: 100%;
  }
  .video_wrapper .video-content .title {
    font-size: 38px;
  }
  .video_wrapper .video-content .funfact-box {
    margin-top: 50px;
  }
}
@media (max-width: 575px) {
  .video_wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .video_wrapper .video-content {
    max-width: 100%;
  }
  .video_wrapper .video-content .title {
    font-size: 38px;
  }
  .video_wrapper .video-content .funfact-box {
    margin-top: 40px;
  }
  .video_wrapper .video-content .funfact-box .funfact-item {
    padding: 25px 20px 0px 0px;
  }
  .video_wrapper .video-content .funfact-box .funfact-item .tj-count {
    font-size: 40px;
  }
  .video_wrapper .video-content .funfact-box .funfact-item .counter {
    font-size: 40px;
  }
  .video_wrapper .video-content .funfact-box .funfact-item:last-child {
    padding: 25px 0px 0px 20px;
  }
  .video_wrapper .video-area .video-btn {
    width: 80px;
    height: 80px;
  }
}

/* !END: Theme Video CSS */
/**----------------------------------------
START: Theme Breadcrumb CSS
----------------------------------------*/
.tj-breadcrumb-area {
  padding-top: 240px;
  padding-bottom: 140px;
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 2;
}
    .tj-breadcrumb-area::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgb(0 43 69 / 72%);
        z-index: -1;
    }
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-breadcrumb-area {
    padding-top: 220px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-breadcrumb-area {
    padding-top: 200px;
    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-breadcrumb-area {
    padding-top: 180px;
    padding-bottom: 80px;
  }
}

.breadcrumb-content-area {
  position: relative;
  z-index: 2;
}
.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
  font-size: 88px;
  color: var(--tj-color-common-white);
  margin-bottom: 10px;
  line-height: 1;
}
.breadcrumb-content-area .breadcrumb-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  padding: 6px 14px;
  z-index: 2;
}
.breadcrumb-content-area .breadcrumb-link > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  color: var(--tj-color-common-white);
  position: relative;
  line-height: 1;
  z-index: 1;
  margin-left: 15px;
  padding-right: 16px;
}
.breadcrumb-content-area .breadcrumb-link > span:first-child {
  margin-left: 0;
}
.breadcrumb-content-area .breadcrumb-link > span:first-child::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(25deg);
      -ms-transform: translateY(-50%) rotate(25deg);
          transform: translateY(-50%) rotate(25deg);
  background: var(--tj-color-grey-1);
}
.breadcrumb-content-area .breadcrumb-link > span:last-child {
  padding-right: 0px;
}
.breadcrumb-content-area .breadcrumb-link a {
  font-size: 16px;
  color: var(--tj-color-grey-1);
}
.breadcrumb-content-area .breadcrumb-link a:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 78px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 68px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 58px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 48px;
  }
}

/* !END: Breadcrumb CSS */
/**----------------------------------------
START: Theme Sec Title CSS
----------------------------------------*/
.sec-heading {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 50px;
}
.sec-heading .sub-title {
  display: inline-block;
  position: relative;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  letter-spacing: 0.17em;
  padding-left: 16px;
  margin-bottom: 20px;
  line-height: 1;
  z-index: 1;
}
.sec-heading .sub-title::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 13px;
  left: 0;
  top: -1px;
  background: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 0 100%, 0 40%);
  z-index: -1;
}
.sec-heading .sec-title {
  margin-bottom: 0;
  line-height: 1.1;
}
.sec-heading.style-2 .sub-title {
  padding: 5px 12px 3px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 20px;
}
.sec-heading.style-2 .sub-title::before {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

.tj-text-invert > div div div {
  opacity: 1;
}

/* !END: Theme Sec Title CSS */
/**----------------------------------------
START: Team Details CSS
----------------------------------------*/
.team-details {
  padding: 120px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding: 80px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details {
    padding: 60px 0;
  }
}
.team-details .sticky-lg-top {
  top: 100px;
  z-index: 2;
}
.team-details__img img {
  border-radius: var(--tj-br-md);
  width: 100%;
}
.team-details__content {
  padding-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__content {
    margin-top: 30px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__content {
    margin-top: 20px;
  }
}
.team-details .team-details__subtitle {
  margin-bottom: 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) {
  .team-details .team-details__subtitle {
    margin-bottom: 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) {
  .team-details__name {
    font-size: 36px;
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__name {
    font-size: 30px;
    margin-bottom: 8px;
  }
}
.team-details__desig {
  margin-bottom: 20px;
  color: var(--tj-color-grey-4);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}
.team-details__contact-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--tj-color-border-1);
  margin: 25px 0;
  border-radius: var(--tj-br-md);
  list-style: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul {
    margin: 20px 0;
  }
}
.team-details__contact-info ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 25px 28px;
  border-right: 1px solid var(--tj-color-border-1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.team-details__contact-info ul li:last-child {
  border-right: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__contact-info ul li {
    padding: 16px 18px;
    -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) {
  .team-details__contact-info ul li {
    padding: 12px 14px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.team-details__contact-info ul span {
  color: var(--tj-color-grey-4);
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__contact-info ul span {
    font-size: 13px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul span {
    font-size: 11px;
  }
}
.team-details__contact-info ul a {
  font-size: 20px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}
.team-details__contact-info ul a::after {
  content: "";
  width: 0;
  height: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 2px;
  left: 0;
  background-color: var(--tj-color-heading-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__contact-info ul a {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__contact-info ul a {
    font-size: 12px;
  }
}
.team-details__contact-info ul a:hover::after {
  width: 100%;
}
.team-details__experience {
  margin-top: 40px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__experience {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details__experience {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.team-details__experience__list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid var(--tj-color-border-1);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 25px 0;
  border-radius: var(--tj-br-md);
  list-style: none;
}
.team-details__experience__list ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  padding: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  border: 1px solid var(--tj-color-border-1);
  border-top: 0;
  border-left: 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) {
  .team-details__experience__list ul li {
    padding: 16px;
  }
}
.team-details__experience__list ul li p {
  margin-bottom: 0;
}
.team-details__experience__list ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 12px;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-top: 4px;
}
.team-details__experience__list ul li:last-child {
  border-right: 0;
}
.team-details__experience__list ul li:nth-child(2n) {
  border-right: 0;
}

/* !END: Team Details CSS *//*# sourceMappingURL=main.css.map */

.text-justify{
    text-align:justify;
}


/*Stikcy bar for product page*/
@media (min-width: 992px) {
    .sticky-sidebar-right {
        -webkit-animation: 700ms ease-in-out 0s normal none 1 running fadeInDown;
        position: sticky;
        top: 150px;
        right: 0;
        -webkit-transition: all .3s ease 0s;
        transition: all .3s ease 0s;
        background: var(--bs-neutral-0);
    }
}

/* For mobile screens, disable sticky behavior */
@media (max-width: 991px) {
    .sticky-sidebar-right {
        position: static;
    }
}