:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'Barlow', sans-serif;
  --tj-ff-heading: 'Barlow', sans-serif;
  --tj-ff-p: 'Barlow', sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 63px;
  --tj-fs-h2: 43px;
  --tj-fs-h3: 36px;
  --tj-fs-h4: 20px;
  --tj-fs-h5: 16px;
  --tj-fs-h6: 16px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #262E48;
  --tj-color-text-body: #777777;
  --tj-color-theme-primary: #F9F100;
  --tj-color-theme-secondary: #3989A4;
  --tj-color-theme-bg: #262E48;
  --tj-color-theme-bg-2: #EEEEEE;
  --tj-color-grey-1: #1F253A;
  --tj-color-grey-2: #1F253A;
  --tj-color-grey-3: #F7F1F0;
  --tj-color-border-1: #ededed;
}

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

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

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

body,
html,
.site-main {
  position: relative;
  overflow-x: hidden;
}

/**
  Typography CSS
*/
body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  line-height: 1.6;
}

a {
  text-decoration: none;
}

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

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

h2 {
  font-size: var(--tj-fs-h2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

h3 {
  font-size: var(--tj-fs-h3);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h3 {
    font-size: 32px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 28px;
  }
}

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

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

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

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

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

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

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

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

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

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

@media (max-width: 575px) {
  .row > * {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/**
  Buttons CSS
*/
.white-btn,
.transparent-btn,
.secondary-btn,
.primary-btn {
  display: inline-block;
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-1);
  background-color: var(--tj-color-theme-primary);
  border-radius: 4px;
  padding: 7px 16px;
  line-height: 1.2;
}
.white-btn span,
.transparent-btn span,
.secondary-btn span,
.primary-btn span {
  color: var(--tj-color-grey-1);
}
.white-btn:active, .white-btn:focus-visible,
.transparent-btn:active,
.transparent-btn:focus-visible,
.secondary-btn:active,
.secondary-btn:focus-visible,
.primary-btn:active,
.primary-btn:focus-visible {
  background-color: var(--tj-color-theme-primary);
}
.white-btn:active span, .white-btn:focus-visible span,
.transparent-btn:active span,
.transparent-btn:focus-visible span,
.secondary-btn:active span,
.secondary-btn:focus-visible span,
.primary-btn:active span,
.primary-btn:focus-visible span {
  color: var(--tj-color-grey-1);
}
.white-btn:hover,
.transparent-btn:hover,
.secondary-btn:hover,
.primary-btn:hover {
  color: var(--tj-color-grey-1);
  background-color: var(--tj-color-theme-primary);
}
.white-btn:hover span,
.transparent-btn:hover span,
.secondary-btn:hover span,
.primary-btn:hover span {
  color: var(--tj-color-grey-1);
}

.secondary-btn {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-secondary);
}
.secondary-btn span {
  color: var(--tj-color-common-white);
}
.secondary-btn:active, .secondary-btn:focus-visible {
  background-color: var(--tj-color-theme-secondary);
}
.secondary-btn:active span, .secondary-btn:focus-visible span {
  color: var(--tj-color-common-white);
}
.secondary-btn:hover {
  background-color: var(--tj-color-theme-secondary);
}
.secondary-btn:hover span {
  color: var(--tj-color-common-white);
}

.transparent-btn {
  color: var(--tj-color-theme-primary);
  border: 2px solid var(--tj-color-theme-primary);
  background: transparent;
  padding: 6px 16px;
}
.transparent-btn span {
  color: var(--tj-color-theme-primary);
}
.transparent-btn:active, .transparent-btn:focus-visible {
  border-color: var(--tj-color-theme-primary);
}
.transparent-btn:active span, .transparent-btn:focus-visible span {
  color: var(--tj-color-theme-primary);
}
.transparent-btn:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.transparent-btn:hover span {
  color: var(--tj-color-grey-1);
}

.white-btn {
  color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-common-white);
  background: transparent;
  padding: 6px 16px;
}
.white-btn span {
  color: var(--tj-color-common-white);
}
.white-btn:hover {
  background-color: var(--tj-color-common-white);
  border-color: var(--tj-color-common-white);
}
.white-btn:hover span {
  color: var(--tj-color-grey-1);
}

.border-btn {
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  line-height: 1;
  border: 1px solid var(--tj-color-theme-primary);
  padding: 8px 16px;
  border-radius: 4px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.border-btn:focus {
  color: var(--tj-color-theme-primary);
}
.border-btn:hover {
  color: var(--tj-color-grey-1);
  background-color: var(--tj-color-theme-primary);
}

/**----------------------------------------
START: back to top CSS
----------------------------------------*/
.back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper.back-to-top-btn-show {
    bottom: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .back-to-top-wrapper {
    right: 25px;
    bottom: 25px;
  }
}

.back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--tj-color-theme-secondary);
  -webkit-box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
          box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--tj-color-common-white);
  border-radius: 50%;
  -webkit-transition: all, 0.3s;
  transition: all, 0.3s;
}
.back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}
.back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}

/* !END: back to top CSS */
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
  background-color: var(--tj-color-theme-bg);
  padding: 35px 0;
}
.tj-header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: transparent;
}
.tj-header-area.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-bg);
  -webkit-animation: sticky 0.9s;
          animation: sticky 0.9s;
  border-bottom: none;
  -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);
  padding: 15px 0;
  z-index: 999;
}
.tj-header-area.sticky .mainmenu ul > li > a {
  padding: 25px 0;
}
.tj-header-area.sticky .mainmenu ul > li > a::before {
  bottom: 18px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area {
    padding: 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-header-area {
    padding: 10px 0;
  }
}

.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;
}
.header-wrapper .mainmenu-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 50px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-wrapper .mainmenu-box {
    gap: 25px;
    margin-left: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-wrapper .mainmenu-box {
    gap: 0px;
    margin-left: auto;
  }
}

.site-logo {
  max-width: 210px;
  width: 100%;
}
.site-logo a {
  display: inline-block;
}
.site-logo a img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .site-logo {
    max-width: 165px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .site-logo {
    max-width: 141px;
  }
}

.mainmenu ul {
  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;
  margin: 0;
  padding: 0;
  list-style: none;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  display: block;
  position: relative;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  color: var(--tj-color-common-white);
  z-index: 1;
  line-height: 1;
  padding: 37px 0;
}
.mainmenu ul > li > .sub-menu {
  position: absolute;
  left: 0;
  top: 110%;
  width: 212px;
  background-color: var(--tj-color-theme-bg);
  border: 2px solid var(--tj-color-theme-secondary);
  -webkit-box-shadow: 0 2px 40px 0 rgba(0, 9, 51, 0.5);
          box-shadow: 0 2px 40px 0 rgba(0, 9, 51, 0.5);
  border-radius: 4px;
  gap: 0;
  padding: 5px 20px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 99;
}
.mainmenu ul > li > .sub-menu::before {
  content: "";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 22px;
  height: 22px;
  background-color: var(--tj-color-theme-bg);
  border-right: 2px solid var(--tj-color-theme-secondary);
  border-top: 2px solid var(--tj-color-theme-secondary);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  left: 22px;
  top: -12px;
}
.mainmenu ul > li > .sub-menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.mainmenu ul > li > .sub-menu > li:not(:last-child) {
  border-bottom: 1px solid var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 19px 0;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  font-size: 15px;
  color: var(--tj-color-common-white);
  line-height: 1;
}
.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-theme-primary);
}
.mainmenu ul > li:hover > .sub-menu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: inherit;
}
.mainmenu ul > li.current-menu-ancestor, .mainmenu ul > li.current-menu-item, .mainmenu ul > li:hover {
  color: var(--tj-color-theme-primary);
}
.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);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}

.header-right-item .header-button {
  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: 12px;
}

.tj-header-area .menu-bar {
  margin-left: 25px;
}
@media (max-width: 575px) {
  .tj-header-area .menu-bar {
    margin-left: 15px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.mean-container .mean-bar {
  background-color: var(--tj-color-theme-secondary);
}

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

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

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

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

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

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

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

.tj-header-area .mobile-menu {
  overflow: hidden;
  position: fixed;
  left: 0;
  top: 72px;
  width: 100%;
  min-height: 90vh;
  overflow-y: auto;
  padding-left: 140px;
  background-color: var(--tj-color-theme-secondary);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: -1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area .mobile-menu {
    padding-left: 50px;
  }
}

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

.tj-header-area .mobile-menu .mobile-button .white-btn {
  margin-right: 12px;
}

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

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

.tj-header-area .mobile-menu ul li a:not(.mean-expand) {
  width: 100%;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 12px 0;
  letter-spacing: 1px;
  font-size: 22px;
  border: none;
}

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

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

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

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

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

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

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

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.copyright-area {
  padding-top: 30px;
  padding-bottom: 190px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .copyright-area {
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-area {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-area {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-area {
    padding-bottom: 80px;
  }
}

.copyright-wrapper {
  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;
  gap: 35px;
  -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) {
  .copyright-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.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;
  gap: 36px;
}
.copyright-menu ul li {
  font-size: 15px;
  color: var(--tj-color-grey-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .copyright-menu ul {
    gap: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-menu ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .copyright-menu ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 10px;
  }
  .copyright-menu ul li {
    font-size: 12px;
  }
}

.copyright-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.copyright-text .logo {
  display: inline-block;
  max-width: 48px;
  width: 100%;
  margin-bottom: 15px;
}
.copyright-text p {
  font-size: 15px;
  color: var(--tj-color-grey-2);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright-text {
    -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) {
  .copyright-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .copyright-text p {
    font-size: 12px;
  }
}

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  padding-top: 357px;
  padding-bottom: 152px;
}
.hero-section .banner-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.hero-section .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-section::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000721), to(#1f253a));
  background: linear-gradient(0deg, #000721 0%, #1f253a 100%);
  z-index: 1;
  opacity: 0.5;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section {
    padding-top: 315px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section {
    padding-top: 310px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    padding-top: 280px;
    padding-bottom: 81px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    padding-top: 233px;
    padding-bottom: 81px;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding-top: 233px;
    padding-bottom: 81px;
  }
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  max-width: 895px;
  width: 100%;
}
.hero-wrapper .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.hero-wrapper .title span {
  color: var(--tj-color-theme-primary);
}
.hero-wrapper .hero-button {
  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: 12px;
  padding-top: 55px;
}
.hero-wrapper .hero-button .primary-btn {
  font-size: 18px;
  padding: 16px 40px;
}
.hero-wrapper .hero-button .transparent-btn {
  font-size: 18px;
  padding: 14px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-wrapper .title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-wrapper .title {
    font-size: 44px;
  }
  .hero-wrapper .hero-button {
    padding-top: 39px;
  }
  .hero-wrapper .hero-button .primary-btn {
    padding: 10px 30px;
    font-size: 15px;
  }
  .hero-wrapper .hero-button .transparent-btn {
    padding: 8px 30px;
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .hero-wrapper .title {
    font-size: 40px;
  }
  .hero-wrapper .hero-button {
    padding-top: 39px;
  }
  .hero-wrapper .hero-button .primary-btn {
    padding: 9px 25px;
    font-size: 15px;
  }
  .hero-wrapper .hero-button .transparent-btn {
    padding: 8px 25px;
    font-size: 15px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Brand CSS
----------------------------------------*/
.brand-section {
  position: relative;
  padding-top: 90px;
  padding-bottom: 118px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .brand-section {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.brand-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.brand-slider .slide-transition {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.brand-slider .slide-transition .brand-item {
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 270px !important;
  min-height: 95px;
  line-height: 1;
  position: relative;
  border-right: 1px solid var(--tj-color-theme-secondary);
  padding-right: 60px;
  margin-right: 60px;
  z-index: 2;
}
.brand-slider .slide-transition .brand-item a {
  display: inline-block;
}
.brand-slider .slide-transition .brand-item img {
  max-height: 115px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .brand-slider .slide-transition .brand-item {
    width: 245px !important;
    padding-right: 45px;
    margin-right: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .brand-slider .slide-transition .brand-item {
    width: 250px !important;
    padding-right: 45px;
    margin-right: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .brand-slider .slide-transition .brand-item {
    width: 210px !important;
    padding-right: 40px;
    margin-right: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-slider .slide-transition .brand-item {
    width: 230px !important;
    padding-right: 30px;
    margin-right: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .brand-slider .slide-transition .brand-item {
    width: 210px !important;
    padding-right: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .brand-slider .slide-transition .brand-item {
    width: 150px !important;
    min-height: 75px;
    padding-right: 30px;
    margin-right: 30px;
  }
  .brand-slider .slide-transition .brand-item img {
    max-height: 65px;
  }
}

/* !END: Theme Brand CSS */
/**----------------------------------------
START: Theme Sec-Tilte CSS
----------------------------------------*/
.sec-title .title {
  margin-bottom: 0;
}

/* !END: Theme Sec-Tilte CSS */
/**----------------------------------------
START: Theme Benefit CSS
----------------------------------------*/
.group-section {
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.benefit-section {
  padding-bottom: 110px;
  position: relative;
}
.benefit-section .sec-title {
  margin-bottom: 90px;
}
.benefit-section .sec-title .title {
  font-size: 36px;
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .benefit-section {
    padding-bottom: 64px;
  }
  .benefit-section .sec-title {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .benefit-section {
    padding-bottom: 56px;
  }
  .benefit-section .sec-title {
    margin-bottom: 34px;
  }
  .benefit-section .sec-title .title {
    font-size: 26px;
  }
}

.benefit-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;
  max-width: 1150px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.benefit-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;
  position: relative;
  text-align: center;
  border-right: 1px solid var(--tj-color-theme-secondary);
  padding-right: 90px;
  margin-right: 90px;
  margin-bottom: 36px;
  z-index: 2;
}
.benefit-item:last-child {
  border-right: none;
  padding-right: 0px;
  margin-right: 0px;
}
.benefit-item:last-child .benefit-percent span {
  font-size: 43px;
  margin-bottom: 25px;
}
.benefit-item .benefit-icon {
  max-width: 80px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.benefit-item .benefit-percent span {
  display: inline-block;
  font-size: 70px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
}
.benefit-item .desc {
  font-size: 20px;
  max-width: 145px;
  width: 100%;
  font-weight: var(--tj-fw-light);
  color: var(--tj-color-common-white);
  line-height: 1.2;
}
.benefit-item .desc p {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .benefit-item {
    padding-right: 85px;
    margin-right: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .benefit-item {
    padding-right: 56px;
    margin-right: 56px;
  }
  .benefit-item .benefit-percent span {
    font-size: 60px;
  }
  .benefit-item .benefit-percent span.text {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .benefit-item {
    padding-right: 16px;
    margin-right: 16px;
  }
  .benefit-item .benefit-percent span {
    font-size: 48px;
  }
  .benefit-item .benefit-percent span.text {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .benefit-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-right: 0px;
    margin-right: 0px;
    border: none;
  }
  .benefit-item .benefit-icon {
    width: 63px;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .benefit-item .desc {
    font-size: 21px;
    max-width: 100%;
  }
  .benefit-item .benefit-percent {
    text-align: start;
  }
  .benefit-item .benefit-percent span {
    font-size: 48px;
    margin-bottom: 4px;
  }
  .benefit-item .benefit-percent span.text {
    font-size: 48px;
    margin-bottom: 8px;
  }
}

/* !END: Theme Benefit CSS */
/**----------------------------------------
START: Theme Analysis CSS
----------------------------------------*/
.analysis-section {
  padding-top: 158px;
  padding-bottom: 110px;
  position: relative;
  background-color: var(--tj-color-theme-bg-2);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}
.analysis-section .sec-title {
  margin-bottom: 72px;
}
.analysis-section .sec-title .title {
  margin-bottom: 10px;
}
.analysis-section .sec-title .desc {
  font-size: 24px;
  color: var(--tj-color-grey-2);
  line-height: 1.2;
}
.analysis-section .sec-title .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .analysis-section {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .analysis-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .analysis-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .analysis-section {
    padding-top: 65px;
    padding-bottom: 58px;
  }
  .analysis-section .sec-title {
    margin-bottom: 20px;
  }
  .analysis-section .sec-title .title {
    font-size: 26px;
    margin-bottom: 17px;
  }
  .analysis-section .sec-title .desc {
    font-size: 16px;
  }
}

/* !END: Theme Analysis CSS */
/**----------------------------------------
START: Theme Process CSS
----------------------------------------*/
.process-section {
  padding-top: 132px;
  padding-bottom: 152px;
}
.process-section .sec-title {
  max-width: 910px;
  width: 100%;
  margin-bottom: 70px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-section {
    padding-top: 67px;
    padding-bottom: 81px;
  }
  .process-section .sec-title {
    max-width: 300px;
    margin-bottom: 41px;
  }
  .process-section .sec-title .title {
    font-size: 26px;
  }
}

/* !END: Theme Process CSS */
/**----------------------------------------
START: Theme Cta CSS
----------------------------------------*/
.cta-section {
  padding-top: 117px;
  padding-bottom: 114px;
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.cta-section .sec-title {
  max-width: 820px;
  width: 100%;
  margin-bottom: 58px;
}
.cta-section .sec-title .pr-title {
  color: var(--tj-color-theme-primary);
  margin-bottom: 0;
}
.cta-section .sec-title .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.cta-section .sec-title .title span {
  color: var(--tj-color-theme-primary);
  margin-bottom: 0;
}
.cta-section .sec-title .desc {
  font-size: 24px;
  margin-top: 38px;
  color: var(--tj-color-common-white);
}
.cta-section .sec-title .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-section {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-section {
    padding-top: 80px;
    padding-bottom: 75px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-section {
    padding-top: 54px;
    padding-bottom: 84px;
  }
  .cta-section .sec-title {
    margin-bottom: 32px;
  }
  .cta-section .sec-title .pr-title {
    font-size: 26px;
  }
  .cta-section .sec-title .title {
    font-size: 26px;
  }
  .cta-section .sec-title .desc {
    font-size: 16px;
    margin-top: 31px;
  }
}

.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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.cta-wrapper:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-wrapper {
    margin-bottom: 0;
  }
  .cta-wrapper.style-2 .cta-item:last-child {
    border: none;
  }
  .cta-wrapper .cta-item {
    margin-bottom: 0;
  }
}

.cta-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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 185px;
  height: 216px;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 25px;
  border-right: 1px dotted var(--tj-color-theme-secondary);
  padding: 15px;
}
.cta-item:nth-child(7), .cta-item:last-child {
  border: none;
}
.cta-item .cta-images {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  margin-bottom: 30px;
}
.cta-item .cta-images a {
  display: inline-block;
}
.cta-item .sub-title {
  display: inline-block;
  font-size: 20px;
  color: var(--tj-color-common-white);
  max-width: 100px;
  width: 100%;
  line-height: 1.2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-item {
    width: 158px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-item {
    width: 132px;
  }
  .cta-item .cta-images {
    width: 70px;
    height: 70px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-item {
    width: 170px;
  }
  .cta-item:nth-child(7) {
    border-right: 1px dotted var(--tj-color-theme-secondary);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: auto;
    border-bottom: 1px dotted var(--tj-color-theme-secondary);
    border-right: none;
    padding: 15px 0;
  }
  .cta-item:nth-child(7), .cta-item:last-child {
    border-right: none;
    border-bottom: 1px dotted var(--tj-color-theme-secondary);
  }
  .cta-item .cta-images {
    width: 45px;
    height: 45px;
    margin-bottom: 0;
  }
  .cta-item .sub-title {
    max-width: 100%;
    width: auto;
  }
}

/* !END: Theme Cta CSS */
/**----------------------------------------
START: Theme Logo CSS
----------------------------------------*/
.logo-section {
  padding-top: 131px;
  padding-bottom: 20px;
}
.logo-section .sec-title {
  max-width: 730px;
  width: 100%;
  margin-bottom: 53px;
}
.logo-section .sec-title .title {
  margin-bottom: 41px;
}
.logo-section .sec-title .desc {
  font-size: 24px;
  color: var(--tj-color-grey-2);
  line-height: 1.2;
}
.logo-section .sec-title .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .logo-section {
    padding-top: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .logo-section {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .logo-section {
    padding-top: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .logo-section {
    padding-top: 82px;
  }
  .logo-section .sec-title {
    margin-bottom: 30px;
  }
  .logo-section .sec-title .title {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .logo-section .sec-title .desc {
    max-width: 310px;
    width: 100%;
    font-size: 16px;
    line-height: 1.4;
  }
}

.logo-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;
}

.logo-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-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 258px;
  height: 216px;
  line-height: 1;
  border-right: 1px dotted var(--tj-color-theme-secondary);
  margin-bottom: 20px;
}
.logo-item:last-child {
  border: none;
}
.logo-item .logo-images {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 1;
  margin-bottom: 20px;
}
.logo-item .sub-title {
  display: inline-block;
  font-size: 20px;
  color: var(--tj-color-grey-2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .logo-item {
    width: 222px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .logo-item {
    width: 186px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .logo-item {
    width: 138px;
  }
  .logo-item .logo-images {
    width: 80px;
    height: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .logo-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    height: auto;
    border-bottom: 1px dotted var(--tj-color-theme-secondary);
    border-right: none;
    margin-bottom: 0;
    padding: 20px 0;
  }
  .logo-item .logo-images {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
  }
}

/* !END: Theme Logo CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.breadcrumb-wrapper {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  padding-top: 291px;
  padding-bottom: 185px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.breadcrumb-wrapper::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(#000721), to(#1f253a));
  background: linear-gradient(0deg, #000721 0%, #1f253a 100%);
  z-index: -1;
}
.breadcrumb-wrapper.style-2 {
  padding-top: 187px;
  padding-bottom: 73px;
  background-position: right center;
  background-size: contain;
}
.breadcrumb-wrapper.style-2 .breadcrumb-heading {
  max-width: 100%;
}
.breadcrumb-wrapper.style-2 .breadcrumb-heading .title {
  font-size: 49.85px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-wrapper.style-2 {
    padding-top: 160px;
  }
  .breadcrumb-wrapper.style-2 .breadcrumb-heading .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper.style-2 {
    padding-top: 150px;
  }
  .breadcrumb-wrapper.style-2 .breadcrumb-heading .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-wrapper.style-2 {
    padding-top: 140px;
  }
  .breadcrumb-wrapper.style-2 .breadcrumb-heading .title {
    font-size: 34px;
  }
}
.breadcrumb-wrapper.style-3 {
  padding-top: 197px;
  padding-bottom: 83px;
  background-position: right top;
  background-size: contain;
}
.breadcrumb-wrapper.style-3 .breadcrumb-heading {
  max-width: 935px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.breadcrumb-wrapper.style-3 .breadcrumb-heading .title {
  font-size: 49.85px;
}
.breadcrumb-wrapper.style-3 .breadcrumb-heading .title span {
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-wrapper.style-3 {
    padding-top: 170px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading {
    max-width: 750px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper.style-3 {
    padding-top: 135px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading {
    max-width: 750px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-wrapper.style-3 {
    padding-top: 135px;
    padding-bottom: 80px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading {
    max-width: 750px;
  }
  .breadcrumb-wrapper.style-3 .breadcrumb-heading .title {
    font-size: 34px;
  }
}
.breadcrumb-wrapper.style-4 {
  padding-top: 231px;
  padding-bottom: 0px;
  background-color: var(--tj-color-theme-bg-2);
  z-index: 1;
}
.breadcrumb-wrapper.style-4::before {
  height: 80%;
  width: 100%;
  top: 0;
  z-index: -1;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content {
  max-width: 1143px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-button {
  margin-bottom: 31px;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-button .breadcrumb-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
  font-size: 30px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white);
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-button .breadcrumb-btn 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: 40px;
  height: 40px;
  line-height: 1;
  background-color: var(--tj-color-theme-secondary);
  border-radius: 50%;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-button .breadcrumb-btn span img {
  max-width: 20px;
  width: 100%;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text {
  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;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title {
  max-width: 600px;
  width: calc(100% - 140px);
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title .title {
  font-size: 50px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 0;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-auother {
  display: none;
  max-width: 140px;
  width: 100%;
  text-align: end;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-auother img {
  max-width: 85px;
  height: 85px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-auother .title {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
  margin-top: 12px;
  margin-bottom: 0;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .desc {
  font-size: 20px;
  color: var(--tj-color-common-white);
  margin-top: 35px;
  max-width: 1085px;
  width: 100%;
  line-height: 1.4;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .desc p:last-child {
  margin-bottom: 0;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-images {
  margin-top: 74px;
}
.breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-images img {
  border-radius: 12px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title .title {
    font-size: 38px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-images {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title .title {
    font-size: 36px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .desc {
    font-size: 18px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-images {
    margin-top: 45px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 20px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title {
    width: 100%;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-text .breadcrumb-title .title {
    font-size: 34px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .desc {
    font-size: 16px;
  }
  .breadcrumb-wrapper.style-4 .breadcrumb-content .breadcrumb-images {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper.style-4 {
    padding-top: 220px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-wrapper.style-4 {
    padding-top: 200px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper.style-4 {
    padding-top: 150px;
  }
  .breadcrumb-wrapper.style-4::before {
    height: 90%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .breadcrumb-wrapper {
    padding-top: 285px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-wrapper {
    padding-top: 265px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-wrapper {
    padding-top: 220px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-wrapper {
    padding-top: 200px;
    padding-bottom: 81px;
  }
}

.breadcrumb-heading {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.breadcrumb-heading .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.breadcrumb-heading .title span {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-heading .title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .breadcrumb-heading .title {
    font-size: 30px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme Works CSS
----------------------------------------*/
.works-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 107px;
  background-color: var(--tj-color-theme-bg-2);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: contain;
}
.works-section .sec-title {
  margin-bottom: 46px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .works-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .works-section {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}

.works-content-area {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .works-content-area .sec-title {
    text-align: center;
    margin-bottom: 41px;
  }
  .works-content-area .sec-title .title {
    font-size: 26px;
  }
}

.works-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 34px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .works-wrapper {
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .works-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}

.works-item {
  max-width: 367px;
  width: 100%;
  min-height: 550px;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  -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);
}
.works-item .works-images img {
  width: 100%;
}
.works-item .works-content {
  padding: 33px 28px 63px 24px;
}
.works-item .works-content .works-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
.works-item .works-content .works-header .work-title .title {
  font-size: 29px;
  margin-bottom: 0;
}
.works-item .works-content .works-header .work-icons {
  max-width: 38px;
  width: 100%;
}
.works-item .works-content .works-header .work-icons img {
  width: 100%;
}
.works-item .works-content .works-list ul {
  list-style-type: none;
}
.works-item .works-content .works-list ul li {
  position: relative;
  font-size: 20.21px;
  padding-bottom: 15px;
  padding-left: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.works-item .works-content .works-list ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
}
.works-item .works-content .works-list ul li::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 6px;
  left: 0;
  background: var(--tj-color-theme-primary);
}
.works-item .works-content .works-list ul li p:last-child {
  margin-bottom: 0;
}
.works-item .works-content .works-list ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.works-item .works-content .works-list ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .works-item {
    max-width: 348px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .works-item {
    max-width: 290px;
  }
  .works-item .works-content {
    padding: 33px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .works-item {
    max-width: 333px;
  }
  .works-item .works-content {
    padding: 33px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .works-item {
    min-height: auto;
  }
  .works-item .works-content {
    padding: 13px 15px 33px 15px;
  }
  .works-item .works-content .works-header .work-title .title {
    font-size: 24px;
  }
  .works-item .works-content .works-list .desc {
    font-size: 16px;
  }
}

/* !END: Theme Works CSS */
/**----------------------------------------
START: Theme Integrate CSS
----------------------------------------*/
.intergrates-section {
  padding-top: 118px;
  padding-bottom: 111px;
}
.intergrates-section .sec-title {
  margin-bottom: 25px;
}
.intergrates-section .img_wrapper {
  margin-left: calc((100% - 1200px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
  padding-right: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .intergrates-section .img_wrapper {
    margin-left: calc((100% - 1140px) / 2);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .intergrates-section .img_wrapper {
    margin-left: calc((100% - 960px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .intergrates-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .intergrates-section .img_wrapper {
    margin-left: calc((100% - 720px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .intergrates-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .intergrates-section .img_wrapper {
    margin-left: calc((100% - 540px) / 2);
  }
  .intergrates-section .img_wrapper .sec-title .title {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .intergrates-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .intergrates-section .img_wrapper {
    margin-left: calc((100% - 390px) / 2);
  }
  .intergrates-section .img_wrapper .sec-title .title {
    font-size: 26px;
  }
}

.intergrates-wrapper {
  max-width: 1542px;
  width: 100%;
}
.intergrates-wrapper img {
  width: 100%;
}

/* !END: Theme Integrate CSS */
/**----------------------------------------
START: Theme Data CSS
----------------------------------------*/
.data-model-section {
  position: relative;
  padding-top: 102px;
  padding-bottom: 30px;
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: contain;
  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) {
  .data-model-section {
    padding-top: 80px;
    padding-bottom: 30px;
  }
}

.data-model-content-area {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.data-model-content-area .sec-title {
  margin-bottom: 44px;
}
.data-model-content-area .sec-title .title {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .data-model-content-area .sec-title {
    margin-bottom: 40px;
  }
  .data-model-content-area .sec-title .title {
    font-size: 26px;
  }
}

.data-model-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .data-model-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.data-model-item {
  position: relative;
  margin-bottom: 60px;
  padding-right: 30px;
  margin-right: 30px;
  max-width: 370px;
  min-height: 446px;
  width: 100%;
}
.data-model-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--tj-color-theme-secondary);
}
.data-model-item:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.data-model-item:last-child::before {
  display: none;
}
.data-model-item .data-model-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.data-model-item .data-model-header .data-model-title .title {
  font-size: 29px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 0;
}
.data-model-item .data-model-header .data-model-icons {
  max-width: 75px;
  width: 100%;
}
.data-model-item .data-model-header .data-model-icons.data_2 {
  max-width: 50px;
}
.data-model-item .data-model-header .data-model-icons img {
  width: 100%;
  height: 75px;
}
.data-model-item .data-model-list ul {
  list-style-type: none;
}
.data-model-item .data-model-list ul li {
  position: relative;
  font-size: 20px;
  color: var(--tj-color-common-white);
  line-height: 1.4;
  padding-left: 30px;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.data-model-item .data-model-list ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
}
.data-model-item .data-model-list ul li::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 6px;
  left: 0;
  background: var(--tj-color-theme-primary);
}
.data-model-item .data-model-list ul li p:last-child {
  margin-bottom: 0;
}
.data-model-item .data-model-list ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.data-model-item .data-model-list ul li:last-child::before {
  display: none;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .data-model-item {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .data-model-item {
    max-width: 290px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .data-model-item {
    max-width: 318px;
    min-height: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .data-model-item {
    min-height: auto;
    max-width: 100%;
    padding-right: 0px;
    margin-right: 0px;
  }
  .data-model-item::before {
    display: none;
  }
  .data-model-item .data-model-header {
    margin-bottom: 25px;
  }
  .data-model-item .data-model-header .data-model-title .title {
    font-size: 25px;
  }
  .data-model-item .data-model-header .data-model-icons {
    max-width: 45px;
  }
  .data-model-item .data-model-header .data-model-icons.data_2 {
    max-width: 35px;
  }
  .data-model-item .data-model-list .desc {
    font-size: 16px;
  }
}

/* !END: Theme Data CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.testimonial-section {
  position: relative;
  padding-top: 75px;
  padding-bottom: 150px;
  background-color: var(--tj-color-theme-bg-2);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  overflow: hidden;
}
.testimonial-section.style-2 {
  position: relative;
  padding-top: 82px;
  padding-bottom: 130px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right -220px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-section.style-2 {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-section.style-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-section {
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-section {
    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) {
  .testimonial-section {
    padding-bottom: 80px;
  }
}

.testimonial-wrapper {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  -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);
  margin-bottom: 45px;
}
.testimonial-item:nth-child(2) {
  margin-bottom: 0;
}
.testimonial-item:nth-child(2) .testimonial-content .title {
  max-width: 410px;
}
.testimonial-item .images-box {
  width: 37%;
  background-color: var(--tj-color-grey-3);
  border-radius: 10px 0px 0px 10px;
}
.testimonial-item .images-box .testimonial-logo {
  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: 428px;
  height: 245px;
  line-height: 1;
}
.testimonial-item .images-box .testimonial-images {
  width: 100%;
}
.testimonial-item .images-box .testimonial-images img {
  width: 100%;
  border-radius: 0px 0px 0px 10px;
}
.testimonial-item .testimonial-content {
  width: 63%;
  background-color: var(--tj-color-common-white);
  padding: 30px 57px 40px 60px;
  border-radius: 0px 10px 10px 0px;
}
.testimonial-item .testimonial-content .title {
  font-size: 32px;
  max-width: 270px;
  width: 100%;
  margin-bottom: 25px;
}
.testimonial-item .testimonial-content .funfact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item {
  max-width: 316px;
  width: 100%;
  background-color: var(--tj-color-theme-primary);
  padding: 15px 28px 20px;
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  font-size: 63px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number span {
  font-size: 63px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .text {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  text-align: end;
  line-height: 1.3;
  max-width: 122px;
  width: 100%;
  margin-left: auto;
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item:nth-child(2) {
  background-color: var(--tj-color-theme-bg);
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item:nth-child(2) .counter-text .number {
  color: var(--tj-color-theme-primary);
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item:nth-child(2) .counter-text .number span {
  color: var(--tj-color-theme-primary);
}
.testimonial-item .testimonial-content .funfact-wrapper .funfact-item:nth-child(2) .counter-text .text {
  color: var(--tj-color-theme-primary);
  max-width: 125px;
  width: 100%;
  margin-left: auto;
}
.testimonial-item .testimonial-content .testimonial-quote {
  position: relative;
  z-index: 1;
}
.testimonial-item .testimonial-content .testimonial-quote .quote-1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 33px;
  width: 100%;
}
.testimonial-item .testimonial-content .testimonial-quote .quote-1 img {
  width: 100%;
}
.testimonial-item .testimonial-content .testimonial-quote .quote-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 33px;
  width: 100%;
}
.testimonial-item .testimonial-content .testimonial-quote .quote-2 img {
  width: 100%;
}
.testimonial-item .testimonial-content .testimonial-quote .desc {
  font-size: 20px;
  color: var(--tj-color-heading-primary);
  max-width: 475px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-item .testimonial-content .testimonial-quote .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item .testimonial-content {
    padding: 30px 40px 30px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item .testimonial-content {
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-content .title {
    font-size: 26px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number {
    font-size: 45px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number span {
    font-size: 45px;
  }
  .testimonial-item .images-box .testimonial-logo {
    width: 345px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item {
    margin-bottom: 30px;
  }
  .testimonial-item .testimonial-content {
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-content .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number span {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-1 {
    max-width: 26px;
    top: -28px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-2 {
    max-width: 26px;
    bottom: -20px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .desc {
    font-size: 16px;
  }
  .testimonial-item .images-box .testimonial-logo {
    width: 256px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
    border-radius: 0px;
  }
  .testimonial-item .testimonial-content {
    width: 100%;
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-content .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number span {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-1 {
    max-width: 26px;
    top: -28px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-2 {
    max-width: 26px;
    bottom: -10px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .desc {
    max-width: 265px;
    font-size: 16px;
  }
  .testimonial-item .images-box {
    width: 100%;
    border-radius: 0px;
  }
  .testimonial-item .images-box .testimonial-logo {
    width: 100%;
  }
  .testimonial-item .images-box .testimonial-images img {
    border-radius: 0px;
  }
}
@media (max-width: 575px) {
  .testimonial-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
    border-radius: 0px;
  }
  .testimonial-item .testimonial-content {
    width: 100%;
    padding: 30px 15px;
  }
  .testimonial-item .testimonial-content .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item {
    padding: 15px 15px 20px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .funfact-wrapper .funfact-item .counter-text .number span {
    font-size: 30px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-1 {
    max-width: 26px;
    top: -28px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .quote-2 {
    max-width: 26px;
    bottom: -10px;
  }
  .testimonial-item .testimonial-content .testimonial-quote .desc {
    max-width: 265px;
    font-size: 16px;
  }
  .testimonial-item .images-box {
    width: 100%;
    border-radius: 0px;
  }
  .testimonial-item .images-box .testimonial-logo {
    width: 100%;
  }
  .testimonial-item .images-box .testimonial-images img {
    border-radius: 0px;
  }
}

.testimonial-item-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 350px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.testimonial-item-two .testimonial-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  z-index: 1;
}
.testimonial-item-two .testimonial-content .quote-1 {
  max-width: 32px;
  width: 100%;
  margin-bottom: 27px;
}
.testimonial-item-two .testimonial-content .desc {
  font-size: 20px;
  color: var(--tj-color-heading-primary);
  max-width: 675px;
  width: 100%;
}
.testimonial-item-two .testimonial-content .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-item-two .testimonial-content .quote-2 {
  max-width: 32px;
  width: 100%;
  position: absolute;
  bottom: -20px;
  right: 0;
}
.testimonial-item-two .testimonial-auother {
  max-width: 130px;
  width: 100%;
}
.testimonial-item-two .testimonial-auother .auother-images {
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-bottom: 36px;
}
.testimonial-item-two .testimonial-auother .auother-images img {
  width: 100%;
}
.testimonial-item-two .testimonial-auother .auother-title {
  text-align: end;
}
.testimonial-item-two .testimonial-auother .auother-title .title {
  font-weight: var(--tj-fw-bold);
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item-two {
    gap: 285px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item-two {
    gap: 105px;
  }
  .testimonial-item-two .testimonial-content .quote-2 {
    right: -30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item-two {
    gap: 50px;
  }
  .testimonial-item-two .testimonial-content .quote-2 {
    right: -15px;
  }
  .testimonial-item-two .testimonial-content .desc {
    font-size: 18px;
    max-width: 490px;
  }
  .testimonial-item-two .testimonial-auother .auother-images {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item-two {
    gap: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .testimonial-item-two .testimonial-content .quote-1 {
    max-width: 25px;
    margin-bottom: 15px;
  }
  .testimonial-item-two .testimonial-content .quote-2 {
    right: 0px;
    bottom: -10px;
    max-width: 25px;
  }
  .testimonial-item-two .testimonial-content .desc {
    font-size: 16px;
    max-width: 100%;
  }
  .testimonial-item-two .testimonial-auother .auother-images {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: 0;
  }
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.blog-section {
  position: relative;
  padding-top: 129px;
  padding-bottom: 121px;
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  overflow: hidden;
}
.blog-section.style-2 {
  padding-top: 204px;
  padding-bottom: 57px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section.style-2 {
    padding-top: 150px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-section.style-2 {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
.blog-section .sec-title {
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 74px;
}
.blog-section .sec-title .title {
  font-size: 50px;
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-section {
    padding-top: 120px;
    padding-bottom: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-section {
    padding-top: 100px;
    padding-bottom: 30px;
  }
  .blog-section .sec-title {
    margin-bottom: 60px;
  }
  .blog-section .sec-title .title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .blog-section .sec-title {
    margin-bottom: 40px;
  }
  .blog-section .sec-title .title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .blog-section .sec-title {
    margin-bottom: 40px;
  }
  .blog-section .sec-title .title {
    font-size: 34px;
  }
}

.blog-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
  max-width: 1170px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.blog-wrapper .blog-item.style-2.sticky {
  max-width: 100%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 25px;
  min-height: auto;
  border-bottom: 1px solid var(--tj-color-theme-primary);
  padding-bottom: 100px;
}
.blog-wrapper .blog-item.style-2.sticky > .blog-auother {
  display: none;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content {
  max-width: 508px;
  width: 100%;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .title {
  font-size: 49.85px;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .desc {
  font-size: 20px;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .blog-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: none;
  padding-top: 30px;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .auhother-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .auhother-header .auother-title {
  font-size: 16px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-common-white);
}
.blog-wrapper .blog-item.style-2.sticky .blog-content .auhother-header img {
  max-width: 35px;
  height: 35px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.blog-wrapper .blog-item.style-2.sticky .blog-images {
  max-width: 584px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-wrapper .blog-item.style-2.sticky .blog-content .title {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-content .desc {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper .blog-item.style-2.sticky {
    padding-bottom: 40px;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-content .title {
    font-size: 35px;
    margin-bottom: 15px;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-content .desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-wrapper .blog-item.style-2.sticky {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 20px;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-images a {
    width: 100%;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-images a img {
    height: 197px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-content .title {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .blog-wrapper .blog-item.style-2.sticky .blog-content .desc {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper {
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-wrapper {
    gap: 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.blog-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 368px;
  width: 100%;
  min-height: 576px;
  margin-bottom: 74px;
}
.blog-item .blog-images {
  max-width: 367px;
  width: 100%;
  margin-bottom: 23px;
}
.blog-item .blog-images a {
  display: inline-block;
}
.blog-item .blog-images a img {
  width: 100%;
  border-radius: 10px;
}
.blog-item .blog-content .title {
  font-size: 30px;
  margin-bottom: 20px;
}
.blog-item .blog-content .title a {
  color: var(--tj-color-theme-primary);
}
.blog-item .blog-content .desc {
  color: var(--tj-color-common-white);
  line-height: 1.5;
}
.blog-item .blog-content .desc p:last-child {
  margin-bottom: 0;
}
.blog-item .blog-content .blog-auother {
  display: none;
}
.blog-item .blog-auother {
  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;
  padding-top: 18px;
  border-top: 1px solid var(--tj-color-theme-secondary);
  margin-top: auto;
}
.blog-item .blog-auother .auhother-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  visibility: hidden;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-item .blog-auother .auhother-header .auother-title {
  color: var(--tj-color-common-white);
  font-size: 12px;
  font-weight: var(--tj-fw-bold);
  margin-bottom: 4px;
}
.blog-item .blog-auother .auhother-header .sub-title {
  display: block;
  font-size: 12px;
  color: var(--tj-color-common-white);
}
.blog-item .blog-auother .auhother-header img {
  max-width: 35px;
  height: 35px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item {
    max-width: 290px;
  }
  .blog-item .blog-content .blog-text .title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item {
    max-width: 330px;
    margin-bottom: 40px;
  }
  .blog-item .blog-content {
    margin-bottom: 30px;
  }
  .blog-item .blog-content .blog-text .title {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item {
    max-width: 100%;
    margin-bottom: 20px;
    min-height: auto;
  }
  .blog-item .blog-images {
    margin-bottom: 20px;
  }
  .blog-item .blog-content {
    margin-bottom: 30px;
  }
  .blog-item .blog-content .blog-text .title {
    font-size: 24px;
  }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.blog-details-section {
  padding-top: 150px;
  padding-bottom: 258px;
  background-color: var(--tj-color-theme-bg-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-section {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.blog-details-wrapper {
  max-width: 1143px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  font-size: 20px;
  line-height: 1.4;
}
.blog-details-wrapper h1,
.blog-details-wrapper h2,
.blog-details-wrapper h3,
.blog-details-wrapper h4,
.blog-details-wrapper h5,
.blog-details-wrapper h6 {
  margin-bottom: 15px;
}
.blog-details-wrapper h2 {
  font-size: 42px;
}
.blog-details-wrapper p {
  color: var(--tj-color-heading-primary);
  margin-bottom: 15px;
}
.blog-details-wrapper ol {
  padding-left: 20px;
}
.blog-details-wrapper ol li {
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  z-index: 1;
}
.blog-details-wrapper ol li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-details-wrapper ol li ul,
.blog-details-wrapper ol li ol {
  padding-left: 20px;
  margin-top: 15px;
}
.blog-details-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-details-wrapper ul li {
  position: relative;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-heading-primary);
  padding-left: 55px;
  z-index: 1;
}
.blog-details-wrapper ul li:not(:last-child) {
  margin-bottom: 15px;
}
.blog-details-wrapper ul li::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 8px;
  left: 0;
  background-color: var(--tj-color-theme-primary);
}
.blog-details-wrapper ul li ul,
.blog-details-wrapper ul li ol {
  margin-top: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-details-wrapper h2 {
    font-size: 40px;
  }
  .blog-details-wrapper ul li {
    padding-left: 40px;
  }
  .blog-details-wrapper ul li::before {
    top: 5px;
    width: 25px;
    height: 25px;
  }
  .blog-details-wrapper img {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-details-wrapper h2 {
    font-size: 35px;
  }
  .blog-details-wrapper ul li {
    padding-left: 35px;
  }
  .blog-details-wrapper ul li::before {
    top: 5px;
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 575px) {
  .blog-details-wrapper h2 {
    font-size: 30px;
  }
}

.blog-cta {
  max-width: 1143px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--tj-color-theme-bg);
  margin-top: 258px;
  padding: 60px 70px;
  border-radius: 10px;
}
.blog-cta .cta-title {
  color: var(--tj-color-theme-primary);
}
.blog-cta .desc {
  font-size: 30px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--tj-color-common-white);
}
.blog-cta .cta-actions {
  margin-top: 60px;
  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;
  gap: 20px;
}
.blog-cta .cta-actions .content-title {
  color: var(--tj-color-theme-primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.blog-cta .cta-actions .content-desc {
  color: var(--tj-color-theme-primary);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.blog-cta .cta-actions .action-buttons {
  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: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-cta {
    margin-top: 150px;
    padding: 40px 35px;
  }
  .blog-cta .desc {
    font-size: 25px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-cta {
    margin-top: 100px;
    padding: 30px 25px;
  }
  .blog-cta .desc {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .blog-cta .cta-actions {
    margin-top: 40px;
  }
  .blog-cta .cta-actions .content-title {
    font-size: 20px;
  }
  .blog-cta .cta-actions .content-desc {
    font-size: 20px;
  }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.team-section {
  position: relative;
  padding-top: 101px;
  padding-bottom: 125px;
  background-color: var(--tj-color-theme-bg);
  background-repeat: no-repeat;
  background-position: right -50px;
  background-size: cover;
  overflow: hidden;
}
.team-section .sec-title {
  margin-bottom: 73px;
}
.team-section .sec-title .title {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-section {
    padding-bottom: 60px;
  }
  .team-section .sec-title {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-section {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .team-section .sec-title {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .team-section .sec-title {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .team-section .sec-title {
    margin-bottom: 40px;
  }
  .team-section .sec-title .title {
    font-size: 35px;
  }
}

.team-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@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-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.team-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin-bottom: 60px;
  padding-right: 30px;
  margin-right: 30px;
  max-width: 301px;
  min-height: 490px;
  width: 100%;
}
.team-item::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--tj-color-theme-secondary);
}
.team-item:last-child {
  padding-right: 0px;
  margin-right: 0px;
}
.team-item:last-child::before {
  display: none;
}
.team-item .team-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 31px;
}
.team-item .team-auother .team-text .title {
  font-size: 30px;
  color: var(--tj-color-common-white);
  margin-bottom: 3px;
}
.team-item .team-auother .team-text .sub-title {
  display: block;
  font-weight: var(--tj-fw-light);
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.team-item .team-list ul {
  list-style-type: none;
}
.team-item .team-list ul li {
  position: relative;
  font-size: 16px;
  color: var(--tj-color-common-white);
  line-height: 1.4;
  padding-left: 25px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-weight: var(--tj-fw-light);
}
.team-item .team-list ul li::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
}
.team-item .team-list ul li::after {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  top: 6px;
  left: 0;
  background: var(--tj-color-theme-primary);
}
.team-item .team-list ul li p:last-child {
  margin-bottom: 0;
}
.team-item .team-list ul li:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.team-item .team-list ul li:last-child::before {
  display: none;
}
.team-item .team-logo-box {
  margin-top: auto;
}
.team-item .team-logo-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.team-item .team-logo-box ul li img {
  max-width: 100px;
  width: auto;
  max-height: 40px;
  height: auto;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-item {
    max-width: 264px;
    margin-right: 20px;
    padding-right: 20px;
  }
  .team-item .team-auother .team-text .title {
    font-size: 26px;
  }
  .team-item .team-auother .team-text .sub-title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item {
    max-width: 290px;
    margin-right: 20px;
    padding-right: 20px;
  }
  .team-item .team-auother .team-text .title {
    font-size: 26px;
  }
  .team-item .team-auother .team-text .sub-title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item {
    max-width: 328px;
    margin-right: 20px;
    padding-right: 20px;
  }
  .team-item .team-auother .team-text .title {
    font-size: 26px;
  }
  .team-item .team-auother .team-text .sub-title {
    font-size: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item {
    max-width: 100%;
    margin-right: 0px;
    padding-right: 0px;
    min-height: auto;
  }
  .team-item::before {
    display: none;
  }
  .team-item .team-logo-box {
    margin-top: 30px;
  }
  .team-item .team-auother .team-text .title {
    font-size: 25px;
  }
  .team-item .team-auother .team-text .sub-title {
    font-size: 15px;
  }
}

/* !END: Theme Team CSS *//*# sourceMappingURL=threelc-core.css.map */