@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root {
  --tj-ff-body: 'Manrope', sans-serif;
  --tj-ff-heading: 'Manrope', sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  --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;
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 74px;
  --tj-fs-h2: 48px;
  --tj-fs-h3: 32px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 18px;
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #0c1e21;
  --tj-color-text-body: #364e52;
  --tj-color-text-body-2: #a9b8b8;
  --tj-color-text-body-3: #67787a;
  --tj-color-text-body-4: #18292c;
  --tj-color-theme-primary: #6d8c2d;
  --tj-color-theme-bg: #d8e5e5;
  --tj-color-theme-dark: #0c1e21;
  --tj-color-theme-dark-2: #18292c;
  --tj-color-theme-dark-3: #364e52;
  --tj-color-theme-dark-4: #67787a;
  --tj-color-grey-1: #ecf0f0;
  --tj-color-grey-2: #a9b8b8;
  --tj-color-border-1: #c9d1d1;
  --tj-color-border-2: #313d3d;
}

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

.site-main,
html {
  position: relative;
}

body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  background-color: var(--tj-color-grey-1);
  line-height: 1.5;
}

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-medium);
  line-height: 1.2;
  letter-spacing: -0.03em;
  transition: 0.3s ease-in-out;
}

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

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h1 {
    font-size: 28px !important;
    line-height: 1.2 !important;
  }
}

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

@media only screen and (min-width: 992px) and (max-width: 1199px),
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: 36px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 30px;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h3 {
    font-size: 28px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h3 {
    font-size: 25px;
  }
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  h4 {
    font-size: 22px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  h4 {
    font-size: 20px;
  }
}

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

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

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 {
  transition: 0.3s ease-in-out;
}

a:focus,
button:focus,
button:focus-visible {
  text-decoration: none;
  outline: none;
  box-shadow: 0px 0px 0px;
}

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

a,
button {
  color: var(--tj-color-theme-primary);
  outline: none;
  border: none;
  background: transparent;
  padding: 0px;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

select,
.nice-select,
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="email"],
input[type="url"],
textarea {
  outline: none;
  background-color: var(--tj-color-common-white);
  height: auto;
  width: 100%;
  font-size: var(--tj-fs-body);
  border: 1px solid var(--tj-color-border-1);
  color: var(--tj-color-text-body);
  padding: 10px 15px;
  box-shadow: 0px 0px 0px;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  appearance: none;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-common-white);
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

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

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

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

::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
}

::placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
}

img {
  max-width: 100%;
}

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

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

.fix {
  overflow: hidden;
}

.section-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.section-gap-2 {
  padding-top: 100px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-gap-2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.gap-top,
.section-top-gap {
  padding-top: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .gap-top,
  .section-top-gap {
    padding-top: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .gap-top,
  .section-top-gap {
    padding-top: 70px;
  }
}

.gap-bottom,
.section-bottom-gap {
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .gap-bottom,
  .section-bottom-gap {
    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) {

  .gap-bottom,
  .section-bottom-gap {
    padding-bottom: 70px;
  }
}

.section-gap-x {
  margin-left: 15px;
  margin-right: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .section-gap-x {}
}

.section-separator {
  border-top: 1px dashed var(--tj-color-border-1);
}

.sticky-lg-top {
  top: 30px;
  z-index: 2;
  transition: 0.3s ease-in-out;
}

body:has(.sticky) .sticky-lg-top {
  top: 115px;
}

.tj-primary-btn {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: #6d8c2d;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  padding: 5px 5px 5px 25px;
  text-align: center;
  border-radius: 50px;
  line-height: 1;
  z-index: 2;
  overflow: hidden;
}

.tj-primary-btn .btn-text {
  color: var(--tj-color-common-white);
  overflow: hidden;
}

.tj-primary-btn .btn-text span {
  display: flex;
  line-height: normal;
  text-shadow: 0px 30px 0px;
  backface-visibility: hidden;
  transform: translateY(0px);
  transition: 0.4s ease-in-out;
}

.tj-primary-btn .btn-icon {
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
}

.tj-primary-btn .btn-icon i {
  color: #6d8c2d;
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}

.tj-primary-btn.btn-dark {
  background-color: var(--tj-color-theme-dark);
}

.tj-primary-btn.btn-dark .btn-icon {
  background-color: var(--tj-color-common-white);
}

.tj-primary-btn.btn-dark .btn-icon i {
  color: var(--tj-color-theme-dark);
}

.tj-primary-btn:hover .btn-text span {
  transform: translateY(-30px);
}

.tj-primary-btn:hover .btn-icon i {
  transform: rotate(0deg);
}

.text-btn {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  text-align: center;
  line-height: 1;
  z-index: 2;
}

.text-btn .btn-text {
  color: var(--tj-color-heading-primary);
  overflow: hidden;
}

.text-btn .btn-text span {
  display: flex;
  line-height: 1;
  text-shadow: 0px 30px 0px;
  backface-visibility: hidden;
  transform: translateY(0px);
  transition: 0.4s ease-in-out;
}

.text-btn .btn-icon {
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background-color: var(--tj-color-theme-dark);
  border-radius: 50%;
}

.text-btn .btn-icon i {
  color: var(--tj-color-common-white);
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}

.text-btn:hover .btn-text span {
  transform: translateY(-30px);
}

.text-btn:hover .btn-icon {
  background-color: var(--tj-color-theme-primary);
}

.text-btn:hover .btn-icon i {
  transform: rotate(0deg);
}

.header-area {
  background-color: var(--tj-color-common-white);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: relative;
  z-index: 99;
}

.header-area.header-1 {
  margin-bottom: 15px;
}

.header-area.header-1 .header-wrapper {
  padding: 0px 18px;
  background-color: var(--tj-color-common-white);
}

.header-area.header-2.header-absolute {
  background-color: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 30px;
  left: 15px;
  width: calc(100% - 60px);
  z-index: 999;
  backdrop-filter: blur(10px);
  border-radius: 14px;
}

.header-area.header-2.header-absolute .search_popup {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.header-area.header-2.header-absolute .search_popup .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]),
.header-area.header-2.header-absolute .search_popup .search-box input[type="text"] {
  background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.header-2.header-absolute {
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
}

.header-area.header-2 .header-wrapper {
  padding: 0px 8px;
}

.header-area.header-3.header-absolute {
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 30px);
  z-index: 999;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.header-3.header-absolute {
    width: 100%;
  }
}

.header-area.header-3 .header-wrapper {
  padding: 0px 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.header-area.header-duplicate {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.header-area.sticky {
  position: fixed;
  width: calc(100% - 30px);
  top: 0px;
  left: 0px;
  animation: 0.9s ease 0s 1 normal none running sticky;
  border-bottom: none;
  z-index: 999;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
  opacity: 1;
  visibility: visible;
  background-color: var(--tj-color-common-white);
  display: block;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-area.sticky {
    width: 100%;
    margin: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 0px 8px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 0px 4px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .header-area.header-3 .header-wrapper,
  .header-area.header-2 .header-wrapper,
  .header-area.header-1 .header-wrapper {
    padding: 15px 0px;
  }
}

.header-top {
  background-color: var(--tj-color-theme-primary);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 0px 12px;
  margin-bottom: 15px;
}

.header-top-content {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.header-top-content .topbar-text {
  color: var(--tj-color-common-white);
  padding: 13px 0px;
  margin: 0px;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 5px;
}

.header-top-content .topbar-text i {
  color: var(--tj-color-common-white);
  font-size: 20px;
}

.header-top-content .topbar-text a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
}

.header-top-content .topbar-text a::after {
  content: "";
  font-size: 21px;
  line-height: 1.2;
  font-weight: normal;
  display: inline-flex;
  color: var(--tj-color-common-white);
  font-family: bexon-icons !important;
}

.header-top-content .topbar-text a:hover {
  opacity: 0.7;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-top-content .topbar-text {
    font-size: 15px;
  }

  .header-top-content .topbar-text i {
    font-size: 18px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .topbar-text {
    font-size: 15px;
    padding: 10px 0px;
    width: 100%;
    -webkit-box-pack: center;
    justify-content: center;
  }

  .header-top-content .topbar-text i {
    font-size: 18px;
  }
}

.header-top-content .header-info {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.header-top-content .header-info .info-item {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  position: relative;
  padding: 0px 15px;
  border-left: 1px dashed rgba(255, 255, 255, 0.15);
}

.header-top-content .header-info .info-item:last-child {
  padding-right: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .header-info .info-item:last-child {
    display: none;
  }
}

.header-top-content .header-info .info-item span {
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-common-white);
}

.header-top-content .header-info .info-item a {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content .header-info .info-item {
    border: 0px;
    padding: 0px 10px 10px;
  }
}

.header-top-content .header-info .social-links ul li a {
  width: 22px;
  height: 22px;
  font-size: 14px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top-content {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-top {
    padding: 0px 8px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-top {
    padding: 0px;
  }
}

.header-bottom {
  border-bottom: 1px dashed rgb(201, 209, 209);
}

.header-wrapper {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  z-index: 99;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .header-wrapper {
    padding: 15px 0px;
  }
}

.site_logo .logo {
  display: inline-block;
  max-width: 130px;
  width: 100%;
}

.menu-area {
  gap: 25px;
}

.mainmenu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 30px;
}

.mainmenu ul>li {
  position: relative;
  z-index: 1;
}

.mainmenu ul>li>a {
  position: relative;
  font-size: 16px;
  color: var(--tj-color-common-black);
  display: block;
  padding: 37px 0px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
}

.mainmenu ul>li.menu-item-has-children>a,
.mainmenu ul>li.has-dropdown>a {
  padding-right: 20px;
}

.mainmenu ul>li.menu-item-has-children>a::after,
.mainmenu ul>li.has-dropdown>a::after {
  content: "";
  font-family: bexon-icons;
  color: inherit;
  font-size: 12px;
  position: absolute;
  top: 40px;
  right: 0px;
}

.mainmenu ul>li.menu-item-has-children:hover>a::after,
.mainmenu ul>li.has-dropdown:hover>a::after {
  transform: rotate(-180deg);
}

.mainmenu ul>li.current-menu-ancestor a,
.mainmenu ul>li.current-menu-item a,
.mainmenu ul>li:hover a {
  color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor a::after,
.mainmenu ul>li.current-menu-item a::after,
.mainmenu ul>li:hover a::after {
  color: var(--tj-color-theme-primary);
}

.mainmenu ul>li.current-menu-ancestor a::before,
.mainmenu ul>li.current-menu-item a::before,
.mainmenu ul>li:hover a::before {
  opacity: 1;
  visibility: visible;
}

.mainmenu ul>li>.sub-menu {
  display: block;
  position: absolute;
  width: 220px;
  top: 100%;
  left: 0px;
  z-index: 99;
  text-align: left;
  background-color: var(--tj-color-common-white);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 15px 0px;
  border-radius: 10px;
  transform: scaleY(0);
  transform-origin: center top;
  opacity: 0;
  visibility: hidden;
  gap: 0px;
  padding: 10px 0px;
  pointer-events: none;
  transition: 0.4s;
}

.mainmenu ul>li>.sub-menu>li {
  display: block;
  width: 100%;
}

.mainmenu ul>li>.sub-menu>li>a {
  position: relative;
  padding: 10px 20px;
  color: var(--tj-color-text-body);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mainmenu ul>li>.sub-menu>li>a::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #6d8c2d;
  border-radius: 50%;
  display: block !important;
}

.mainmenu ul>li>.sub-menu>li>a::before {
  display: none;
}

.mainmenu ul>li>.sub-menu>li:last-child {
  padding-bottom: 0px;
}

.mainmenu ul>li>.sub-menu>li.menu-item-has-children>a::after,
.mainmenu ul>li>.sub-menu>li.has-dropdown>a::after {
  content: "";
  top: 10px;
  right: 15px;
  color: var(--tj-color-text-body);
  transform: rotate(-90deg);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a,
.mainmenu ul>li>.sub-menu>li:hover>a {
  color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::before,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::before,
.mainmenu ul>li>.sub-menu>li:hover>a::before {
  opacity: 1;
  visibility: visible;
}

.mainmenu ul>li>.sub-menu>li.current-menu-ancestor>a::after,
.mainmenu ul>li>.sub-menu>li.current-menu-item>a::after,
.mainmenu ul>li>.sub-menu>li:hover>a::after {
  color: var(--tj-color-theme-primary);
}

.mainmenu ul>li>.sub-menu>li>.sub-menu {
  left: 100%;
  top: -10px;
}

.mainmenu ul>li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
  transition: 0.5s;
  pointer-events: inherit;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 16px;
  }
}

.header-search {
  line-height: 1;
  position: relative;
}

.header-search .search {
  color: var(--tj-color-heading-primary);
  font-size: 20px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--tj-color-grey-1);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.header-search .search i {
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search .search {
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
}

.header-search .search.search-hide {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
}

.header-search .search_close_btn {
  color: var(--tj-color-heading-primary);
  font-size: 20px;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--tj-color-grey-1);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0px;
  top: 0px;
}

.header-search .search_close_btn i {
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search .search_close_btn {
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
}

.header-search .search_close_btn.close-show {
  opacity: 1;
  visibility: visible;
}

.header-right-item {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}

.header-right-item .tj-primary-btn .btn-icon {
  width: 38px;
  height: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-item .tj-primary-btn .btn-icon {
    width: 35px;
    height: 35px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-right-item {
    gap: 12px;
  }
}

.menu_bar {
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0px;
  left: 0px;
  margin-left: 5px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.menu_bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--tj-color-common-black);
  border-radius: 10px;
  margin-right: auto;
  backface-visibility: hidden;
  transition: 0.3s;
}

.menu_bar span:last-child,
.menu_bar span:first-child {
  width: 25px;
}

.menu_bar.mobile_menu_bar {
  width: 50px;
  height: 50px;
  padding: 12px;
  background: var(--tj-color-theme-primary);
  border-radius: 7px;
}

.menu_bar.mobile_menu_bar span {
  background-color: var(--tj-color-common-white);
}

.menu_bar:hover span {
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .menu_bar {
    margin-left: 0px;
  }
}

.header-2.header-absolute .mainmenu>ul>li>a {
  color: var(--tj-color-common-white);
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-2.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-2.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
  color: currentcolor;
  top: 35px;
}

.header-2.header-absolute .mainmenu>ul>li:hover>a,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a {
  color: var(--tj-color-text-body-2);
}

.header-2.header-absolute .mainmenu>ul>li:hover>a::after,
.header-2.header-absolute .mainmenu>ul>li.current-menu-ancestor>a::after {
  color: currentcolor;
}

.header-2.header-absolute .menu_bar span {
  background-color: var(--tj-color-common-white);
}

.header-3.header-absolute .mainmenu>ul>li>a {
  padding-top: 32px;
  padding-bottom: 32px;
}

.header-3.header-absolute .mainmenu>ul>li.menu-item-has-children>a::after,
.header-3.header-absolute .mainmenu>ul>li.has-dropdown>a::after {
  color: currentcolor;
  top: 35px;
}

.tj-footer-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  padding-top: 0px;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-section {
    padding-top: 150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-section {}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-section {}
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-footer-section {}
}

.footer-main-area {
  position: relative;
  padding: 100px 0px 40px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-main-area {
    padding: 70px 0px;
  }
}

.footer-logo {
  max-width: 150px;
}

.award-logo-area {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.award-logo-area .award-logo {
  max-width: 136px;
}

.footer-widget .footer-text {
  max-width: 280px;
  width: 100%;
}

.footer-widget .footer-text p {
  margin-top: 28px;
  margin-bottom: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .footer-text p {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .footer-text {
    max-width: 100%;
  }
}

.footer-widget .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 33px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget .title {
    margin-bottom: 18px;
  }
}

.footer-widget.footer-col-1 .footer-text p {
  color: var(--tj-color-text-body-2);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-widget.footer-col-1 {
    margin-bottom: 10px;
  }
}

.social-links ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links ul li a {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: rgba(12, 30, 33, 0.3);
  font-size: 16px;
  line-height: 1;
}

.social-links ul li a i {
  color: var(--tj-color-theme-bg);
}

.social-links ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  transform: translateY(-3px);
}

.social-links ul li a:hover i {
  color: var(--tj-color-common-white);
}

.social-links ul li::after {
  display: none;
}

.social-links.style-2 ul li a {
  background-color: var(--tj-color-common-white);
  opacity: 0.4;
}

.social-links.style-2 ul li a i {
  color: var(--tj-color-theme-primary);
}

.social-links.style-2 ul li a:hover {
  opacity: 1;
}

.social-links.style-3 ul li a {
  background-color: var(--tj-color-common-white);
  opacity: 0.3;
}

.social-links.style-3 ul li a i {
  color: var(--tj-color-theme-dark);
}

.social-links.style-3 ul li a:hover {
  background-color: rgb(255, 255, 255);
  opacity: 1;
}

.social-links.style-3 ul li a:hover i {
  color: #6d8c2d;
}

.widget-nav-menu {
  padding-left: 40px;
}

.widget-nav-menu ul {
  list-style: none;
}

.widget-nav-menu ul li {
  padding: 6px 0px;
}

.widget-nav-menu ul li:first-child {
  padding-top: 0px;
}

.widget-nav-menu ul li a {
  color: var(--tj-color-text-body);
}

.widget-nav-menu ul li a .badge {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50px;
  padding: 3px 6px 4px;
}

.widget-nav-menu ul li a:hover {
  color: var(--tj-color-theme-primary);
  padding-left: 5px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu {
    padding-left: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-nav-menu {
    padding-left: 80px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-nav-menu {
    padding-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-nav-menu {
    margin-top: 30px;
  }
}

.widget-nav-menu.footer-col-3,
.widget-nav-menu.footer-col-2 {
  padding-inline-start: 115px;
}

.widget-nav-menu.footer-col-3 .title,
.widget-nav-menu.footer-col-2 .title {
  color: var(--tj-color-common-white);
}

.widget-nav-menu.footer-col-3 ul li a,
.widget-nav-menu.footer-col-2 ul li a {
  color: var(--tj-color-text-body-2);
}

.widget-nav-menu.footer-col-3 ul li a:hover,
.widget-nav-menu.footer-col-2 ul li a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {

  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    padding-inline-start: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .widget-nav-menu.footer-col-3,
  .widget-nav-menu.footer-col-2 {
    margin-top: 30px;
    padding-inline-start: 0px;
  }
}

.widget-nav-menu.footer-col-3 {
  padding-inline-start: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu.footer-col-3 {
    padding-inline-start: 80px;
  }
}

@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) {
  .widget-nav-menu.footer-col-3 {
    margin-top: 30px;
    padding-inline-start: 0px;
  }
}

.widget-subscribe {
  max-width: 350px;
  width: 100%;
  margin-inline-start: auto;
}

.widget-subscribe .title {
  margin-bottom: 25px;
  font-weight: var(--tj-fw-medium);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-subscribe {
    margin-inline-start: 0px;
    margin-top: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe {
    max-width: 100%;
    margin-inline-start: 0px;
    margin-top: 30px;
  }
}

.subscribe-form {
  position: relative;
}

.subscribe-form input[type="email"] {
  height: 64px;
  padding: 15px 60px 15px 25px;
  border: 0px;
  border-radius: 10px;
}

.subscribe-form input[type="checkbox"] {
  position: relative;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  border: 1px solid var(--tj-color-theme-dark);
  border-radius: 3px;
  appearance: none;
  cursor: pointer;
}

.subscribe-form input[type="checkbox"]::before {
  content: "";
  font-size: 10px;
  color: var(--tj-color-common-white);
  position: absolute;
  width: 100%;
  text-align: center;
  line-height: 16px;
  transform: scale(0.5);
  opacity: 0;
  transition: 0.3s ease-in-out;
  font-family: bexon-icons !important;
}

.subscribe-form input[type="checkbox"]:checked {
  background-color: var(--tj-color-theme-dark);
}

.subscribe-form input[type="checkbox"]:checked::before {
  transform: scale(1);
  opacity: 1;
}

.subscribe-form button {
  position: absolute;
  width: 64px;
  height: 64px;
  right: 0px;
  top: 0px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}

.subscribe-form button i {
  line-height: 1;
  display: inline-flex;
  transition: 0.3s linear;
}

.subscribe-form button:hover i,
.subscribe-form button:focus i {
  transform: scale(0.8);
}

.subscribe-form button::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 20px;
  height: 24px;
  border-left: 1px solid var(--tj-color-border-1);
}

.subscribe-form label {
  color: var(--tj-color-text-body);
  margin-top: 20px;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}

.subscribe-form label a {
  color: var(--tj-color-theme-dark);
  font-weight: var(--tj-fw-sbold);
  margin-left: 4px;
}

.subscribe-form label a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .subscribe-form {
    margin-top: 18px;
  }
}

.copyright-content-area {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0px;
}

.copyright-content-area .footer-contact ul {
  list-style: none;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 22px;
}

.copyright-content-area .footer-contact ul li a {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 7px;
  color: var(--tj-color-text-body);
}

.copyright-content-area .footer-contact ul li a .icon {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary);
  font-size: 28px;
  line-height: 1;
}

.copyright-content-area .footer-contact ul li a .icon i {
  color: var(--tj-color-common-white);
}

.copyright-content-area .footer-contact ul li a .text {
  position: relative;
}

.copyright-content-area .footer-contact ul li a .text::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: auto;
  right: 0px;
  width: 0px;
  height: 1px;
  background-color: var(--tj-color-text-body);
  transition: 0.3s ease-in-out;
}

.copyright-content-area .footer-contact ul li a:hover .text::before {
  width: 100%;
  left: 0px;
  right: auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .footer-contact {
    width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .social-links ul {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .social-links {
    width: 100%;
  }
}

.copyright-content-area .copyright-text p {
  margin: 0px;
}

.copyright-content-area .copyright-text a {
  color: var(--tj-color-common-black);
}

.copyright-content-area .copyright-text a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .copyright-text {
    width: 100%;
    text-align: center;
  }
}

.copyright-content-area .copyright-menu ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.copyright-content-area .copyright-menu ul li {
  position: relative;
  margin-right: 15px;
  padding-right: 10px;
  z-index: 1;
}

.copyright-content-area .copyright-menu ul li::before {
  content: "";
  background: var(--tj-color-border-2);
  position: absolute;
  width: 1px;
  height: 11px;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}

.copyright-content-area .copyright-menu ul li:hover a {
  color: var(--tj-color-common-white);
}

.copyright-content-area .copyright-menu ul li a {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-text-body-2);
}

.copyright-content-area .copyright-menu ul li:last-child {
  padding-right: 0px;
  margin-right: 0px;
}

.copyright-content-area .copyright-menu ul li:last-child::before {
  display: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area .copyright-menu {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .copyright-content-area {
    gap: 18px;
  }
}

.tj-copyright-area {
  padding-bottom: 30px;
}

.tj-copyright-area .copyright-content-area {
  border-top: 1px solid var(--tj-color-border-1);
  border-bottom: 1px solid var(--tj-color-border-1);
  padding: 20px 0px;
}

.tj-footer-section.footer-2 {
  background-color: var(--tj-color-theme-dark);
  padding-top: 100px;
}

.tj-footer-section.footer-2 .footer-col-1 {
  position: relative;
}

.tj-footer-section.footer-2 .footer-col-1::before {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -50px;
  width: 350px;
  height: 300px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  filter: blur(50px);
  opacity: 0.15;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-footer-section.footer-2 {
    padding-top: 60px;
  }
}

.footer-subscribe {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 50px;
  border-radius: 12px;
}

.footer-subscribe .subscribe-form {
  width: 49%;
}

.footer-subscribe .subscribe-form input[type="email"] {
  color: var(--tj-color-text-body-2);
  background-color: transparent;
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 5px 205px 5px 30px;
}

.footer-subscribe .subscribe-form input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
}

.footer-subscribe .subscribe-form input[type="email"]::placeholder {
  color: var(--tj-color-text-body-2);
}

.footer-subscribe .subscribe-form button {
  width: auto;
  height: auto;
  top: 6px;
  right: 8px;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}

.footer-subscribe .subscribe-form button::before {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-subscribe .subscribe-form {
    width: 70%;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-subscribe .subscribe-form {
    width: 100%;
    margin-top: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .footer-subscribe {
    padding: 30px 20px;
  }
}

.subscribe-logo {
  max-width: 225px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .subscribe-logo {
    max-width: 160px;
  }
}

.widget-contact {
  padding-inline-start: 76px;
}

.widget-contact .title {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-contact {
    padding-inline-start: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-contact {
    margin-top: 30px;
    padding-inline-start: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-contact {
    margin-top: 30px;
    padding-inline-start: 0px;
  }
}

.footer-contact-info {
  max-width: 230px;
  width: 100%;
}

.footer-contact-info .contact-item {
  margin-bottom: 14px;
}

.footer-contact-info .contact-item:last-child {
  margin-bottom: 0px;
}

.footer-contact-info .contact-item span {
  color: var(--tj-color-text-body-2);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
}

.footer-contact-info .contact-item span i {
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  display: inline-flex;
  line-height: 1;
}

.footer-contact-info .contact-item a {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
  margin-bottom: 3px;
}

.footer-contact-info .contact-item a:hover {
  color: var(--tj-color-theme-primary);
}

.footer-marquee {
  border-top: 1px dashed var(--tj-color-border-2);
  border-bottom: 1px dashed var(--tj-color-border-2);
}

.footer-marquee .marquee-text {
  opacity: 0.2;
}

.footer-marquee .marquee-text:hover {
  opacity: 0.7;
}

.tj-copyright-area-2 .copyright-content-area {
  padding: 25px 0px;
}

.tj-copyright-area-2 .copyright-text p {
  color: var(--tj-color-text-body-2);
}

.tj-copyright-area-2 .copyright-text a {
  color: var(--tj-color-common-white);
}

.tj-copyright-area-2 .copyright-text a:hover {
  color: var(--tj-color-theme-bg);
}

.tj-footer-section.footer-3 {
  background-color: var(--tj-color-theme-dark);
  position: relative;
  z-index: 1;
  padding-top: 0px;
  margin-bottom: 15px;
}

.tj-footer-section.footer-3 .footer-main-area {
  padding-top: 120px;
  padding-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-section.footer-3 .footer-main-area {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-footer-section.footer-3 .footer-main-area {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

.footer-bottom-area {
  padding-bottom: 50px;
}

.widget-subscribe-2 {
  max-width: 850px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 12px;
  margin-inline-start: auto;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 50px;
}

.widget-subscribe-2 .title {
  color: var(--tj-color-common-white);
  max-width: 250px;
  width: 100%;
  margin-bottom: 25px;
  font-weight: var(--tj-fw-medium);
}

.widget-subscribe-2 .subscribe-form {
  -webkit-box-flex: 1;
  flex: 1 1 0%;
}

.widget-subscribe-2 .subscribe-form input[type="email"] {
  background-color: transparent;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  color: var(--tj-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type="email"]::placeholder {
  color: var(--tj-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form button::before {
  border-color: var(--tj-color-theme-dark-4);
}

.widget-subscribe-2 .subscribe-form input[type="checkbox"] {
  border: 1px solid var(--tj-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form input[type="checkbox"]::before {
  color: var(--tj-color-theme-dark);
}

.widget-subscribe-2 .subscribe-form input[type="checkbox"]:checked {
  background-color: var(--tj-color-common-white);
  border-color: var(--tj-color-common-white);
}

.widget-subscribe-2 .subscribe-form label {
  color: var(--tj-color-text-body-2);
}

.widget-subscribe-2 .subscribe-form label a {
  color: var(--tj-color-common-white);
}

.widget-subscribe-2 .subscribe-form label a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe-2 .subscribe-form {
    margin-top: 0px;
    flex-basis: auto;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-subscribe-2 {
    max-width: 760px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-subscribe-2 {
    padding: 30px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-subscribe-2 {
    max-width: 100%;
    margin-inline-start: 0px;
    margin-top: 30px;
    padding: 30px 20px;
    gap: 0px;
  }
}

.tj-copyright-area-3 {
  background-color: var(--tj-color-theme-primary);
}

.tj-copyright-area-3 .copyright-content-area {
  -webkit-box-pack: center;
  justify-content: center;
  padding: 25px 0px;
}

.tj-copyright-area-3 .copyright-text p {
  color: var(--tj-color-common-white);
}

.tj-copyright-area-3 .copyright-text a {
  color: var(--tj-color-common-white);
}

.tj-copyright-area-3 .copyright-text a:hover {
  color: var(--tj-color-theme-bg);
}

.back-to-top-wrapper {
  position: fixed;
  right: 60px;
  bottom: 0px;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper {
    right: 45px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .back-to-top-wrapper {
    right: 15px;
  }
}

.back-to-top-btn {
  color: var(--tj-color-heading-primary);
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
}

.back-to-top-btn span {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 20px;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
}

.back-to-top-wrapper.back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 75px;
}

.back-to-top-wrapper.back-to-top-btn-show:hover {
  transform: translateY(-6px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .back-to-top-wrapper.back-to-top-btn-show {
    right: 30px;
    bottom: 30px;
  }
}

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

.search_popup {
  position: absolute;
  top: 101%;
  left: 0px;
  width: 100%;
  height: auto;
  background-color: var(--tj-color-common-white);
  padding: 80px 0px;
  transform: translateY(calc(-100% - 200px));
  transition: transform 0.3s ease-in-out 0.2s, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 10;
  border-radius: 12px;
}

.search_popup .search_close {
  position: absolute;
  top: 36px;
  right: 36px;
}

.search_popup .search_close .search_close_btn {
  font-size: 24px;
  color: var(--tj-color-theme-dark);
}

.search_popup .search_close .search_close_btn svg {
  width: 24px;
  height: 24px;
  transition: 0.4s ease-in-out;
}

.search_popup .search_close .search_close_btn svg path {
  fill: var(--tj-color-theme-dark);
}

.search_popup .search_close .search_close_btn svg:hover {
  transform: rotate(90deg);
}

.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--tj-color-theme-primary);
}

.search_popup.search-opened {
  transform: translateY(0%);
  transition-delay: 0s;
}

.search_popup.search-opened .search_form .search_input {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  transition-delay: 0.5s;
}

.search_popup .logo {
  max-width: 150px;
  width: 100%;
  position: absolute;
  left: 36px;
  top: 36px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .search_popup {
    display: none;
  }
}

.tj_search_wrapper {
  min-height: 100px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.tj_search_wrapper .search_form {
  width: 100%;
}

.tj_search_wrapper .search_form form .search_input {
  position: relative;
  z-index: 1;
}

.tj_search_wrapper .search_form form .search_input .search-box {
  position: relative;
  z-index: 1;
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]),
.tj_search_wrapper .search_form form .search_input .search-box input[type="text"] {
  width: 100%;
  height: 65px;
  font-size: 20px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-text-body);
  border-color: var(--tj-color-border-1);
  background: transparent;
  padding: 16px 90px 16px 24px;
  border-radius: 10px;
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::-webkit-input-placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type="text"]::-webkit-input-placeholder {
  font-size: 20px;
  color: var(--tj-color-text-body);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::placeholder,
.tj_search_wrapper .search_form form .search_input .search-box input[type="text"]::placeholder {
  font-size: 20px;
  color: var(--tj-color-text-body);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::-webkit-input-placeholder,
  .tj_search_wrapper .search_form form .search_input .search-box input[type="text"]::-webkit-input-placeholder {
    font-size: 20px;
  }

  .tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::placeholder,
  .tj_search_wrapper .search_form form .search_input .search-box input[type="text"]::placeholder {
    font-size: 20px;
  }
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]):focus,
.tj_search_wrapper .search_form form .search_input .search-box input[type="text"]:focus {
  border-color: var(--tj-color-theme-primary);
}

.tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]):focus+button,
.tj_search_wrapper .search_form form .search_input .search-box input[type="text"]:focus+button {
  border-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .tj_search_wrapper .search_form form .search_input .search-box input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]),
  .tj_search_wrapper .search_form form .search_input .search-box input[type="text"] {
    font-size: 20px;
  }
}

.tj_search_wrapper .search_form form .search_input .search-box button {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 60px;
  font-size: 25px;
  color: var(--tj-color-theme-primary);
  width: 100%;
  height: 100%;
}

.tj_search_wrapper .search_form form .search_input .search-box button::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 18px;
  height: 30px;
  border-left: 1px solid var(--tj-color-border-1);
}

.search-popup-overlay {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 30, 33, 0.01);
  z-index: 99;
  transform: translateY(calc(-100% - 80px));
  transition: 0.3s ease-in-out 0.1s;
}

.search-popup-overlay.search-popup-overlay-open {
  transform: translateY(0px);
}

.hamburger-area {
  position: fixed;
  right: -490px;
  top: 15px;
  width: 450px;
  height: calc(100% - 30px);
  box-shadow: rgba(0, 0, 0, 0.5) -5px 0px 20px -5px;
  transition: 1s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
  scrollbar-width: none;
  overflow-y: scroll;
  border-radius: 0px;
}

.hamburger-area::-webkit-scrollbar {
  display: none;
}

.hamburger-area.opened {
  right: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hamburger-area.opened {
    right: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hamburger-area {
    top: 0px;
    height: 100%;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }
}

@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}

.hamburger_bg {
  background-color: #6d8c2d;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: -1;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.hamburger_wrapper {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: auto;
  height: 100%;
}

.hamburger_wrapper::before {
  content: "";
  position: absolute;
  top: 3%;
  right: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  filter: blur(50px);
  opacity: 0.26;
  z-index: -1;
  backdrop-filter: blur(10px);
}

@media (max-width: 575px) {
  .hamburger_wrapper {
    padding: 40px 20px;
  }
}

.hamburger_top {
  margin-bottom: 30px;
}

.hamburger_close_btn {
  display: inline-block;
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-common-white);
}

@media (max-width: 575px) {
  .hamburger_close_btn {
    font-size: 30px;
  }
}

.hamburger_close_btn:hover {
  transform: rotate(90deg);
  color: var(--tj-color-theme-bg);
}

.hamburger_search {
  position: relative;
  margin-bottom: 30px;
}

.hamburger_search select,
.hamburger_search .nice-select,
.hamburger_search input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]),
.hamburger_search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0px 40px 0px 16px;
  background: var(--tj-color-common-white);
  outline: none;
  font-size: 18px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-text-body);
  border: 1px solid var(--tj-color-border-1);
  border-radius: 10px;
}

.hamburger_search select::-webkit-input-placeholder,
.hamburger_search .nice-select::-webkit-input-placeholder,
.hamburger_search input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])::-webkit-input-placeholder,
.hamburger_search input::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}

.hamburger_search select::placeholder,
.hamburger_search .nice-select::placeholder,
.hamburger_search input:not([type="submit"]):not([type="radio"]):not([type="checkbox"])::placeholder,
.hamburger_search input::placeholder {
  color: var(--tj-color-text-body);
}

.hamburger_search button {
  position: absolute;
  height: 58px;
  width: 58px;
  top: 50%;
  right: 0px;
  font-size: 24px;
  color: var(--tj-color-theme-dark);
  transform: translateY(-50%);
  border-left: 1px solid var(--tj-color-border-1);
}

.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.hamburger_menu .mean-container .mean-bar * {
  box-sizing: border-box;
}

.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0px;
  overflow: hidden;
}

.hamburger_menu .mean-nav>ul {
  display: block !important;
}

.hamburger_menu .mean-nav>ul>li:first-child>a {
  border-top: none;
}

.hamburger_menu .mean-nav ul li {
  position: relative;
}

.hamburger_menu .mean-nav ul li a {
  color: var(--tj-color-common-white);
  width: 100%;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.5px;
  font-family: var(--tj-ff-body);
  font-weight: var(--tj-fw-medium);
  text-transform: capitalize;
  padding: 18px 0px;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s ease-in-out;
}

.hamburger_menu .mean-nav ul li a:hover {
  /* color: var(--tj-color-theme-primary); */
}

.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  right: 0px;
  top: 12px;
  transition: 0.4s ease-in-out;
}

.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--tj-color-common-white);
}

.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 15px;
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
  transform: rotate(180deg);
}

.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(180deg);
}

.hamburger_menu .mean-nav ul li .sub-menu li {
  padding-left: 25px;
  position: relative;
}

.hamburger_menu .mean-nav ul li .sub-menu li a {
  width: 100%;
  padding: 18px 0px;
}

.hamburger_menu .mean-nav ul li .sub-menu li a.mean-expand {
  padding: 0px;
  width: 30px;
}

.hamburger_menu .mean-nav ul li.dropdown-opened>a {
  /* color: var(--tj-color-theme-primary); */
}

.tj-offcanvas-area {
  position: fixed;
  right: -490px;
  top: 15px;
  width: 470px;
  height: calc(100% - 30px);
  box-shadow: rgba(0, 0, 0, 0.5) -5px 0px 20px -5px;
  transition: 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  z-index: 9999;
  scrollbar-width: none;
  overflow-y: scroll;
  border-radius: 12px;
}

.tj-offcanvas-area::-webkit-scrollbar {
  display: none;
}

.tj-offcanvas-area.opened {
  right: 15px;
}

.offcanvas-text {
  margin-bottom: 40px;
}

.offcanvas-text p {
  color: rgb(255, 255, 255);
  margin-bottom: 0px;
}

.hamburger-search-area {
  margin-bottom: 45px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hamburger-search-area {
    margin-bottom: 30px;
  }
}

.hamburger-title {
  color: var(--tj-color-common-white);
  font-size: 22px;
  line-height: 1;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.hamburger-infos {
  margin-bottom: 45px;
}

.hamburger-infos .contact-info .contact-item {
  padding: 15px 0px 10px;
}

.hamburger-infos .contact-info .contact-item:first-child {
  padding-top: 0px;
}

.hamburger_logo .mobile_logo {
  display: inline-block;
  max-width: 136px;
  width: 100%;
}

.menu-bar button {
  height: 25px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  transform-origin: center center;
  transform: rotate(0deg);
  cursor: pointer;
  transition: transform 300ms, -webkit-transform 300ms;
}

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

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

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

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

.menu-bar.style-2 button span {
  background: var(--tj-color-heading-primary);
}

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

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

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

.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  transition: height 200ms 200ms;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .menu-bar {
    margin-left: 0px;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 9999;
  left: 0px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
  backdrop-filter: blur(10px);
}

.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

.preloader {
  position: fixed;
  inset: 0px;
  z-index: 99999;
  background-color: var(--tj-color-common-white);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border-width: 1px;
  border-style: solid;
  border-image: initial;
  border-color: transparent var(--tj-color-theme-primary) transparent var(--tj-color-theme-primary);
  animation: 1.5s linear 0s infinite normal none running rotate-loading;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

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

  100% {
    transform: rotate(360deg);
  }
}

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

  100% {
    transform: rotate(360deg);
  }
}

.tj-error-section {
  padding: 150px 0px 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error-section {
    padding: 100px 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-error-section {
    padding: 70px 0px;
  }
}

.tj-error-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.tj-error-content .error-img {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 45px;
}

@media (max-width: 575px) {
  .tj-error-content .error-img {
    padding: 0px 20px;
    margin-bottom: 30px;
  }
}

.tj-error-content .error-title {
  font-size: var(--tj-fs-h1);
  margin: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-error-content .error-title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-error-content .error-title {
    font-size: 65px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-error-content .error-title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error-content .error-title {
    font-size: 55px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-error-content .error-title {
    font-size: 45px;
  }
}

@media (max-width: 575px) {
  .tj-error-content .error-title {
    font-size: 40px;
  }
}

.tj-error-content .error-desc {
  max-width: 600px;
  margin: 20px auto 0px;
}

.tj-error-content .error-btn {
  margin-top: 35px;
}

@media (max-width: 575px) {
  .tj-error-content .error-btn {
    margin-top: 25px;
  }
}

.sec-heading {
  margin-inline: auto;
  width: 100%;
  margin-bottom: 52px;
}

.sec-heading .sec-title {
  margin-bottom: 0px;
  line-height: 1.2;
}

.sec-heading .sec-title span {
  color: var(--tj-color-theme-primary);
}

.sec-heading .sub-title {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
  color: var(--tj-color-heading-primary);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--tj-fw-bold);
  border: 1px dashed var(--tj-color-border-1);
  padding: 2px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.sec-heading .sub-title i {
  color: var(--tj-color-theme-primary);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading .sub-title {
    margin-bottom: 15px;
  }
}

.sec-heading .sub-title.text-white {
  border-color: rgba(255, 255, 255, 0.15);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading .sub-title {
    font-size: 13px;
  }
}

.sec-heading.style-2 .sec-title span {
  color: var(--tj-color-text-body-2);
}

.sec-heading.style-2 .sub-title {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-common-white);
  border: 0px;
  padding: 7px 10px;
}

.sec-heading.style-3 .sub-title {
  color: var(--tj-color-theme-primary);
  padding: 0px;
  border: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

.heading-wrap-content {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 50px;
}

.heading-wrap-content .sec-heading {
  max-width: 500px;
  margin-inline: 0px;
  margin-bottom: 0px;
}

.heading-wrap-content .desc {
  max-width: 360px;
  margin-bottom: 0px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .heading-wrap-content .desc {
    max-width: 100%;
  }
}

.heading-wrap-content .btn-wrap {
  max-width: 220px;
}

@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) {
  .heading-wrap-content {
    margin-bottom: 50px;
  }
}

.sec-heading-wrap .sub-title {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 4px;
  color: var(--tj-color-heading-primary);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--tj-fw-bold);
  border: 1px dashed var(--tj-color-border-1);
  padding: 2px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.sec-heading-wrap .sub-title i {
  color: var(--tj-color-theme-primary);
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .sec-heading-wrap .sub-title {
    margin-bottom: 15px;
  }
}

.content-wrap .sec-heading {
  max-width: 550px;
  margin: 0px 0px 20px;
}

.content-wrap .tj-primary-btn {
  margin-top: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .content-wrap .tj-primary-btn {
    margin-top: 5px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .content-wrap .desc br {
    display: none;
  }
}

.title-anim>div {}

.tj-text-invert>div {
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  background-image: linear-gradient(to right, var(--tj-color-heading-primary) 50%, var(--tj-color-text-body-2) 50%);
}

.line {
  position: relative;
  background-clip: text;
  color: transparent;
  --highlight-offset: 0%;
  background-image: linear-gradient(90deg, var(--tj-color-heading-primary) var(--highlight-offset), var(--tj-color-text-body-2) var(--highlight-offset));
}

.tj-banner-section {
  position: relative;
}

.banner-area {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-area {}
}

.banner-left-box {
  background-color: #6d8c2d;
  border-radius: 12px;
  padding: 0px 70px;
  width: calc(50% - 15px);
  margin-right: 15px;
  position: relative;
  z-index: 1;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-left-box {
    padding-right: 40px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-left-box {
    padding-left: 50px;
    padding-right: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-left-box {
    width: 100%;
    margin-right: 0px;
    margin-bottom: 15px;
    padding: 60px 0px;
  }
}

.banner-content {
  max-width: 635px;
  width: 100%;
  margin-inline-start: auto;
}

.banner-content .sub-title {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 8px;
  color: var(--tj-color-common-white);
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: var(--tj-fw-bold);
  border: 1px dashed var(--tj-color-border-2);
  padding: 6px 10px;
  margin-bottom: 20px;
  border-radius: 4px;
}

.banner-content .sub-title i {
  color: var(--tj-color-theme-primary);
  font-size: 22px;
}

.banner-content .banner-title {
  color: var(--tj-color-common-white);
  line-height: 1.135;
  margin-bottom: 15px;
}

.banner-content .banner-title span {
  display: inline-block;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-content .banner-title {
    font-size: 68px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-title {
    font-size: 58px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .banner-title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-title {
    font-size: 45px;
  }
}

.banner-content .banner-link {
  font-size: 75px;
  color: var(--tj-color-common-white);
  display: inline-flex;
  line-height: 1;
  padding: 10px 30px 15px 0px;
  border-right: 1px dashed rgba(255, 255, 255, 0.49);
}

.banner-content .banner-link span {
  overflow: hidden;
}

.banner-content .banner-link i {
  display: inline-flex;
  line-height: 1;
  transform: rotate(-45deg) translateX(0px);
  transition: 0.3s ease-out;
  text-shadow: -120px 0px 0px;
}

.banner-content .banner-link:hover i {
  transform: rotate(-45deg) translateX(120px);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-link {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content .banner-link {
    font-size: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-link {
    font-size: 45px;
  }
}

.banner-content .banner-desc-area {
  max-width: 475px;
  width: 100%;
  border-top: 1px dashed rgba(255, 255, 255, 0.49);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.49);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 23px 0px;
  margin-top: 40px;
  margin-inline: auto 57px;
}

.banner-content .banner-desc-area .banner-desc {
  padding-left: 44px;
}

@media (max-width: 575px) {
  .banner-content .banner-desc-area .banner-desc {
    padding-left: 35px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content .banner-desc-area {
    margin-inline-end: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content .banner-desc-area {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

@media (max-width: 480px) {
  .banner-content .banner-desc-area {
    margin-right: 0px;
  }
}

.banner-content .banner-desc {
  color: rgb(255, 255, 255);
  font-size: 18px;
  line-height: 1.444;
  max-width: 517px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
(max-width: 575px) {
  .banner-content .banner-desc {
    font-size: 16px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content {
    max-width: 565px;
    padding-left: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content {
    padding-left: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-content {
    max-width: 720px;
    margin: 0px auto;
    padding: 0px 15px;
  }
}

.banner-img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.banner-img img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.banner-shape {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.banner-shape img {
  width: 100%;
  height: 100%;
}

.banner-scroll {
  position: absolute;
  left: 38px;
  bottom: 50px;
  z-index: 5;
}

.banner-scroll .scroll-down {
  color: var(--tj-color-common-white);
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  writing-mode: sideways-lr;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}

.banner-scroll .scroll-down span {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 22px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(90deg);
}

.banner-scroll .scroll-down:hover {
  opacity: 1;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-scroll {
    left: 23px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-scroll {
    left: 16px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-scroll {
    bottom: 150px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-scroll {
    display: none;
  }
}

.banner-right-box {
  width: 50%;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .banner-right-box {
    width: 100%;
  }
}

.banner-right-box .box-area {
  max-width: 261px;
}

@media (max-width: 575px) {
  .banner-right-box .box-area {
    max-width: 200px;
    padding: 10px 10px 0px 0px;
  }
}

.customers-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 30px 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-box {
    padding: 15px 18px;
  }
}

.customers ul {
  display: inline-flex;
  list-style: none;
}

.customers ul li {
  line-height: 1;
  margin-left: -15px;
}

.customers ul li img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .customers ul li img {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .customers ul li img {
    width: 40px;
    height: 40px;
  }
}

.customers ul li:first-child {
  margin-left: 0px;
}

.customers ul li:last-child span {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 0 0 2px var(--tj-color-common-white);
}

.customers ul li:last-child span i {
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .customers ul li:last-child span {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 575px) {
  .customers ul li:last-child span {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 575px) {
  .customers ul li {
    margin-left: -16px;
  }
}

.customers-number {
  color: var(--tj-color-theme-dark);
  font-size: 58px;
  line-height: 0.8;
  letter-spacing: -1.2px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  padding: 20px 0px 13px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .customers-number {
    font-size: 50px;
    padding: 25px 0px 13px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-number {
    font-size: 40px;
    padding: 20px 0px 10px;
  }
}

.customers-text {
  color: var(--tj-color-text-body);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 0px;
  font-weight: var(--tj-fw-regular);
}

.tj-banner-section-2 {
  background-color: var(--tj-color-theme-bg);
  padding-top: 125px;
  padding-bottom: 55px;
  margin-top: 65px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.tj-banner-section-2 .banner-content-2 {
  max-width: 450px;
  padding: 40px 0px;
}

.tj-banner-section-2 .banner-content-2 .sub-title {
  font-size: 14px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-theme-primary);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: inline-flex;
  padding-bottom: 15px;
}

.tj-banner-section-2 .banner-content-2 .sub-title i {
  font-size: 22px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-banner-section-2 .banner-content-2 .banner-title {
    line-height: 1.25;
  }
}

.tj-banner-section-2 .banner-content-2 .title-video {
  max-width: 148px;
  border-radius: 6px;
  vertical-align: top;
  margin-top: 10px;
  display: inline-flex;
  overflow: hidden;
  position: relative;
}

.tj-banner-section-2 .banner-content-2 .title-video i {
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: var(--tj-color-common-white);
  z-index: 2;
  transition: 0.3s linear;
}

.tj-banner-section-2 .banner-content-2 .title-video::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0.25;
}

.tj-banner-section-2 .banner-content-2 .title-video:hover i {
  transform: translate(-50%, -50%) scale(1.2);
}

.tj-banner-section-2 .banner-content-2 .title-video:hover::after {
  opacity: 0.4;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-content-2 .title-video {
    max-width: 110px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-content-2 .title-video {
    max-width: 95px;
  }
}

@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-banner-section-2 .banner-content-2 .title-video {
    max-width: 100px;
    margin-top: 7px;
  }
}

.tj-banner-section-2 .banner-content-2 .btn-area {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.tj-banner-section-2 .banner-content-2 .btn-area .number {
  color: var(--tj-color-heading-primary);
  font-size: 20px;
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 1;
  gap: 8px;
}

.tj-banner-section-2 .banner-content-2 .btn-area .number i {
  font-size: 19px;
  display: inline-flex;
}

.tj-banner-section-2 .banner-content-2 .btn-area .number span {
  position: relative;
}

.tj-banner-section-2 .banner-content-2 .btn-area .number span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0px;
  width: 100%;
  height: 1px;
  background-color: var(--tj-color-heading-primary);
}

.tj-banner-section-2 .banner-content-2 .btn-area .number:hover span::after {
  animation: 0.8s linear 0s 1 normal none running linehover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-content-2 {
    padding-top: 0px;
    padding-inline-start: 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-content-2 {
    padding-top: 0px;
    padding-inline-start: 40px;
  }
}

.tj-banner-section-2 .banner-img-area {
  position: relative;
  z-index: 1;
  max-width: 704px;
  width: 100%;
  margin-inline: auto -30px;
}

.tj-banner-section-2 .banner-img-area::before {
  content: "";
  background-color: var(--tj-color-common-white);
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 50%;
  height: 343px;
  z-index: -1;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 8px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 .banner-img-area::before {
    height: 290px;
  }
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area::before {
    height: 260px;
  }
}

.tj-banner-section-2 .banner-img-area .banner-author {
  position: absolute;
  left: 88px;
  bottom: 224px;
  writing-mode: sideways-lr;
}

.tj-banner-section-2 .banner-img-area .banner-author .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
  position: relative;
}

.tj-banner-section-2 .banner-img-area .banner-author .title::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  animation: 1.5s linear 0s infinite normal none running pulse3;
}

.tj-banner-section-2 .banner-img-area .banner-author .designation {
  font-size: 14px;
  color: var(--tj-color-text-body);
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img-area .banner-author {
    left: 60px;
    bottom: 180px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 .banner-img-area .banner-author {
    left: 40px;
    bottom: 150px;
  }
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img-area .banner-author {
    left: 20px;
    bottom: 100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-img-area {
    margin-right: -20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-banner-section-2 .banner-img-area {
    margin-right: 0px;
  }
}

.tj-banner-section-2 .banner-img {
  max-width: 507px;
  width: 100%;
  position: relative;
  margin-inline-start: auto;
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img>img {
    min-height: 440px;
  }
}

.tj-banner-section-2 .banner-img .brand-name {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.6);
  font-weight: var(--tj-fw-sbold);
  font-size: 120px;
  writing-mode: sideways-lr;
  line-height: 0.9;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img .brand-name {
    font-size: 100px;
  }
}

@media (max-width: 430px) {
  .tj-banner-section-2 .banner-img .brand-name {
    font-size: 90px;
  }
}

.tj-banner-section-2 .banner-img .growth-box {
  width: 198px;
  height: 209px;
  position: absolute;
  left: 15px;
  bottom: 15px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img .growth-box {
    width: 165px;
    height: 175px;
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .tj-banner-section-2 .banner-img .growth-box {
    width: 145px;
    height: 155px;
    left: 10px;
    bottom: 10px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-banner-section-2 .banner-img {
    max-width: 460px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-2 .banner-img {
    max-width: 400px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-2 .banner-img {
    max-width: calc(100% - 110px);
  }
}

@media (max-width: 575px) {
  .tj-banner-section-2 .banner-img {
    max-width: calc(100% - 90px);
    min-height: 440px;
  }
}

.tj-banner-section-2 .banner-scroll .scroll-down {
  color: var(--tj-color-heading-primary);
  opacity: 1;
}

.tj-banner-section-2 .banner-scroll .scroll-down span {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-banner-section-2 {
    margin-top: 94px;
  }
}

.marquee-vr {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.marquee-vr .text {
  transform: translateY(0px);
  white-space: nowrap;
  animation: 15s linear 2.5s infinite normal none running marquee;
}

.marquee-vr .text .icon {
  margin: 40px 0px;
}

.tj-choose-section {
  overflow: hidden;
}

.tj-choose-section .sec-heading {
  max-width: 550px;
}

.tj-choose-section.choose-3 .sec-heading {
  margin-inline: 0px;
}

.choose-box {
  height: 100%;
  padding: 50px 28px 45px;
  background-color: var(--tj-color-common-white);
  transition: 0.4s ease-in-out;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.choose-box .choose-content {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%;
}

.choose-box .choose-icon {
  display: inline-flex;
  color: var(--tj-color-theme-primary);
  font-size: 88px;
  line-height: 1;
  max-width: 88px;
  margin-bottom: 43px;
}

.choose-box .choose-icon i {
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-box .choose-icon {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box .choose-icon {
    font-size: 65px;
    max-width: 65px;
    margin-bottom: 20px;
  }
}

.choose-box .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.choose-box .desc {
  margin-bottom: 0px;
}

.choose-box .text-btn {
  margin-top: auto;
  padding-top: 27px;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.choose-box:hover {
  background-color: var(--tj-color-theme-primary);
}

.choose-box:hover .choose-icon {
  color: var(--tj-color-common-white);
  animation: 0.6s ease 0s 1 normal none running gelatine;
}

.choose-box:hover .btn-icon {
  background-color: var(--tj-color-theme-dark);
}

.choose-box:hover .btn-text,
.choose-box:hover .desc,
.choose-box:hover .title {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .choose-box {
    padding: 40px 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box {
    padding: 30px 15px;
  }
}

.choose-box.style-2 {
  padding: 40px 28px;
}

.choose-box.style-2 .choose-icon {
  margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box.style-2 .choose-icon {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .choose-box.style-2 {
    padding: 30px 15px;
  }
}

.work-experience-area {
  max-width: 570px;
}

.work-experience-area .sec-heading {
  margin-bottom: 65px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .work-experience-area .sec-heading {
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .work-experience-area .sec-heading {
    margin-bottom: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .work-experience-area {
    max-width: 100%;
    margin-bottom: 50px;
  }
}

.experience-wrap {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: end;
  align-items: end;
  border-top: 1px dashed rgba(0, 0, 0, 0.16);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.16);
}

.experience-wrap .year-count {
  color: var(--tj-color-theme-primary);
  font-size: 404px;
  line-height: 0.75;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-light);
  letter-spacing: -8.08px;
  display: inline-flex;
  padding: 17px 30px 38px 0px;
  border-right: 1px dashed rgba(0, 0, 0, 0.16);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .experience-wrap .year-count {
    font-size: 335px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .experience-wrap .year-count {
    font-size: 250px;
  }
}

@media (max-width: 575px) {
  .experience-wrap .year-count {
    font-size: 210px;
  }
}

.experience-wrap .experience-text {
  padding-left: 32px;
  padding-bottom: 35px;
}

.experience-wrap .experience-text .title {
  max-width: 110px;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-body);
  text-transform: uppercase;
  letter-spacing: 0px;
  margin-bottom: 0px;
}

.experience-wrap .experience-text span {
  color: var(--tj-color-theme-primary);
  font-size: 24px;
  display: inline-flex;
  line-height: 1;
}

.experience-wrap .experience-text span i {
  display: inline-flex;
  line-height: 1;
}

@media (max-width: 575px) {
  .experience-wrap .experience-text {
    padding-left: 20px;
  }
}

.tj-client-section {
  position: relative;
}

.tj-client-section .client-container {
  padding: 0px;
  overflow: hidden;
}

.tj-client-section-2 {
  background-color: var(--tj-color-theme-primary);
  border-radius: 12px;
  padding: 30px 5px;
  margin-top: 15px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-client-section-2 {
    padding: 18px 5px;
  }
}

.client-section-gap {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-section-gap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-section-gap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.client-section-gap-2 {
  padding: 100px 0px;
  margin: 120px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-section-gap-2 {
    padding: 80px 0px;
    margin: 90px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .client-section-gap-2 {
    padding: 65px 0px;
    margin: 70px 0px;
  }
}

@media (max-width: 575px) {
  .client-section-gap-2 {
    padding: 60px 0px;
    margin: 50px 0px;
  }
}

.client-content {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--tj-color-border-1);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.client-content .sec-title {
  max-width: 200px;
  width: 100%;
  letter-spacing: 0px;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
}

@media (max-width: 575px) {
  .client-content .sec-title {
    font-size: 18px;
  }
}

.client-content span {
  display: inline-flex;
}

.client-content .client-numbers {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  line-height: 1.2;
  border-radius: 50px;
  padding: 0px 5px;
}

.client-content .client-text {
  color: var(--tj-color-text-body-3);
  position: relative;
}

.client-content .client-text::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: auto;
  width: 100%;
  border-bottom: 1px solid rgba(12, 30, 33, 0.2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .client-content {
    width: 260px;
    height: 260px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-content {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 575px) {
  .client-content {
    width: 190px;
    height: 190px;
  }
}

.client-content.style-2 {
  max-width: 440px;
  width: 100%;
  display: block;
  margin: 0px auto 60px;
  height: auto;
  border-radius: 40px;
  position: unset;
  background: transparent;
  transform: translate(0px);
  padding: 0px 15px 4px;
}

.client-content.style-2 .sec-title {
  max-width: 100%;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.6px;
}

.client-content.style-2 .client-numbers {
  color: var(--tj-color-theme-primary);
  background: transparent;
  padding: 0px;
  border-radius: 0px;
}

.client-content.style-2 .client-text::after {
  display: none;
}

@media (max-width: 575px) {
  .client-content.style-2 {
    width: calc(100% - 30px);
    margin: 0px auto 40px;
  }
}

.client-slider .swiper-wrapper {
  transition-timing-function: linear;
}

.client-slider-1 {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.client-slider-1::before,
.client-slider-1::after {
  content: "";
  position: absolute;
  width: 448px;
  height: 100%;
  background-image: linear-gradient(90deg, rgb(233, 237, 237) 0%, rgba(233, 237, 237, 0) 100%);
  top: 0px;
  left: 0px;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 200px;
  }
}

@media (max-width: 575px) {

  .client-slider-1::before,
  .client-slider-1::after {
    width: 100px;
  }
}

.client-slider-1::after {
  left: auto;
  right: 0px;
  background-image: linear-gradient(-90deg, rgb(233, 237, 237) 0%, rgba(233, 237, 237, 0) 100%);
}

.client-item {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  padding-right: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-item {
    padding-right: 20px;
  }
}

.client-logo {
  width: 284px;
  height: 120px;
  background-color: var(--tj-color-common-white);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  border-radius: 8px;
}

.client-logo img {
  height: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .client-logo {
    width: 220px;
    height: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .client-logo {
    width: 190px;
    height: 70px;
  }
}

.client-slider-2 .client-logo {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-slider-2 .client-logo img {
  opacity: 0.85;
}

.about-img-area {
  position: relative;
  margin-inline-end: -8px;
  height: 100%;
}

.about-img-area .about-img {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-img-area .about-img video {
  width: 100%;
  height: 656px;
  object-fit: cover;
  border-radius: 12px;
}

@media (max-width: 575px) {
  .about-img-area .box-area {
    max-width: 230px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-img-area {
    margin-top: 15px;
    margin-inline-end: 0px;
  }
}

.about-img-area.style-2 {
  max-width: 591px;
  margin-inline-end: auto;
}

.about-img-area.style-2 .box-area {
  max-width: 343px;
  background-color: var(--tj-color-theme-bg);
}

.about-img-area.style-2 .box-area::after,
.about-img-area.style-2 .box-area::before {
  background: url("data:image/svg+xml,<svg viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" class=\"w-11 h-11\"><path d=\"M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z\" fill=\"%23d8e5e5\"></path></svg>");
}

@media (max-width: 575px) {
  .about-img-area.style-2 .box-area {
    max-width: 270px;
  }
}

.about-img-area.style-2 .box-area.style-2 {
  background: transparent;
  padding: 0px 0px 15px 15px;
  border-top-right-radius: 0px;
  border-bottom-left-radius: 12px;
}

.about-img-area.style-2 .box-area.style-2::after,
.about-img-area.style-2 .box-area.style-2::before {
  display: none;
}

.about-img-area.style-2 .box-area.style-2 .progress-box {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.about-img-area.style-2 .box-area.style-2 .progress-box .tj-progress-percent,
.about-img-area.style-2 .box-area.style-2 .progress-box .tj-progress-title,
.about-img-area.style-2 .box-area.style-2 .progress-box .title {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-img-area.style-2 {
    max-width: 100%;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-area {
    height: 100%;
  }
}

.box-area {
  background: var(--tj-color-grey-1);
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-width: 241px;
  width: 100%;
  padding: 15px 15px 0px 0px;
  border-top-right-radius: 12px;
}

.box-area::after,
.box-area::before {
  content: "";
  position: absolute;
  left: 0px;
  top: -13px;
  width: 13px;
  height: 13px;
  background: url("data:image/svg+xml,<svg viewBox=\"0 0 11 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\" class=\"w-11 h-11\"><path d=\"M11 1.54972e-06L0 0L2.38419e-07 11C1.65973e-07 4.92487 4.92487 1.62217e-06 11 1.54972e-06Z\" fill=\"%23ecf0f0\"></path></svg>");
  transform: rotate(-90deg);
}

.box-area::after {
  inset: auto -13px 0px auto;
}

.experience-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 28px 25px;
}

.experience-box .sub-title {
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .experience-box {
    padding: 25px 18px 20px;
  }
}

.about-content-area.style-1 {
  background-color: var(--tj-color-common-white);
  border-radius: 12px;
  padding: 30px;
  min-height: 408px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area.style-1 {
    min-height: 300px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area.style-1 {
    padding: 30px 20px;
    min-height: 300px;
  }
}

.about-content-area .sec-heading {
  margin-bottom: 30px;
}

.about-bottom-area {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.about-bottom-area .client-review-cont {
  background-color: #6d8c2d;
  color: var(--tj-color-common-white);
  -webkit-box-flex: 1;
  flex: 1 1 0%;
  border-radius: 10px;
  padding: 30px;
}

.about-bottom-area .client-review-cont .rating-area {
  margin-bottom: 12px;
}

.about-bottom-area .client-review-cont .star-ratings {
  font-size: 16px;
  letter-spacing: 4px;
  -webkit-text-stroke: 1px var(--tj-color-common-white);
}

.about-bottom-area .client-review-cont .star-ratings .fill-ratings {
  color: var(--tj-color-common-white);
}

.about-bottom-area .client-review-cont .desc {
  margin-bottom: 38px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-bottom-area .client-review-cont .desc {
    margin-bottom: 20px;
  }
}

.about-bottom-area .client-review-cont .quote-icon {
  font-size: 40px;
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .about-bottom-area .client-review-cont .quote-icon {
    font-size: 40px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-bottom-area .client-review-cont {
    padding: 30px 15px;
  }
}

@media (max-width: 575px) {
  .about-bottom-area .client-review-cont {
    padding: 15px;
  }
}

.about-bottom-area .client-info-area {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.about-bottom-area .client-info {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.about-bottom-area .client-info .title {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-white);
  line-height: 1;
  margin-bottom: 6px;
}

.about-bottom-area .client-info .designation {
  font-size: 14px;
  color: var(--tj-color-theme-bg);
  line-height: 1;
  display: inline-flex;
}

.video-img {
  max-width: 224px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.video-img::before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0.25;
}

.video-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .video-img {
    max-width: 180px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .video-img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  .video-img {
    max-width: 100px;
  }
}

.video-btn {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  color: var(--tj-color-common-white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.video-btn span {
  font-size: 15px;
  margin-left: 2px;
  display: inline-flex;
  line-height: 1;
}

.video-btn:hover {
  color: var(--tj-color-common-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-content-area-2 {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  gap: 85px;
}

.about-content-area-2 .about-content {
  max-width: 550px;
  margin-left: auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area-2 .about-content {
    max-width: 440px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content-area-2 .about-content {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 .about-content {
    width: calc(100% - 130px);
    margin-left: 0px;
  }
}

.about-content-area-2 .sec-heading {
  margin-bottom: 27px;
}

.about-content-area-2 .video-img {
  max-width: 120px;
}

.about-content-area-2 .video-img::before {
  opacity: 0.15;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 .video-img {
    max-width: 100px;
  }
}

.about-content-area-2 .video-btn:hover {
  transform: translate(-50%, -50%) scale(0.9);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-content-area-2 {
    gap: 35px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .about-content-area-2 {
    gap: 20px;
  }
}

.customers-box.style-2 {
  background-color: var(--tj-color-theme-primary);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.customers-box.style-2 .customers-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.15;
  z-index: -1;
}

.customers-box.style-2 ul li span {
  background-color: var(--tj-color-theme-dark);
}

.customers-box.style-2 .customers-text {
  max-width: 250px;
  font-size: 24px;
  line-height: 1.333;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-white);
}

.customers-box.style-2 .star-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  right: 120px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .customers-box.style-2 {
    min-height: 315px;
  }
}

.countup-item.style-2 {
  width: 100%;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 28px 30px;
  -webkit-box-align: start;
  align-items: start;
  text-align: left;
}

.countup-item.style-2 .count-inner {
  padding-top: 90px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .countup-item.style-2 .count-inner {
    padding-top: 60px;
  }
}

.countup-item.style-2 .count-text {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}

.countup-item.style-2 .inline-content {
  color: var(--tj-color-heading-primary);
  margin: 11px 0px 10px;
}

.countup-item.style-2 .inline-content .odometer {
  color: var(--tj-color-heading-primary);
}

.countup-item.style-2 .inline-content .odometer .odometer-digit,
.countup-item.style-2 .inline-content .odometer span {
  color: var(--tj-color-heading-primary);
}

.countup-item.style-2 .count-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--tj-color-grey-1);
  font-size: 48px;
  color: var(--tj-color-theme-primary);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1;
}

.countup-item.style-2 .steps {
  position: absolute;
  top: 28px;
  right: 30px;
  color: var(--tj-color-text-body);
  font-size: 20px;
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
}

@media (max-width: 575px) {
  .countup-item.style-2 .steps {
    right: 20px;
  }
}

@media (max-width: 575px) {
  .countup-item.style-2 {
    padding: 25px 20px;
  }
}

.tj-about-section-2 {
  background-color: var(--tj-color-theme-bg);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.progress-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 28px 30px 35px;
}

.progress-box .title {
  font-weight: var(--tj-fw-sbold);
}

@media (max-width: 575px) {
  .progress-box {
    padding: 20px 18px 25px;
  }
}

.mission-vision-box {
  -webkit-box-flex: 1;
  flex: 1 1 0%;
  background-color: var(--tj-color-common-white);
  border-radius: 12px;
  padding: 25px 20px 30px 26px;
}

.mission-vision-box .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 18px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .mission-vision-box {
    flex-basis: 100%;
  }
}

.about-btn-area {
  margin-top: 15px;
}

.about-btn-area .tj-primary-btn {
  width: 100%;
  border-radius: 10px;
  padding: 13px;
}

.about-btn-area .tj-primary-btn .btn-icon {
  width: 30px;
  height: 30px;
  font-size: 20px;
}

.tj-service-section {
  background-color: var(--tj-color-theme-dark);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.tj-service-section .sec-heading {
  max-width: 550px;
}

.tj-service-section .sec-heading .sub-title {
  color: var(--tj-color-common-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.tj-service-section .sec-heading.style-2 {
  margin-inline: 0px;
}

.tj-service-section .sec-heading.style-2 .sub-title {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-dark-2);
}

.tj-service-section.service-3 {
  background: transparent;
}

.tj-service-section.service-3 .sec-heading .sub-title {
  color: var(--tj-color-theme-primary);
}

.tj-service-section.service-4 {
  background: transparent;
}

.bg-shape-2,
.bg-shape-1 {
  position: absolute;
  top: 0px;
  left: 0px;
  max-width: 370px;
  width: 100%;
  z-index: -1;
  mix-blend-mode: difference;
  pointer-events: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .bg-shape-2,
  .bg-shape-1 {
    max-width: 260px;
  }
}

.bg-shape-2 {
  top: inherit;
  left: inherit;
  bottom: 0px;
  right: 0px;
}

.service-item {
  background: var(--tj-color-common-white);
  padding: 40px 30px 45px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 12px;
}

.service-item:last-child {
  margin-bottom: 0px;
}

.service-item .service-icon {
  font-size: 70px;
  width: 80px;
  height: 80px;
  background: linear-gradient(-45deg, rgba(30, 138, 138, 0.3) 0%, rgba(30, 138, 138, 0) 50%, rgba(30, 138, 138, 0.3) 100%);
  border-radius: 50%;
  border: 1px solid rgba(30, 138, 138, 0.15);
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  line-height: 1;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  transition: 0.4s ease-in-out;
}

.service-item .service-icon i {
  color: var(--tj-color-theme-primary);
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item .service-icon {
    font-size: 50px;
    width: 65px;
    height: 65px;
  }
}

.service-item .title {
  max-width: 300px;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 20px;
  transition: none;
}

.service-item .title a:hover {
  color: var(--tj-color-theme-primary);
}

.service-item .desc {
  margin-bottom: 0px;
}

.service-item .text-btn {
  margin-top: 25px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item {
    padding: 30px 20px;
  }
}

.service-item.style-1 {
  border: 0px;
  padding: 0px;
  background-color: var(--tj-color-theme-dark);
  position: relative;
  overflow: hidden;
  height: 450px;
}

.service-item.style-1::before {
  content: "";
  background: var(--tj-color-theme-dark-2);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  pointer-events: none;
  z-index: 2;
}

.service-item.style-1::after {
  content: "";
  background: var(--tj-color-theme-primary);
  position: absolute;
  width: 100%;
  height: 100%;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  filter: blur(90px);
  backdrop-filter: blur(30px);
  border-radius: 50%;
  opacity: 0;
}

.service-item.style-1 .service-img {
  position: relative;
  height: 100%;
}

.service-item.style-1 .service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 12px;
}

.service-item.style-1 .service-icon {
  position: absolute;
  top: 35px;
  left: 30px;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.style-1 .service-icon {
    font-size: 60px;
    width: 70px;
    height: 70px;
  }
}

.service-item.style-1 .service-content {
  position: absolute;
  width: 100%;
  left: 0px;
  bottom: 0px;
  padding: 40px 30px 20px;
  z-index: 3;
  overflow: hidden;
  transition: 0.2s linear;
}

.service-item.style-1 .service-content .title {
  margin-bottom: 15px;
}

.service-item.style-1 .service-content .title a {
  color: var(--tj-color-common-white);
}

.service-item.style-1 .service-content .title a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-1 .service-content .title {
    font-size: 19px;
  }
}

.service-item.style-1 .service-content .desc {
  color: var(--tj-color-text-body-2);
  opacity: 0;
  visibility: hidden;
  height: 0px;
  transition: none;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.style-1 .service-content {
    padding: 25px 20px;
  }
}

@media (max-width: 575px) {
  .service-item.style-1 .service-content {
    padding: 18px 15px;
  }
}

.service-item.style-1 .text-btn {
  position: absolute;
  left: auto;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.service-item.style-1 .text-btn .btn-text {
  color: var(--tj-color-common-white);
}

.service-item.style-1 .text-btn .btn-icon {
  background-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.style-1 .text-btn {
    left: 20px;
  }
}

@media (max-width: 575px) {
  .service-item.style-1 .text-btn {
    left: 15px;
  }
}

.service-item.style-1:hover::before {
  background: var(--tj-color-theme-dark);
  opacity: 0.7;
}

.service-item.style-1:hover::after {
  opacity: 0.3;
}

.service-item.style-1:hover .service-icon {
  transform: scale(0);
}

.service-item.style-1:hover .service-content {
  padding-bottom: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .service-item.style-1:hover .service-content {
    padding-bottom: 80px;
  }
}

.service-item.style-1:hover .desc {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.service-item.style-1:hover .text-btn {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
  transition: 0.2s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
(max-width: 575px) {
  .service-item.style-1:hover .text-btn {
    bottom: 30px;
  }
}

@media (max-width: 575px) {
  .service-item.style-1 {
    height: 400px;
  }
}

.service-item.style-2 {
  background-color: transparent;
  border: 1px dashed var(--tj-color-border-2);
  transition: 0.3s ease-in-out;
  padding: 65px 50px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.service-item.style-2 .service-content,
.service-item.style-2 .title-area {
  width: 48%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .service-item.style-2 .service-content,
  .service-item.style-2 .title-area {
    width: 100%;
  }
}

.service-item.style-2 .service-icon {
  margin-bottom: 33px;
}

.service-item.style-2 .service-icon i {
  transition: 0.5s ease-in-out;
}

.service-item.style-2 .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-2 .title {
    margin-bottom: 25px;
  }
}

.service-item.style-2 .desc {
  color: var(--tj-color-text-body-2);
  margin-bottom: 22px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-2 .desc {
    margin-bottom: 16px;
  }
}

.service-item.style-2 .list-items li {
  color: var(--tj-color-text-body-2);
}

.service-item.style-2:hover {
  background-color: var(--tj-color-theme-dark-2);
  border-color: var(--tj-color-theme-dark-2);
}

.service-item.style-2:hover .service-icon i {
  transform: rotateY(360deg);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.style-2 {
    padding: 40px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-2 {
    padding: 30px 15px;
  }
}

.service-item.style-3 {
  margin-bottom: 20px;
  padding: 40px 60px 40px 30px;
  transition: 0.3s ease-in-out;
}

.service-item.style-3:hover {
  background-color: var(--tj-color-theme-primary);
}

.service-item.style-3:hover .title {
  color: var(--tj-color-common-white);
}

.service-item.style-3:hover .service-icon {
  background: linear-gradient(-45deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.3) 100%);
  border-color: rgba(255, 255, 255, 0.15);
}

.service-item.style-3:hover .service-icon i {
  color: var(--tj-color-common-white);
}

.service-item.style-3:hover .desc {
  color: var(--tj-color-grey-1);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item.style-3 {
    padding: 40px 40px 40px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-3 {
    padding: 30px 20px;
  }
}

.service-item.style-4 {
  transition: 0.3s ease-in-out;
}

.service-item.style-4 .service-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 95px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item.style-4 .service-icon {
    margin-bottom: 75px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item.style-4 .service-icon {
    width: 80px;
    height: 80px;
    font-size: 60px;
    margin-bottom: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-item.style-4 .service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 40px;
  }
}

.service-item.style-4 .title {
  max-width: 275px;
}

.service-item.style-4:hover {
  background-color: var(--tj-color-theme-primary);
}

.service-item.style-4:hover .service-icon {
  background: var(--tj-color-common-white);
}

.service-item.style-4:hover .desc,
.service-item.style-4:hover .title {
  color: var(--tj-color-common-white);
}

.service-item.style-4:hover .desc a,
.service-item.style-4:hover .title a {
  color: var(--tj-color-common-white);
}

.service-item.style-4:hover .text-btn .btn-text {
  color: var(--tj-color-common-white);
}

.service-item.style-4:hover .text-btn .btn-icon {
  background-color: var(--tj-color-theme-dark);
}

.list-items {
  list-style: none;
}

.list-items li {
  color: var(--tj-color-text-body);
  display: flex;
  gap: 9px;
  margin-bottom: 7px;
}

.list-items li:last-child {
  margin-bottom: 0px;
}

.list-items li i {
  font-size: 12px;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  margin-top: 6px;
}

.service-content-wrap {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.service-content-wrap .service-title {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  gap: 20px;
}

.service-content-wrap .service-title .service-icon {
  transition: 0.6s ease-in-out;
}

.service-content-wrap .service-title .service-icon i {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-content-wrap .service-title .service-icon {
    font-size: 60px;
    width: 70px;
    height: 70px;
  }
}

.service-content-wrap .service-title .title {
  transition: none;
  margin-bottom: 0px;
}

.service-content-wrap .service-title .title a:hover {
  color: var(--tj-color-common-white);
}

.service-content-wrap .service-content {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.service-content-wrap .service-content .desc {
  max-width: 360px;
  width: 100%;
  margin-bottom: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-content-wrap .service-content .desc {
    max-width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-content-wrap .service-content {
    width: 100%;
    margin-top: 20px;
    padding-left: 90px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .service-content-wrap .service-content {
    margin-top: 20px;
    padding-left: 80px;
  }
}

.service-reveal-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 291px;
  height: 303px;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0.7);
  transition: opacity 0.6s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: 5;
}

.service-reveal-bg:first-child {
  margin-top: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-reveal-bg {
    width: 260px;
    height: 270px;
  }
}

@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) {
  .service-reveal-bg {
    display: none;
  }
}

.service-item:first-child .service-reveal-bg {
  margin-top: 40px;
}

.service-item:last-child .service-reveal-bg {
  margin-top: -40px;
}

.service-item:hover .service-reveal-bg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.service-btn-area {
  margin-top: 50px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-service-section .content-wrap {
    margin-bottom: 50px;
  }
}

.bg-shape-3 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  max-width: 915px;
  z-index: -1;
}

.tj-marquee-section {
  background-color: var(--tj-color-theme-primary);
  position: relative;
  padding-top: 33px;
  padding-bottom: 37px;
  border-radius: 12px;
  overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-marquee-section {
    padding-top: 22px;
    padding-bottom: 16px;
  }
}

.marquee-slider {
  padding-bottom: 10px;
}

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

.marquee-item {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee-item .marquee-text {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--tj-color-common-white);
  font-size: 136px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-heading);
  line-height: 1.2;
  margin: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item .marquee-text {
    font-size: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-text {
    font-size: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .marquee-item .marquee-text {
    font-size: 50px;
    -webkit-text-stroke: 1px var(--tj-color-common-white);
  }
}

.marquee-item .marquee-img {
  position: relative;
  top: 4px;
  color: var(--tj-color-theme-primary);
  height: 98px;
  border-radius: 4px;
  overflow: hidden;
}

.marquee-item .marquee-img img {
  height: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .marquee-item .marquee-img {
    height: 75px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .marquee-item .marquee-img {
    height: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .marquee-item .marquee-img {
    height: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .marquee-item {
    gap: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 575px) {
  .marquee-item {
    gap: 20px;
    padding-right: 20px;
  }
}

.tj-project-section {
  position: relative;
}

.tj-project-section .sec-heading {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: end;
  align-items: end;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.tj-project-section .sec-text {
  max-width: 550px;
  margin-left: 0px;
  margin-right: 0px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-section .sec-text {
    max-width: 380px;
  }
}

.tj-project-section .project-navigation {
  gap: 20px;
  margin-bottom: 27px;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-section .project-navigation {
    margin-bottom: 20px;
  }
}

.tj-project-section-2 {
  overflow: hidden;
}

.tj-project-section-2 .container-fluid,
.tj-project-section-2 .project-wrapper {
  padding: 0px;
}

.tj-project-section-2 .sec-heading {
  max-width: 550px;
}

.tj-project-section-3 {
  background-color: var(--tj-color-theme-dark);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-project-section-3 .container-fluid {
    padding-right: 0px;
  }
}

.tj-project-section-3 .sub-title {
  color: var(--tj-color-theme-primary);
  border: 0px;
  padding: 0px;
}

.tj-project-section-3 .sec-title {
  color: var(--tj-color-common-white);
}

.tj-project-section-3 .slider-next,
.tj-project-section-3 .slider-prev {
  border-color: var(--tj-color-border-2);
}

.tj-project-section-3 .slider-next .anim-icon i,
.tj-project-section-3 .slider-prev .anim-icon i {
  color: var(--tj-color-common-white);
}

.project-wrapper {
  padding: 0px 15px;
}

@media (max-width: 575px) {
  .project-wrapper {
    padding: 0px;
  }
}

.project-area {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  gap: 30px;
  position: relative;
}

.project-area .project-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  min-height: 550px;
  grid-column: span 1 / span 3;
}

.project-area .project-item:first-child,
.project-area .project-item:last-child {
  grid-column: span 2 / span 3;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .project-area .project-item:first-child,
  .project-area .project-item:last-child {
    grid-column: span 3 / span 5;
  }
}

.project-area .project-item .project-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s linear;
}

.project-area .project-item .project-img::before {
  opacity: 0.25;
}

.project-area .project-item .project-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  padding: 30px;
  z-index: 3;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-area .project-item .project-content {
    padding: 20px;
  }
}

.project-area .project-item .project-content .title {
  color: var(--tj-color-common-white);
  max-width: 245px;
  width: 100%;
  margin-bottom: 0px;
}

.project-area .project-item .project-content .title a {
  color: var(--tj-color-common-white);
}

.project-area .project-item .project-content .title a:hover {
  opacity: 0.8;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-area .project-item .project-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media (max-width: 575px) {
  .project-area .project-item .project-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

.project-area .project-item .project-content .project-text {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}

.project-area .project-item .project-content .categories a {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--tj-color-common-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.project-area .project-item .project-content .categories a:hover {
  background-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .project-area .project-item .project-content {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .project-area .project-item .project-content {
    padding: 25px 20px;
  }
}

.project-area .project-item:hover .project-img {
  transform: scale(1.1);
}

.project-area .project-item:hover .project-btn {
  opacity: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-area .project-item {
    min-height: 450px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-area .project-item {
    min-height: 450px;
    grid-column: span 2 / span 5;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .project-area .project-item {
    min-height: 350px;
    grid-column: 1 / 3;
  }
}

.project-area .project-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 22px;
  backdrop-filter: blur(15px);
  opacity: 0;
}

.project-area .project-btn i {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-normal);
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}

.project-area .project-btn:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

.project-area .project-btn:hover i {
  color: var(--tj-color-common-white);
  transform: rotate(0deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-area .project-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .project-area .project-btn {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-area {
    gap: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-area {
    grid-template-columns: repeat(5, minmax(0px, 1fr));
    gap: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .project-area {
    min-height: 350px;
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.project-item {
  background-color: var(--tj-color-common-white);
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.project-item .project-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: 0.5s linear;
}

.project-item .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-item .project-img::before {
  content: "";
  background: var(--tj-color-theme-dark);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0px;
  left: 0px;
  opacity: 0.16;
  pointer-events: none;
  z-index: 2;
}

.project-item .project-content {
  padding: 25px 20px 25px 30px;
}

.project-item .project-text {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}

.project-item .title {
  max-width: 245px;
  width: 100%;
  margin-bottom: 0px;
}

.project-item .title a:hover {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-item .title {
    width: calc(100% - 60px);
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .project-item .title {
    max-width: 100%;
    width: calc(100% - 60px);
  }
}

.project-item .categories a {
  background-color: transparent;
  backdrop-filter: none;
  color: var(--tj-color-text-body);
  border-color: var(--tj-color-border-1);
}

.project-item:hover .project-img img {
  transform: scale(1.1);
}

.project-item:hover .project-btn {
  opacity: 1;
}

.project-btn {
  font-size: 35px;
  width: 50px;
  height: 50px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  opacity: 0;
}

.project-btn i {
  color: var(--tj-color-theme-dark);
  font-weight: var(--tj-fw-bold);
  transform: rotate(-45deg);
  transition: 0.3s ease-in-out;
}

.project-btn:hover i {
  color: var(--tj-color-theme-primary);
  transform: rotate(0deg);
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.categories a {
  background-color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
  line-height: 1;
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
  padding: 2px 7px 4px;
  display: inline-flex;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--tj-color-border-1);
  backdrop-filter: blur(15px);
}

.categories a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.project-slider .project-item {
  position: relative;
  min-height: 550px;
  overflow: hidden;
}

.project-slider .project-item .project-img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s linear;
}

.project-slider .project-item .project-content {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: inherit;
  width: 100%;
  padding: 0px 20px;
  z-index: 3;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}

.project-slider .project-item .project-content .categories {
  -webkit-box-pack: center;
  justify-content: center;
}

.project-slider .project-item .project-content .categories a {
  color: var(--tj-color-text-body-2);
  background-color: rgba(255, 255, 255, 0.1);
}

.project-slider .project-item .project-content .categories a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}

.project-slider .project-item .project-content .title {
  color: var(--tj-color-common-white);
  max-width: 350px;
  margin: 0px auto;
  text-align: center;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-slider .project-item .project-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-slider .project-item .project-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

@media (max-width: 575px) {
  .project-slider .project-item .project-content .title {
    font-size: 20px;
    width: calc(100% - 70px);
  }
}

.project-slider .project-item .project-content .project-text {
  display: block;
  margin-top: 15px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .project-slider .project-item .project-content {
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .project-slider .project-item .project-content {
    padding: 25px 20px;
  }
}

.project-slider .project-item .project-content .project-btn {
  background-color: transparent;
  border: 0px;
  opacity: 1;
  backdrop-filter: none;
  width: 60px;
  height: 60px;
  font-size: 52px;
  margin: 35px auto 0px;
}

.project-slider .project-item .project-content .project-btn i {
  color: var(--tj-color-common-white);
  transform: rotate(-45deg);
}

.project-slider .project-item .project-content .project-btn:hover i {
  transform: rotate(0deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .project-slider .project-item .project-content {
    opacity: 1;
    visibility: visible;
  }
}

.project-slider .project-item:hover .project-img {
  transform: scale(1.1);
}

.project-slider .project-item:hover .project-img::before {
  opacity: 0.6;
}

.project-slider .project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-slider .project-item {
    min-height: 450px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-slider .project-item {
    min-height: 400px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .project-slider .project-item {
    min-height: 330px;
  }
}

.project-slider-2 .project-item {
  background-color: var(--tj-color-theme-dark-2);
}

.project-slider-2 .project-item .title {
  color: var(--tj-color-common-white);
  margin-bottom: 0px;
}

.project-slider-2 .project-item .title a {
  display: inline;
}

.project-slider-2 .project-item .title a:hover {
  color: var(--tj-color-theme-primary);
}

.project-slider-2 .project-item .categories a {
  background-color: transparent;
  backdrop-filter: none;
  color: var(--tj-color-text-body-2);
  border-color: rgba(255, 255, 255, 0.1);
}

.project-slider-2 .project-item .categories a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.project-slider-2 .project-item .project-btn i {
  color: var(--tj-color-common-white);
}

.project-slider-2 .project-item .project-btn:hover i {
  color: var(--tj-color-theme-primary);
}

.tj-testimonial-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
}

.tj-testimonial-section .sec-heading-wrap {
  padding-top: 60px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section .sec-heading-wrap {
    padding-top: 100px;
  }
}

.testimonial-wrapper {
  position: relative;
  height: 100%;
}

@media (max-width: 575px) {
  .testimonial-wrapper {
    margin-inline-end: -12px;
  }
}

.testimonial-slider .testimonial-item {
  background-color: var(--tj-color-common-white);
  border: 2px solid var(--tj-color-common-white);
  padding: 45px 26px 35px;
  height: 100%;
  border-radius: 12px;
}

.testimonial-slider .testimonial-item .quote-icon {
  color: var(--tj-color-theme-primary);
  font-size: 46px;
  line-height: 1;
  display: inline-flex;
}

.testimonial-slider .testimonial-item .rating-wrap {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-bg);
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-img img {
  width: 33px;
  height: 33px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-text {
  color: var(--tj-color-text-body-2);
  font-size: 14px;
}

.testimonial-slider .testimonial-item .rating-wrap .rating-text strong {
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-black);
}

.testimonial-slider .testimonial-item .desc {
  font-size: 18px;
  line-height: 1.444;
  padding-top: 23px;
  padding-bottom: 22px;
}

.testimonial-slider .testimonial-item .desc p {
  margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 17px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider .testimonial-item .desc {
    font-size: 16px;
  }
}

.testimonial-slider .testimonial-item .testimonial-author .title {
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider .testimonial-item {
    padding: 35px 23px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider .testimonial-item {
    padding: 30px 20px;
  }
}

.testimonial-slider .swiper-slide-active .testimonial-item {
  border-color: var(--tj-color-theme-primary);
}

.testimonial-author {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  padding-top: 30px;
  border-top: 1px dashed var(--tj-color-border-1);
}

.testimonial-author .author-inner {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 12px;
}

.testimonial-author .author-img {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author .author-img {
    width: 50px;
    height: 50px;
  }
}

.testimonial-author .title {
  margin-bottom: 0px;
  line-height: 1;
}

.testimonial-author .designation {
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
}

.testimonial-author .quote-icon {
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  font-size: 43px;
}

.testimonial-author .quote-icon i {
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author .quote-icon {
    font-size: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-author {
    padding-top: 20px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 3px;
  position: relative;
  margin: 0px;
  padding: 0px;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}

.star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
  padding: 0px;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0px;
  left: 0px;
  overflow: hidden;
}

.star-ratings .fill-ratings span {
  display: inline-block;
  margin: 0px;
}

.star-ratings .empty-ratings {
  padding: 0px;
  display: block;
  z-index: 0;
  color: transparent;
}

.tj-testimonial-section-2 {
  overflow: hidden;
}

@media (max-width: 575px) {
  .tj-testimonial-section-2 .testimonial-wrapper {
    margin-inline-end: 0px;
  }
}

.testimonial-img-area {
  position: relative;
}

.testimonial-img-area .testimonial-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.testimonial-img-area .testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@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-img-area .testimonial-img img {
    object-fit: unset;
  }
}

.testimonial-img-area .testimonial-img .sec-heading {
  position: absolute;
  top: 40px;
  left: 30px;
  width: 60%;
  z-index: 2;
}

.testimonial-img-area .testimonial-img .sec-heading .sec-title {
  color: var(--tj-color-common-white);
}

.testimonial-img-area .testimonial-img .sec-heading .sec-title span {
  color: var(--tj-color-text-body-3);
}

.testimonial-img-area .testimonial-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0.25;
}

.testimonial-img-area .box-area {
  max-width: 239px;
  bottom: 0px;
  right: 0px;
  left: inherit;
  padding: 15px 0px 0px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0px;
}

.testimonial-img-area .box-area::before {
  left: inherit;
  right: 0px;
  transform: rotate(180deg);
}

.testimonial-img-area .box-area::after {
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

@media (max-width: 575px) {
  .testimonial-img-area .box-area {
    max-width: 215px;
  }
}

.rating-box {
  background-color: var(--tj-color-theme-primary);
  border-radius: 10px;
  padding: 18px 25px 25px;
}

.rating-box .rating-area {
  margin-bottom: 8px;
}

.rating-box .star-ratings {
  -webkit-text-stroke: 1px var(--tj-color-common-white);
}

.rating-box .star-ratings .fill-ratings {
  color: var(--tj-color-common-white);
}

.rating-box .rating-text {
  color: var(--tj-color-common-white);
}

.rating-box .title {
  font-size: 74px;
  line-height: 1;
  color: var(--tj-color-common-white);
  margin-bottom: 58px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .rating-box .title {
    font-size: 50px;
    margin-bottom: 20px;
  }
}

.rating-box .number {
  color: var(--tj-color-common-white);
  font-size: 20px;
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
  line-height: 1.1;
  border-bottom: 1px solid currentcolor;
}

@media (max-width: 575px) {
  .rating-box .number {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .rating-box {
    padding: 20px 18px 25px;
  }
}

.testimonial-slider-2 {
  height: 100%;
}

.testimonial-slider-2 .testimonial-item {
  background-color: var(--tj-color-common-white);
  padding: 60px 50px;
  height: 100%;
  border-radius: 12px;
}

.testimonial-slider-2 .testimonial-item .quote-icon {
  color: var(--tj-color-theme-primary);
  font-size: 63px;
  line-height: 1;
  display: inline-flex;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item .quote-icon {
    font-size: 45px;
  }
}

.testimonial-slider-2 .testimonial-item .desc {
  font-size: 22px;
  line-height: 1.444;
  padding-top: 30px;
  padding-bottom: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-2 .testimonial-item .desc {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item .desc {
    font-size: 16px;
    padding-top: 20px;
  }
}

.testimonial-slider-2 .testimonial-item .testimonial-author .author-img {
  width: 80px;
  height: 80px;
}

.testimonial-slider-2 .testimonial-item .testimonial-author .title {
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 2px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 35px 26px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .testimonial-item {
    padding: 30px 20px;
  }
}

.testimonial-slider-2 .swiper-pagination-area {
  position: absolute;
  left: inherit;
  bottom: 60px;
  right: 45px;
  z-index: 10;
  max-width: 200px;
  width: auto;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-slider-2 .swiper-pagination-area {
    bottom: 30px;
  }
}

.tj-testimonial-section-3 {
  overflow: hidden;
}

.testimonial-wrapper-2 {
  background-color: var(--tj-color-theme-bg);
  border-radius: 12px;
  margin-top: 20px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.testimonial-wrapper-2 .sec-title {
  max-width: 290px;
  width: 100%;
  display: block;
  margin: 0px auto;
  border: 1px dashed var(--tj-color-border-1);
  background-color: var(--tj-color-grey-1);
  border-radius: 40px;
  padding: 2px 22px 4px;
  position: relative;
  top: -19px;
  font-weight: var(--tj-fw-sbold);
}

.testimonial-wrapper-2 .sec-title span {
  color: var(--tj-color-theme-primary);
}

.testimonial-wrapper-2 .client-thumb {
  max-width: 270px;
  margin: 0px auto;
  padding-top: 50px;
}

.testimonial-wrapper-2 .client-thumb .thumb-item {
  margin-bottom: 14px;
}

.testimonial-wrapper-2 .client-thumb .thumb-img {
  width: 82px;
  height: 82px;
  background-color: var(--tj-color-theme-bg);
  border-radius: 50%;
  border: 2px solid transparent;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.testimonial-wrapper-2 .client-thumb .thumb-img img {
  mix-blend-mode: luminosity;
}

.testimonial-wrapper-2 .client-thumb .author-header {
  width: 140px;
  text-align: center;
  margin-top: 15px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  visibility: hidden;
}

.testimonial-wrapper-2 .client-thumb .author-header .title {
  font-size: 20px;
  line-height: 1;
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active .thumb-img {
  border-color: var(--tj-color-theme-primary);
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active .author-header {
  opacity: 1;
  visibility: visible;
}

.testimonial-wrapper-2 .client-thumb .swiper-slide-active img {
  mix-blend-mode: unset;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .client-thumb {
    padding-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-item {
  background-color: var(--tj-color-common-white);
  border-radius: 12px;
  position: relative;
  margin: 17px 220px 0px;
  padding: 40px 38px;
}

.testimonial-wrapper-2 .testimonial-item::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 24px;
  height: 24px;
  background-color: var(--tj-color-common-white);
}

.testimonial-wrapper-2 .testimonial-item .desc {
  font-size: 26px;
  line-height: 1.385;
  text-align: center;
}

.testimonial-wrapper-2 .testimonial-item .desc p {
  margin: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item .desc {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 160px 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 120px 0px;
    padding: 35px 25px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-item {
    margin: 17px 15px 0px;
    padding: 30px 20px;
  }
}

.testimonial-wrapper-2 .testimonial-navigation {
  position: absolute;
  top: 54%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.testimonial-wrapper-2 .slider-prev {
  margin-top: -52px;
  margin-left: -24px;
  background-color: rgb(236, 240, 240);
}

.testimonial-wrapper-2 .slider-next {
  background-color: rgb(236, 240, 240);
  margin-top: -52px;
  margin-right: -24px;
}

.testimonial-wrapper-2:hover .testimonial-navigation {
  opacity: 1;
  visibility: visible;
}

.testimonial-wrapper-2 .quote-icon {
  position: absolute;
  bottom: 0px;
  right: 0px;
  font-size: 299px;
  color: var(--tj-color-theme-primary);
  opacity: 0.1;
  display: inline-flex;
  line-height: 1;
}

.testimonial-wrapper-2 .quote-icon i {
  display: inline-flex;
  line-height: 1;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 .quote-icon {
    font-size: 190px;
  }
}

.testimonial-wrapper-2 .bg-shape-2,
.testimonial-wrapper-2 .bg-shape-1 {
  max-width: 280px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .testimonial-wrapper-2 {
    padding-bottom: 60px;
  }
}

.slider-navigation {
  gap: 13px;
}

.slider-next,
.slider-prev {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 24px;
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 50%;
  transition: 0.3s;
}

.slider-next .anim-icon,
.slider-prev .anim-icon {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  transform: rotate(0deg);
}

.slider-next .anim-icon i,
.slider-prev .anim-icon i {
  position: relative;
  top: 0px;
  color: var(--tj-color-common-black);
  transition: 0.3s;
}

.slider-next .anim-icon i:last-child,
.slider-prev .anim-icon i:last-child {
  position: absolute;
  transform: translateX(150%);
  color: var(--tj-color-common-white);
}

.slider-next:hover,
.slider-prev:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

.slider-next:hover .anim-icon i:first-child,
.slider-prev:hover .anim-icon i:first-child {
  transform: translateX(-150%);
}

.slider-next:hover .anim-icon i:last-child,
.slider-prev:hover .anim-icon i:last-child {
  transform: translateX(0px);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .slider-next,
  .slider-prev {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

.slider-next .anim-icon i:last-child {
  transform: translateX(-150%);
}

.slider-next:hover .anim-icon i:first-child {
  transform: translateX(150%);
}

.swiper-pagination-area {
  text-align: center;
  line-height: 0;
  margin-top: 55px;
}

.swiper-pagination-area.white-pagination .swiper-pagination-bullet {
  background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .swiper-pagination-area {
    margin-top: 30px;
  }
}

.swiper-pagination-bullet {
  width: 12px;
  height: 8px;
  background-color: var(--tj-color-theme-primary);
  border-radius: 30px;
  opacity: 0.15;
  position: relative;
  margin: 5px;
  transition: 0.5s ease-in-out;
}

.swiper-pagination-bullet-active {
  width: 40px;
  opacity: 1;
}

.tj-faq-section .sec-heading {
  max-width: 550px;
}

.faq-img-area {
  max-width: 585px;
  position: relative;
}

.faq-img-area .faq-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.faq-img-area .faq-img img {
  width: 100%;
  height: 630px;
  object-fit: cover;
}

.faq-img-area .faq-img .title {
  position: absolute;
  top: 40px;
  left: 30px;
  max-width: 400px;
  color: var(--tj-color-common-white);
  z-index: 2;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .faq-img-area .faq-img .title {
    max-width: 280px;
  }
}

.faq-img-area .faq-img::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  mix-blend-mode: color;
}

.faq-img-area .box-area {
  max-width: 239px;
  bottom: 0px;
  right: 0px;
  left: inherit;
  padding: 15px 0px 0px 15px;
  border-top-left-radius: 12px;
  border-top-right-radius: 0px;
  background: rgb(216, 229, 229);
}

.faq-img-area .box-area::before {
  left: inherit;
  right: 0px;
  transform: rotate(180deg);
}

.faq-img-area .box-area::after {
  transform: rotate(180deg);
  left: -12px;
  right: inherit;
}

@media (max-width: 575px) {
  .faq-img-area .box-area {
    max-width: 215px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-img-area {
    max-width: 100%;
  }
}

.call-box {
  background-color: #6d8c2d;
  border-radius: 10px;
  padding: 25px 20px 30px;
}

.call-box .call-icon {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: var(--tj-color-theme-dark);
  color: var(--tj-color-common-white);
  font-size: 20px;
  height: 52px;
  width: 52px;
  border-radius: 50%;
  margin-bottom: 9px;
}

@media (max-width: 575px) {
  .call-box .call-icon {
    font-size: 18px;
    height: 45px;
    width: 45px;
  }
}

.call-box .title {
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-sbold);
  max-width: 165px;
  margin-bottom: 29px;
}

@media (max-width: 575px) {
  .call-box .title {
    margin-bottom: 18px;
  }
}

.call-box .number {
  color: var(--tj-color-common-white);
  font-size: 17px;
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
  line-height: 1;
}

.call-box .number span {
  position: relative;
}

.call-box .number span::after {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0px;
  width: 100%;
  height: 1px;
}

.call-box .number:hover span::after {
  animation: 0.8s linear 0s 1 normal none running linehover;
}

@media (max-width: 575px) {
  .call-box .number {
    font-size: 14px;
  }
}

.call-box:hover .call-icon {
  animation: 0.5s linear 0s 1 normal none running bellshake;
}

@media (max-width: 575px) {
  .call-box {
    padding: 20px 18px 25px;
  }
}

.tj-faq .accordion-item {
  margin-bottom: 20px;
  padding: 0px 30px;
  border-radius: 8px;
  border: 0px;
  position: relative;
}

.tj-faq .accordion-item:last-child {
  margin-bottom: 0px;
}

.tj-faq .accordion-item .faq-title {
  font-size: 18px;
  text-align: left;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  padding: 27px 60px 27px 0px;
  width: 100%;
  position: relative;
  z-index: 2;
  transition: none;
}

.tj-faq .accordion-item .faq-title::after {
  content: "";
  color: var(--tj-color-theme-primary);
  font-size: 20px;
  font-weight: normal;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--tj-color-theme-primary);
  transform: translateY(-50%);
  font-family: bexon-icons !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-faq .accordion-item .faq-title {
    padding: 20px 40px 20px 0px;
  }
}

.tj-faq .accordion-item .accordion-body {
  padding: 0px 0px 25px;
  margin-top: 15px;
  color: var(--tj-color-text-body);
}

.tj-faq .accordion-item .accordion-body p:last-child {
  margin-bottom: 0px;
}

.tj-faq .accordion-item.active .faq-title {
  border-bottom: 1px dashed var(--tj-color-border-1);
}

.tj-faq .accordion-item.active .faq-title::after {
  content: "";
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-faq .accordion-item {
    padding: 0px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-faq {
    padding-top: 40px;
  }
}

.tj-faq.style-2 .accordion-item.active {
  background-color: var(--tj-color-theme-primary);
}

.tj-faq.style-2 .accordion-item.active .faq-title {
  color: var(--tj-color-common-white);
  border-color: rgba(255, 255, 255, 0.15);
}

.tj-faq.style-2 .accordion-item.active .faq-title::after {
  color: var(--tj-color-common-white);
  border-color: rgba(255, 255, 255, 0.1);
}

.tj-faq.style-2 .accordion-item.active .accordion-body p {
  color: var(--tj-color-common-white);
}

.tj-blog-section .sec-heading {
  max-width: 550px;
}

.tj-blog-section-2 .sec-heading-wrap .sub-title {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-common-white);
  border: 0px;
  padding: 7px 10px;
}

.tj-blog-section-3 {
  background-color: var(--tj-color-theme-bg);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.tj-blog-section-3 .sec-heading {
  max-width: 550px;
}

.blog-item {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.blog-item .blog-thumb {
  min-height: 280px;
  overflow: hidden;
  position: relative;
}

.blog-item .blog-thumb::before {
  content: "";
  /* background-color: var(--tj-color-theme-dark); */
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.blog-item .blog-thumb img {
  width: 100%;
  min-height: 280px;
  height: 100%;
  object-fit: cover;
  transition: 0.4s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .blog-item .blog-thumb {
    min-height: 240px;
  }

  .blog-item .blog-thumb img {
    min-height: 240px;
  }
}

.blog-item .blog-content {
  background-color: var(--tj-color-common-white);
  padding: 25px 28px 35px;
  height: 100%;
}

.blog-item .blog-content .title {
  font-weight: var(--tj-fw-sbold);
  margin: 0px;
}

.blog-item .blog-content .title a {
  background-image: linear-gradient(currentcolor 0%, currentcolor 100%);
  background-size: 0px 2px;
  background-repeat: no-repeat;
  background-position: 0px 85%;
  display: inline;
}

.blog-item .blog-content .title a:hover {
  background-size: 100% 2px;
}

.blog-item .blog-content .desc {
  margin-top: 15px;
}

.blog-item .blog-content .desc:last-of-type {
  margin-bottom: 0px;
}

.blog-item .blog-content .text-btn {
  margin-top: 15px;
}

.blog-item .blog-content .categories a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.blog-item:hover .blog-thumb img {
  transform: scale(1.1);
}

.blog-item.style-2 {
  padding: 15px 0px 15px 15px;
  display: flex;
  flex-wrap: wrap;
  background-color: var(--tj-color-common-white);
}

.blog-item.style-2 .blog-thumb {
  width: 47%;
  border-radius: 10px;
}

.blog-item.style-2 .blog-content {
  width: 53%;
  height: auto;
  padding: 35px 30px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item.style-2 .blog-content .title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item.style-2 .blog-content {
    padding: 30px 24px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-item.style-2 .blog-content {
    padding: 25px 20px;
  }
}

.blog-item.style-3 {
  border: 0px;
  padding: 0px;
  position: relative;
}

.blog-item.style-3 .blog-thumb::before {
  background: linear-gradient(0deg, rgb(12, 30, 33) 0%, rgba(12, 30, 33, 0) 100%);
  opacity: 1;
}

.blog-item.style-3 .blog-content {
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: auto;
  padding: 28px;
  z-index: 3;
  overflow: hidden;
  transition: 0.3s ease-in-out;
  background-color: transparent;
}

.blog-item.style-3 .blog-content .title a {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-item.style-3 .blog-content .title {
    font-size: 19px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item.style-3 .blog-content {
    padding: 25px 20px;
  }
}

@media (max-width: 575px) {
  .blog-item.style-3 .blog-content {
    padding: 18px 15px;
  }
}

.blog-item.style-3 .blog-meta .categories a {
  color: var(--tj-color-text-body-2);
  border-color: transparent;
}

.blog-item.style-3 .blog-meta .categories a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.blog-item.style-3 .blog-meta span {
  color: var(--tj-color-text-body-2);
}

.blog-item.style-3 .blog-meta span a {
  color: var(--tj-color-grey-1);
}

.blog-item.style-3 .text-btn {
  position: absolute;
  margin: 0px;
  left: 30px;
  bottom: 0px;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.blog-item.style-3 .text-btn .btn-text {
  color: var(--tj-color-common-white);
}

.blog-item.style-3 .text-btn .btn-icon {
  background-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item.style-3 .text-btn {
    left: 20px;
  }
}

@media (max-width: 575px) {
  .blog-item.style-3 .text-btn {
    left: 15px;
  }
}

.blog-item.style-3:hover::before {
  height: 100%;
}

.blog-item.style-3:hover .blog-content {
  padding-bottom: 90px;
}

@media (max-width: 575px) {
  .blog-item.style-3:hover .blog-content {
    padding-bottom: 70px;
  }
}

.blog-item.style-3:hover .text-btn {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

@media (max-width: 575px) {
  .blog-item.style-3:hover .text-btn {
    bottom: 25px;
  }
}

.blog-date {
  position: absolute;
  left: 15px;
  top: 15px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 6px;
  z-index: 2;
}

.blog-date .date {
  display: block;
  font-family: var(--tj-ff-heading);
  font-size: 32px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  letter-spacing: -0.96px;
  margin-bottom: 8px;
  line-height: 1;
}

.blog-date .month {
  display: block;
  font-size: 14px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-bold);
  letter-spacing: 1.4px;
  text-transform: uppercase;
  line-height: 1;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.blog-meta span {
  color: var(--tj-color-text-body-3);
  line-height: 1;
}

.blog-meta span a {
  color: var(--tj-color-heading-primary);
}

.blog-meta span a:hover {
  color: var(--tj-color-theme-primary);
}

@media (max-width: 575px) {
  .blog-meta {
    margin-bottom: 15px;
  }
}

.blog-post-wrapper .blog-item {
  margin-bottom: 40px;
}

.blog-post-wrapper .blog-item .blog-thumb {
  border-radius: 12px;
}

.blog-post-wrapper .blog-item .blog-content {
  background-color: transparent;
  padding: 25px 0px 0px;
}

.blog-post-wrapper .blog-item .blog-meta {
  margin-bottom: 12px;
}

.tj-pagination {
  margin-top: 50px;
}

.tj-pagination ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px;
}

.tj-pagination ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  line-height: 48px;
  text-align: center;
  border: 1px solid var(--tj-color-border-1);
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
}

.tj-pagination ul li .page-numbers i {
  line-height: 1;
  color: var(--tj-color-heading-primary);
}

.tj-pagination ul li .page-numbers:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-primary);
}

.tj-pagination ul li .page-numbers:hover i {
  color: var(--tj-color-common-white);
}

.tj-pagination ul li .page-numbers.current {
  background-color: var(--tj-color-theme-dark);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-dark);
}

.tj-pagination ul li .page-numbers.current i {
  color: var(--tj-color-common-white);
}

.tj-pagination ul li .page-numbers.next {
  font-size: 22px;
}

.tj-cta-section {
  margin-bottom: -195px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-cta-section {
    margin-bottom: -150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-cta-section {
    margin-bottom: -135px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-cta-section {
    margin-bottom: -320px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-cta-section {
    margin-bottom: -270px;
  }
}

.cta-area {
  background-color: var(--tj-color-theme-primary);
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
}

.cta-area .cta-content {
  width: 50%;
  margin: 0px;
  padding: 44px 15px 60px 55px;
}

.cta-area .cta-content .title {
  font-size: 64px;
  line-height: 1.12;
  color: var(--tj-color-common-white);
  margin-bottom: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-area .cta-content .title {
    font-size: 62px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-area .cta-content .title {
    font-size: 56px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-area .cta-content .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-area .cta-content .title {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .cta-area .cta-content .title {
    font-size: 43px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-area .cta-content {
    padding: 34px 15px 45px 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .cta-area .cta-content {
    width: 100%;
    padding: 34px 30px 45px;
  }
}

.cta-area .cta-img {
  width: 50%;
}

.cta-area .cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .cta-area .cta-img {
    width: 100%;
    display: none;
  }
}

.tj-countup-section {
  position: relative;
  z-index: 2;
  margin-bottom: -122px;
}

.countup-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(203, 59, 59);
  border-radius: 12px;
  padding: 60px;
  row-gap: 40px;
}

.countup-item {
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-align: center;
  align-items: center;
  position: relative;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .countup-item {}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .countup-item {}
}

@media (max-width: 575px) {
  .countup-item {
    text-align: center;
  }

  .countup-item:last-child {}
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .countup-item:nth-child(2) .count-separator {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {

  .countup-item:nth-child(4),
  .countup-item:nth-child(3) {
    padding-top: 0px;
  }
}

.inline-content {
  font-size: 22px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
  gap: 15px;
}

.inline-content .odometer {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  display: inline-flex;
}

.inline-content .odometer .odometer-digit,
.inline-content .odometer span {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  display: inline-flex;
  vertical-align: bottom;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inline-content {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .inline-content {}
}

@media (max-width: 575px) {
  .inline-content {
    -webkit-box-pack: center;
    justify-content: center;
  }
}

.count-text {
  color: var(--tj-color-common-white);
  display: block;
  text-align: center;
  margin-top: 15px;
}

.count-separator {
  position: absolute;
  width: 10px;
  height: 90px;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  opacity: 0.15;
}

@media (max-width: 575px) {
  .count-separator {
    top: inherit;
    bottom: 0px;
    right: 50%;
    transform: translate(0px, 50%) rotate(90deg);
  }
}

.tj-working-process {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.tj-working-process .sec-heading-wrap .sub-title {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-common-white);
  border: 0px;
  padding: 7px 10px;
}

.tj-working-process .content-wrap {
  margin-bottom: 45px;
}

.working-process-area {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.process-item {
  max-width: 422px;
  width: 100%;
  background-color: var(--tj-color-common-white);
  padding: 25px 28px 40px;
  position: relative;
  border-radius: 10px;
}

.process-item:not(:last-child)::after {
  content: "";
  font-size: 24px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  font-weight: normal;
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background-color: var(--tj-color-common-white);
  border: 7px solid var(--tj-color-theme-bg);
  top: 50%;
  right: -34px;
  transform: translateY(-50%);
  z-index: 5;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  transition: none;
  font-family: bexon-icons !important;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item:not(:last-child)::after {
    font-size: 20px;
    width: 50px;
    height: 50px;
    right: -30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item:not(:last-child)::after {
    transform: translate(-50%, 0px) rotate(90deg);
    top: inherit;
    right: inherit;
    bottom: -40px;
    left: 50%;
  }
}

.process-item .process-step {
  font-size: 120px;
  color: var(--tj-color-theme-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--tj-fw-sbold);
  display: inline-flex;
  line-height: 1;
  margin-bottom: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item .process-step {
    font-size: 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) {
  .process-item .process-step {
    font-size: 80px;
    margin-bottom: 20px;
  }
}

.process-item .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item .title {
    margin-bottom: 10px;
  }
}

.process-item .desc {
  margin: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-item {
    max-width: 362px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item {
    max-width: 302px;
    padding: 35px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .process-item {
    max-width: 100%;
    padding: 35px 15px 30px;
  }
}

.working-process-wrap {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .working-process-wrap {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-process-wrap {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .working-process-wrap .content-wrap {
    margin-bottom: 30px;
  }
}

.tj-faq.style-3 {
  max-width: 460px;
  width: 100%;
  padding: 0px;
  counter-reset: steps 0;
}

.tj-faq.style-3 .accordion-item {
  background: transparent;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-image: initial;
  border-left: 4px solid var(--tj-color-border-1);
  padding-left: 20px;
  margin-bottom: 0px;
}

.tj-faq.style-3 .accordion-item .faq-title {
  padding-right: 0px;
  padding-left: 27px;
  color: var(--tj-color-heading-primary);
}

.tj-faq.style-3 .accordion-item .faq-title::after {
  display: none;
}

.tj-faq.style-3 .accordion-item .faq-title::before {
  counter-increment: steps 1;
  content: "0" counter(steps) ".";
  font-size: 14px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq.style-3 .accordion-item .faq-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-faq.style-3 .accordion-item .faq-title {
    font-size: 18px;
  }
}

.tj-faq.style-3 .accordion-item .accordion-body {
  padding: 0px 0px 23px 27px;
}

.tj-faq.style-3 .accordion-item.active {
  border-color: var(--tj-color-theme-primary);
}

.tj-faq.style-3 .accordion-item.active .faq-title::before {
  color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-faq.style-3 .accordion-item {
    padding-left: 10px;
  }
}

.working-img-area {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 50%;
  height: 100%;
}

.working-img-area .circle-text-wrap.video-btn {
  right: inherit;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-img-area .circle-text-wrap.video-btn {
    width: 130px;
    height: 130px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .working-img-area {
    position: relative;
    width: 100%;
    min-height: 500px;
  }
}

.working-img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 2;
}

.working-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tj-contact-section {
  background-color: rgb(54, 45, 128);
  border-radius: 12px;
  position: relative;
  z-index: 1;
  padding: 80px 0px;
}

.tj-contact-section .sec-heading {
  margin-inline: 0px;
  margin-bottom: 35px;
}

.tj-contact-section .sec-heading .sec-title {
  color: var(--tj-color-common-white);
}

.global-map {
  width: calc(100% + 530px);
  height: 100%;
  position: relative;
  z-index: -1;
}

.global-map .global-map-img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: -115px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .global-map .global-map-img {
    left: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .global-map .global-map-img {
    left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .global-map .global-map-img {
    left: 0px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .global-map {
    width: calc(100% + 360px);
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .global-map {
    width: calc(100% + 280px);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .global-map {
    width: 100%;
    height: 385px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .global-map {
    width: 100%;
    height: 285px;
    margin-bottom: 40px;
  }
}

.map-area {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.map-area iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .map-area {
    height: auto;
  }
}

.contact-info .contact-item {
  padding: 13px 0px 9px;
}

.contact-info .contact-item .subtitle {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: rgb(255, 255, 255);
  margin-bottom: 7px;
  opacity: 0.6;
}

.contact-info .contact-item a:hover {}

.contact-info .contact-item .contact-link {
  display: inline-block;
  color: var(--tj-color-common-white);
}

.contact-info .contact-item:last-child {
  border: 0px;
}

.contact-form {
  background-color: var(--tj-color-common-white);
  margin-inline: 0px 15px;
  padding: 60px 50px;
  border-radius: 12px;
}

.contact-form .title {
  margin-bottom: 35px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .title {
    margin-bottom: 25px;
  }
}

.contact-form .form-input {
  margin-bottom: 27px;
  position: relative;
}

.contact-form .form-input textarea,
.contact-form .form-input select,
.contact-form .form-input .nice-select,
.contact-form .form-input input[type="tel"],
.contact-form .form-input input[type="text"],
.contact-form .form-input input[type="email"] {
  background-color: transparent;
  color: var(--tj-color-text-body-3);
  padding: 11px 0px;
  border-top: 0px;
  border-right: 0px;
  border-left: 0px;
  border-image: initial;
  border-bottom: 1px solid var(--tj-color-border-1);
}

.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type="tel"]::-webkit-input-placeholder,
.contact-form .form-input input[type="text"]::-webkit-input-placeholder,
.contact-form .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-3);
}

.contact-form .form-input textarea::-webkit-input-placeholder,
.contact-form .form-input select::-webkit-input-placeholder,
.contact-form .form-input .nice-select::-webkit-input-placeholder,
.contact-form .form-input input[type="tel"]::-webkit-input-placeholder,
.contact-form .form-input input[type="text"]::-webkit-input-placeholder,
.contact-form .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-3);
}

.contact-form .form-input textarea::placeholder,
.contact-form .form-input select::placeholder,
.contact-form .form-input .nice-select::placeholder,
.contact-form .form-input input[type="tel"]::placeholder,
.contact-form .form-input input[type="text"]::placeholder,
.contact-form .form-input input[type="email"]::placeholder {
  color: var(--tj-color-text-body-3);
}

.contact-form .form-input textarea:focus,
.contact-form .form-input select:focus,
.contact-form .form-input .nice-select:focus,
.contact-form .form-input input[type="tel"]:focus,
.contact-form .form-input input[type="text"]:focus,
.contact-form .form-input input[type="email"]:focus {
  border-color: var(--tj-color-theme-dark);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .contact-form .form-input textarea,
  .contact-form .form-input select,
  .contact-form .form-input .nice-select,
  .contact-form .form-input input[type="tel"],
  .contact-form .form-input input[type="text"],
  .contact-form .form-input input[type="email"] {
    padding: 6px 0px 10px;
  }
}

.contact-form .form-input .cf-label {
  font-size: 16px;
  color: var(--tj-color-text-body-3);
  position: absolute;
  top: 10px;
  left: 0px;
  pointer-events: none;
  transition: 0.2s linear;
}

.contact-form .form-input .cf-label span {
  color: var(--tj-color-theme-primary);
}

.contact-form .form-input textarea:focus~.cf-label,
.contact-form .form-input input[type="tel"]:focus~.cf-label,
.contact-form .form-input input[type="text"]:focus~.cf-label,
.contact-form .form-input input[type="email"]:focus~.cf-label {
  visibility: hidden;
  opacity: 0;
}

.contact-form .form-input .nice-select {
  color: var(--tj-color-text-body-3);
  line-height: 1.5;
  border-radius: 0px;
  margin-bottom: 27px;
}

.contact-form .form-input .nice-select .list {
  width: 100%;
  border-radius: 8px;
}

.contact-form .form-input .nice-select .list .option {
  color: var(--tj-color-theme-dark);
}

.contact-form .form-input .nice-select .list .option:hover,
.contact-form .form-input .nice-select .list .option.focus {
  background: var(--tj-color-theme-bg);
  color: var(--tj-color-theme-dark);
}

.contact-form .form-input .nice-select::after {
  content: "";
  font-family: bexon-icons;
  color: var(--tj-color-common-black);
  font-size: 16px;
  line-height: 1;
  width: 16px;
  height: 16px;
  top: 20px;
  right: 5px;
  border: 0px;
  transform: rotate(0deg);
  transform-origin: center center;
}

.contact-form .form-input .nice-select.open::after {
  transform: rotate(-180deg);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .form-input .nice-select {
    margin-bottom: 20px;
  }
}

.contact-form .form-input textarea {
  height: 130px;
  resize: none;
  padding-top: 0px;
}

.contact-form .form-input.message-input {
  margin-bottom: 30px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form .form-input {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    max-width: 100%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    padding: 25px 20px 30px;
  }
}

.contact-form.style-2 {
  width: 500px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  margin-left: auto;
  max-width: 100%;
}

.contact-form.style-2 .title {
  margin-bottom: 40px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form.style-2 .title {
    margin-bottom: 20px;
  }
}

.contact-form.style-2 .form-input {
  margin-bottom: 27px;
  position: relative;
}

.contact-form.style-2 .form-input.message-input {
  margin-top: 0px;
}

@media (max-width: 575px) {
  .contact-form.style-2 .form-input.message-input {
    margin-top: 20px;
  }
}

.contact-form.style-2 .form-input textarea,
.contact-form.style-2 .form-input input[type="tel"],
.contact-form.style-2 .form-input input[type="text"],
.contact-form.style-2 .form-input input[type="email"] {
  color: rgb(255, 255, 255);
  padding: 11px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="tel"]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="text"]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="tel"]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="text"]::-webkit-input-placeholder,
.contact-form.style-2 .form-input input[type="email"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body-2);
}

.contact-form.style-2 .form-input textarea::placeholder,
.contact-form.style-2 .form-input input[type="tel"]::placeholder,
.contact-form.style-2 .form-input input[type="text"]::placeholder,
.contact-form.style-2 .form-input input[type="email"]::placeholder {
  color: var(--tj-color-text-body-2);
}

.contact-form.style-2 .form-input textarea:focus,
.contact-form.style-2 .form-input input[type="tel"]:focus,
.contact-form.style-2 .form-input input[type="text"]:focus,
.contact-form.style-2 .form-input input[type="email"]:focus {
  border-color: rgb(255, 255, 255);
}

.contact-form.style-2 .form-input .cf-label {
  color: var(--tj-color-text-body-2);
}

.contact-form.style-2 .form-input .nice-select {
  color: var(--tj-color-text-body-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-form.style-2 .form-input .nice-select.open {
  border-color: rgb(255, 255, 255);
}

.contact-form.style-2 .form-input .nice-select::after {
  color: var(--tj-color-common-white);
}

.contact-form.style-2 .form-input textarea {
  height: 140px;
}

@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) {
  .contact-form.style-2 {
    margin-inline-end: 0px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form.style-2 {
    padding: 35px 20px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .contact-form {
    margin-inline-end: 0px;
  }
}

.contact-item.style-2 {
  padding: 30px 25px 40px;
  background-color: var(--tj-color-common-white);
  text-align: center;
  border-radius: 12px;
  height: 100%;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-item.style-2 {
    padding: 25px;
  }
}

.contact-item.style-2 p {
  margin: 0px auto;
  padding: 0px 30px;
}

.contact-item.style-2:hover .contact-icon {
  background: var(--tj-color-theme-primary);
}

.contact-item.style-2:hover .contact-icon i {
  color: var(--tj-color-common-white);
}

.contact-item.style-2 .contact-icon {
  width: 88px;
  height: 88px;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  background: var(--tj-color-theme-bg);
  border-radius: 50%;
  margin-bottom: 22px;
  transition: 0.3s ease-in-out;
}

.contact-item.style-2 .contact-icon i {
  font-size: 32px;
  color: var(--tj-color-theme-primary);
}

.contact-item.style-2 .contact-title {
  font-size: 24px;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 20px;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-item.style-2 .contact-title {
    font-size: 20px;
  }
}

.contact-item.style-2 .contact-list {
  list-style: none;
}

.contact-item.style-2 .contact-list li a {
  color: var(--tj-color-text-body);
}

.contact-item.style-2 .contact-list li a:hover {
  color: var(--tj-color-theme-primary);
}

.contact-item.style-2 .contact-list li.active a {
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-theme-primary);
}

.tj-slider-section {
  position: relative;
  z-index: 1;
  margin: 15px 15px 0px;
  border-radius: 16px;
  overflow: hidden;
}

.tj-slider-section .banner-scroll {
  left: 60px;
  bottom: 60px;
}

.tj-slider-section .banner-scroll .scroll-down {
  color: var(--tj-color-common-white);
}

.tj-slider-section .banner-scroll .scroll-down span {
  border-color: var(--tj-color-common-white);
}

.tj-slider-section .banner-scroll .scroll-down span::before {
  background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-section .banner-scroll {
    left: 27px;
  }
}

@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-slider-section .banner-scroll {
    left: 12px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-slider-section {
    margin: 0px;
    border-radius: 12px;
  }
}

.tj-slider-item {
  min-height: 92.5vh;
  background-color: rgb(12, 30, 33);
  position: relative;
  z-index: 1;
}

.tj-slider-item::after {
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(90deg, rgb(12, 30, 33) 20%, rgba(12, 30, 33, 0.4) 60%, rgba(12, 30, 33, 0.1) 100%);
}

.tj-slider-item .slider-wrapper {
  padding: 195px 0px 347px;
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-slider-item .slider-wrapper {
    padding-left: 50px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-wrapper {
    padding: 190px 0px 280px 30px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-wrapper {
    padding: 170px 0px 280px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-slider-item .slider-wrapper {
    padding: 150px 0px 450px;
  }
}

.tj-slider-item .slider-content {
  max-width: 660px;
}

.tj-slider-item .slider-content .slider-title {
  color: var(--tj-color-common-white);
  font-size: 96px;
  line-height: 1.042;
  letter-spacing: -2.88px;
  margin-bottom: 10px;
}

.tj-slider-item .slider-content .slider-title span {
  color: var(--tj-color-text-body-2);
}

.tj-slider-item .slider-content .slider-title img {
  max-width: 188px;
  border-radius: 50px;
  border: 4px solid var(--tj-color-theme-primary);
  vertical-align: top;
  margin-top: 5px;
  display: inline-flex;
  overflow: hidden;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-item .slider-content .slider-title img {
    max-width: 165px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content .slider-title img {
    max-width: 140px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-slider-item .slider-content .slider-title img {
    max-width: 105px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-item .slider-content .slider-title {
    font-size: 85px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content .slider-title {
    font-size: 70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-slider-item .slider-content .slider-title {
    font-size: 50px;
  }
}

.tj-slider-item .slider-content .slider-desc {
  max-width: 440px;
  font-size: 18px;
  line-height: 1.444;
  color: var(--tj-color-text-body-2);
}

.tj-slider-item .slider-content .slider-btn {
  margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content {
    max-width: 550px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-slider-item {
    min-height: 840px;
  }
}

.swiper-slide .slider-content .slider-title,
.swiper-slide .slider-content .slider-desc,
.swiper-slide .slider-content .slider-btn {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition-duration: 0.8s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-title,
.swiper-slide.swiper-slide-active .slider-content .slider-desc,
.swiper-slide.swiper-slide-active .slider-content .slider-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

.swiper-slide.swiper-slide-active .slider-content .slider-title {
  transition-delay: 1s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-desc {
  transition-delay: 1.25s;
}

.swiper-slide.swiper-slide-active .slider-content .slider-btn {
  transition-delay: 1.5s;
}

.slider-bg-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

.hero-thumb {
  max-width: 1320px;
  width: 100%;
  padding: 0px 10px;
  margin: 0px auto;
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
}

.hero-thumb .swiper-wrapper {
  max-width: 270px;
  margin: 0px;
}

.hero-thumb .thumb-item {
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  width: 80px !important;
}

.hero-thumb .thumb-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 6px;
  background-color: var(--tj-color-theme-dark);
  opacity: 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) {
  .hero-thumb .thumb-item {
    width: 65px !important;
    height: 65px;
  }
}

.hero-thumb .swiper-slide-thumb-active {
  border: 2px solid var(--tj-color-common-white);
}

.hero-thumb .swiper-slide-thumb-active::after {
  opacity: 0.25;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-thumb {
    padding-left: 60px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-thumb {
    max-width: 1140px;
    bottom: 110px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-thumb {
    max-width: 960px;
    bottom: 110px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-thumb {
    max-width: 720px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-thumb {
    max-width: 540px;
    bottom: 270px;
  }
}

@media (max-width: 575px) {
  .hero-thumb {
    bottom: 270px;
  }
}

.hero-navigation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  -webkit-box-pack: justify;
  justify-content: space-between;
  padding: 0px 30px;
  margin-top: 26px;
  transition: 0.5s;
}

.hero-navigation .slider-next,
.hero-navigation .slider-prev {
  width: 60px;
  height: 60px;
  font-size: 28px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: -60px;
}

.hero-navigation .slider-next .anim-icon i,
.hero-navigation .slider-prev .anim-icon i {
  color: var(--tj-color-common-white);
}

.hero-navigation .slider-next .anim-icon i:last-child,
.hero-navigation .slider-prev .anim-icon i:last-child {
  color: var(--tj-color-common-black);
}

.hero-navigation .slider-next:hover,
.hero-navigation .slider-prev:hover {
  border-color: var(--tj-color-common-white);
  background-color: var(--tj-color-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {

  .hero-navigation .slider-next,
  .hero-navigation .slider-prev {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-navigation {
    padding: 0px 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .hero-navigation {
    padding: 0px 15px;
  }
}

.circle-text-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 60px;
  right: 285px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: 5;
  overflow: hidden;
}

.circle-text-wrap .circle-icon,
.circle-text-wrap .circle-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 6;
}

.circle-text-wrap .circle-text {
  width: 164px;
  height: 160px;
  background-size: 100%;
  background-repeat: no-repeat;
  animation: 20s linear 0s infinite normal none running textrotate;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap .circle-text {
    width: 134px;
    height: 130px;
  }
}

.circle-text-wrap .circle-icon {
  color: var(--tj-color-common-white);
  font-size: 73px;
  width: 200px;
  height: 200px;
  line-height: 1;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.circle-text-wrap .circle-icon i {
  transition: 0.3s ease-in-out;
}

.circle-text-wrap .circle-icon:hover i {
  transform: scale(0.8);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap .circle-icon {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .circle-text-wrap {
    right: 6%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .circle-text-wrap {
    width: 160px;
    height: 160px;
    right: 6%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap {
    right: 10%;
    bottom: 40px;
  }
}

@media (max-width: 575px) {
  .circle-text-wrap {
    right: 15px;
    bottom: 40px;
  }
}

.tj-team-section {
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
}

.tj-team-section .sec-heading {
  max-width: 550px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-team-section {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.tj-team-section-2 .sub-title {
  color: var(--tj-color-theme-primary);
  border: 0px;
  padding: 0px;
}

.tj-team-section-3 {
  background-color: var(--tj-color-theme-bg);
  padding-top: 120px;
  padding-bottom: 90px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border-radius: 12px;
}

.tj-team-section-3 .sec-heading {
  max-width: 500px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section-3 {
    padding-top: 100px;
    padding-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-team-section-3 {
    padding-top: 70px;
    padding-bottom: 40px;
  }
}

.team-item {
  position: relative;
  margin-bottom: 30px;
}

.team-item .team-img {
  position: relative;
}

.team-item .team-img img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s linear;
}

.team-item .team-img::after,
.team-item .team-img::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0;
  border-radius: 10px;
}

.team-item .team-img::after {
  background-color: var(--tj-color-theme-primary);
  opacity: 1;
  z-index: -1;
}

.team-item .social-links {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-in-out;
  transform: translate(-50%, -50%);
}

.team-item .social-links ul {
  -webkit-box-pack: center;
  justify-content: center;
}

.team-item .social-links ul li a {
  width: 30px;
  height: 30px;
  background-color: var(--tj-color-theme-bg);
  opacity: 0.4;
}

.team-item .social-links ul li a i {
  color: var(--tj-color-theme-dark);
}

.team-item .social-links ul li a:hover {
  opacity: 1;
  background-color: var(--tj-color-theme-primary);
}

.team-item .social-links ul li a:hover i {
  color: var(--tj-color-common-white);
}

.team-item .team-content {
  position: relative;
  margin-top: 18px;
}

.team-item .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
  width: calc(100% - 35px);
}

.team-item .title a {
  display: inline-block;
}

.team-item .title a:hover {
  color: var(--tj-color-theme-primary);
}

.team-item .designation {
  font-size: 14px;
  color: var(--tj-color-text-body-3);
  line-height: 1;
  display: inline-flex;
}

.team-item .mail-at {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-heading-primary);
  font-size: 22px;
  display: inline-flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  position: absolute;
  top: 6px;
  right: 0px;
}

.team-item .mail-at:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.team-item:hover .team-img::before {
  opacity: 0.75;
}

.team-item:hover .team-img::after {
  transform: rotate(3deg);
}

.team-item:hover .social-links {
  opacity: 1;
  visibility: visible;
}

.team-wrapper {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  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) {
  .team-wrapper {
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
}

.team-img-wrap {
  -webkit-box-flex: 1;
  flex: 1 1 0%;
}

.team-img-wrap .team-img {
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.team-img-wrap .team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  border-radius: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-img-wrap {
    -webkit-box-ordinal-group: 3;
    order: 2;
  }
}

.team-item-wrap {
  -webkit-box-flex: 1;
  flex: 1 1 0%;
}

.team-item-wrap .team-item {
  background-color: var(--tj-color-common-white);
  position: relative;
  text-align: start;
  width: 100%;
  border-radius: 12px;
  padding: 35px 30px 30px;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.team-item-wrap .team-item:last-child {
  margin-bottom: 0px;
}

.team-item-wrap .team-item .team-link {
  color: var(--tj-color-theme-primary);
  font-size: 75px;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-45deg);
}

.team-item-wrap .team-item .team-link:hover {
  transform: rotate(0deg);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-wrap .team-item .team-link {
    font-size: 65px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item .team-link {
    font-size: 50px;
    top: 12px;
  }
}

.team-item-wrap .team-item .team-content {
  margin-top: 0px;
  transition: 0.3s ease-in-out;
}

.team-item-wrap .team-item .title {
  width: calc(100% - 50px);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  transition: none;
  margin-bottom: 11px;
}

.team-item-wrap .team-item .designation {
  font-size: 16px;
}

.team-item-wrap .team-item .social-links {
  top: inherit;
  left: inherit;
  bottom: 30px;
  transform: translate(0px);
}

.team-item-wrap .team-item .social-links ul {
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.team-item-wrap .team-item .social-links ul li a {
  width: 24px;
  height: 24px;
  font-size: 14px;
  background-color: var(--tj-color-theme-dark);
}

.team-item-wrap .team-item .social-links ul li a i {
  color: var(--tj-color-common-white);
}

.team-item-wrap .team-item .social-links ul li a:hover {
  background-color: var(--tj-color-theme-primary);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item .social-links {
    bottom: 20px;
  }
}

.team-item-wrap .team-item .desc {
  opacity: 0;
  visibility: hidden;
}

.team-item-wrap .team-item.active .team-link {
  opacity: 1;
  visibility: visible;
}

.team-item-wrap .team-item.active .team-content {
  margin-bottom: 110px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item-wrap .team-item.active .team-content {
    margin-bottom: 80px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item.active .team-content {
    margin-bottom: 50px;
  }
}

.team-item-wrap .team-item.active .social-links {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.2s;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap .team-item {
    padding: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-item-wrap {
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}

.team-details {
  padding: 120px 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-details {
    padding: 100px 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details {
    padding: 80px 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details {
    padding: 60px 0px;
  }
}

.team-details__img img {
  border-radius: 12px;
  width: 100%;
}

.team-details__content {
  padding-left: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content {
    margin-top: 30px;
    padding-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__content {
    margin-top: 20px;
  }
}

.team-details .team-details__subtitle {
  margin-bottom: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details .team-details__subtitle {
    margin-bottom: 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__name {
    font-size: 36px;
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__name {
    font-size: 30px;
    margin-bottom: 8px;
  }
}

.team-details__desig {
  margin-bottom: 20px;
  color: var(--tj-color-text-body-3);
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__desig {
    margin-bottom: 8px;
  }
}

.team-details .social-links ul li a i {
  color: var(--tj-color-common-white);
}

.team-details__contact-info ul {
  display: flex;
  border: 1px dashed var(--tj-color-border-1);
  margin: 30px 0px;
  border-radius: 12px;
  list-style: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__contact-info ul {
    margin: 20px 0px;
  }
}

.team-details__contact-info ul li {
  -webkit-box-flex: 1;
  flex: 1 1 50%;
  padding: 25px 28px;
  border-right: 1px dashed var(--tj-color-border-1);
  display: flex;
  -webkit-box-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}

.team-details__contact-info ul li:last-child {
  border-right: 0px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__contact-info ul li {
    padding: 16px 18px;
    -webkit-box-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__contact-info ul li {
    padding: 12px 14px;
    -webkit-box-align: center;
    align-items: center;
  }
}

.team-details__contact-info ul span {
  color: var(--tj-color-text-body-3);
  display: inline-block;
}

@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-details__contact-info ul span {
    font-size: 14px;
  }
}

.team-details__contact-info ul a {
  font-size: 20px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
  position: relative;
  display: inline-block;
}

.team-details__contact-info ul a::after {
  content: "";
  width: 0px;
  height: 1px;
  transition: 0.3s;
  position: absolute;
  bottom: 2px;
  left: 0px;
  background-color: var(--tj-color-heading-primary);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__contact-info ul a {
    font-size: 16px;
  }
}

.team-details__contact-info ul a:hover::after {
  width: 100%;
}

.team-details__experience {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details__experience {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__experience {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.team-details__experience__list ul {
  display: flex;
  border: 1px dashed var(--tj-color-border-1);
  flex-wrap: wrap;
  margin: 25px 0px;
  list-style: none;
  border-radius: 10px;
}

.team-details__experience__list ul li {
  -webkit-box-flex: 1;
  flex: 1 1 50%;
  padding: 25px;
  display: flex;
  gap: 8px;
  border-top: 0px;
  border-left: 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .team-details__experience__list ul li {
    padding: 16px;
  }
}

.team-details__experience__list ul li p {
  margin-bottom: 0px;
}

.team-details__experience__list ul li i {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  max-width: 22px;
  width: 100%;
  height: 22px;
  font-size: 10px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-top: 4px;
}

.team-details__experience__list ul li:last-child {
  border-right: 0px;
}

.team-details__experience__list ul li:nth-child(2n) {
  border-right: 0px;
}

.tj-progress {
  width: 100%;
  padding: 0px;
  margin: 0px;
  height: 4px;
  background: var(--tj-color-theme-bg);
  position: relative;
  z-index: 0;
}

.tj-progress-list {
  list-style: none;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  gap: 30px;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-progress-list {
    gap: 20px;
  }
}

.tj-progress-title {
  font-size: 16px;
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-sbold);
  letter-spacing: 0px;
  margin-bottom: 3px;
}

.tj-progress-bar {
  width: 0px;
  height: 100%;
  background: var(--tj-color-theme-primary);
  position: relative;
  z-index: 1;
}

.tj-progress-percent {
  font-size: 16px;
  line-height: 1;
  font-weight: var(--tj-fw-sbold);
  height: auto;
  position: absolute;
  right: 0px;
  bottom: 11px;
  z-index: 2;
}

.tj-page-header {
  padding-top: 60px;
  padding-bottom: 60px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--tj-color-theme-primary);
  background-blend-mode: luminosity;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-page-header {
    padding-top: 90px;
    padding-bottom: 100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-page-header {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.tj-page-title {
  color: var(--tj-color-common-white);
  line-height: 1;
  margin-bottom: 0px;
  font-size: 40px;
}

.tj-page-link {
  margin-top: 32px;
  display: inline-flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 5px 12px;
  z-index: 2;
}

.tj-page-link span {
  color: var(--tj-color-common-white);
  font-size: 16px;
  font-weight: var(--tj-fw-medium);
  position: relative;
  display: inline-block;
  line-height: 1;
  white-space: nowrap;
}

.tj-page-link span i {
  display: inline-flex;
  line-height: 1;
  font-size: 16px;
  color: #fff;
}

.tj-page-link span:not(:first-child) i {
  font-size: 18px;
  font-weight: var(--tj-fw-bold);
  color: #fff;
  -webkit-box-pack: center;
  justify-content: center;
  width: 7px;
  margin-top: 2px;
}

.tj-page-link span a {
  color: #fff;
}

.tj-page-link span a:hover {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-page-link {
    margin-top: 25px;
    flex-wrap: nowrap;
  }
}

.page-header-overlay {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 0.8;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.tj-pricing-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
}

.tj-pricing-section .sec-heading {
  max-width: 550px;
}

.pricing-box {
  padding: 46px 30px 40px;
  background-color: var(--tj-color-common-white);
  border-radius: 12px;
}

.pricing-box.active {
  background-color: var(--tj-color-theme-primary);
}

.pricing-box.active .package-name {
  color: var(--tj-color-common-white);
}

.pricing-box.active .package-desc p {
  color: var(--tj-color-common-white);
}

.pricing-box.active .package-price {
  color: var(--tj-color-common-white);
}

.pricing-box.active .package-currency {
  color: var(--tj-color-common-white);
}

.pricing-box.active .package-period {
  color: var(--tj-color-common-white);
}

.pricing-box.active .pricing-btn a {
  background-color: var(--tj-color-common-white);
  border-color: var(--tj-color-common-white);
}

.pricing-box.active .pricing-btn a .btn-text {
  color: var(--tj-color-heading-primary);
}

.pricing-box.active .list-items ul li {
  color: var(--tj-color-common-white);
}

.pricing-box.active .list-items ul li i {
  color: var(--tj-color-common-white);
}

.package-name {
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
  margin-bottom: 11px;
}

.package-desc p {
  margin-bottom: 0px;
}

.package-price {
  display: flex;
  font-size: 64px;
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  line-height: 0.8;
  margin: 30px 0px 40px;
}

.package-currency {
  font-size: 24px;
}

.package-period {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-text-body);
  margin-top: auto;
}

.pricing-btn {
  overflow: hidden;
  margin-bottom: 37px;
}

.pricing-btn a {
  display: flex;
  text-align: center;
  border: 1px solid var(--tj-color-theme-primary);
  padding: 12px;
  border-radius: 50px;
}

.pricing-btn a .btn-text {
  font-weight: var(--tj-fw-sbold);
}

.list-items ul li {
  gap: 12px;
  margin-bottom: 16px;
}

.post-details-wrapper .blog-images {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}

.post-details-wrapper .title {
  line-height: 1.1;
  margin-bottom: 22px;
}

.post-details-wrapper p {
  margin-bottom: 30px;
}

.post-details-wrapper p:last-child {
  margin-bottom: 0px;
}

.post-details-wrapper .images-wrap {
  margin-bottom: 10px;
}

.post-details-wrapper .image-box {
  margin-bottom: 25px;
  border-radius: 12px;
  overflow: hidden;
}

.post-details-wrapper .image-box img {
  width: 100%;
}

.post-details-wrapper .blog-text h3 {
  margin-bottom: 25px;
}

.post-details-wrapper .blog-text ul {
  margin-bottom: 50px;
  list-style: none;
  columns: 2;
}

.post-details-wrapper .blog-text ul li {
  display: flex;
  -webkit-box-align: start;
  align-items: start;
  column-gap: 10px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 16px;
}

.post-details-wrapper .blog-text ul li:last-child {
  margin-bottom: 0px;
}

.post-details-wrapper .blog-text ul li span {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  font-size: 8px;
  line-height: 1;
  margin-top: 3px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
}

@media (max-width: 575px) {
  .post-details-wrapper .blog-text ul {
    margin-bottom: 30px;
    columns: 1;
  }
}

.post-details-wrapper .blog-text .blog-video {
  position: relative;
  z-index: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 50px;
}

.post-details-wrapper .blog-text .blog-video .video-btn {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.post-details-wrapper .blog-text .blog-video .video-btn span {
  font-size: 20px;
}

.post-details-wrapper .blog-text .blog-video .video-btn::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.2);
  animation: 2s linear 0s infinite normal none running pulse2;
  z-index: -1;
  border-radius: 50%;
}

@media (max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video .video-btn::before {
    width: 70px;
    height: 70px;
  }
}

@media (max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video .video-btn {
    width: 70px;
    height: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .post-details-wrapper .blog-text .blog-video {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.blog-category-two {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  border: 1px dashed var(--tj-color-border-1);
  border-radius: 10px;
  margin-bottom: 25px;
}

.blog-category-two .category-item {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  flex-wrap: wrap;
  border-right: 1px dashed var(--tj-color-border-1);
  padding: 25px 30px;
  gap: 10px;
  width: 33.33%;
}

.blog-category-two .category-item:last-child {
  border-right: none;
}

.blog-category-two .category-item .cate-images {
  width: 52px;
  height: 52px;
}

.blog-category-two .category-item .cate-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-images {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-images {
    width: 35px;
    height: 35px;
  }
}

.blog-category-two .category-item .cate-text .degination {
  display: block;
  color: var(--tj-color-text-body-3);
  font-size: 14px;
  line-height: 1;
  margin-bottom: 6px;
}

.blog-category-two .category-item .cate-text .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-text .title {
    font-size: 14px;
  }
}

.blog-category-two .category-item .cate-icons {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 24px;
  width: 52px;
  height: 52px;
  line-height: 1;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .cate-icons {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .cate-icons {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
}

.blog-category-two .category-item .text {
  font-weight: var(--tj-fw-sbold);
  line-height: 1;
  margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item .text {
    font-size: 16px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-category-two .category-item .text {
    font-size: 14px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-category-two .category-item {
    padding: 25px 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-category-two .category-item {
    padding: 20px 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two .category-item {
    width: 100%;
    padding: 0px;
    border: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .blog-category-two {
    padding: 20px;
    gap: 20px;
  }
}

blockquote {}

blockquote::before {
  font-size: 40px;
  color: var(--tj-color-theme-primary);
  font-family: bexon-icons;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
}

blockquote p {
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.417;
  border-radius: 12px;
  margin-bottom: 20px !important;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  blockquote p {
    font-size: 20px;
    margin-bottom: 15px !important;
  }
}

blockquote cite {
  color: var(--tj-color-heading-primary);
  display: block;
  text-align: end;
  font-style: normal;
  position: relative;
  z-index: 1;
}

blockquote cite::before {
  content: "";
  display: inline-block;
  background: var(--tj-color-theme-primary);
  height: 1px;
  width: 50px;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  blockquote {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}

.tj-tags-post {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: center;
  border-top: 1px dashed var(--tj-color-border-1);
  border-bottom: 1px dashed var(--tj-color-border-1);
  padding: 22px 0px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.tj-tags-post .tagcloud {
  width: calc(100% - 200px);
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-tags-post .tagcloud {
    width: 100%;
  }
}

.tj-tags-post .post-share ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 10px 15px;
}

.tj-tags-post .post-share ul li {
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  margin-bottom: 0px;
}

.tj-tags-post .post-share ul li a {
  display: flex;
  font-size: 17px;
  line-height: 1;
  color: var(--tj-color-heading-primary);
}

.tj-tags-post .post-share ul li a i {
  display: inline-flex;
  line-height: 1;
}

.tj-tags-post .post-share ul li a:hover i {
  color: var(--tj-color-theme-primary);
}

.tj-tags-post.no_socials {
  width: 100%;
}

.tj-post__navigation {
  background-color: var(--tj-color-common-white);
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  gap: 25px;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tj-post__navigation .tj-nav-post__nav a {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  gap: 8px;
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
}

.tj-post__navigation .tj-nav-post__nav a span {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
  border: 1px solid var(--tj-color-border-1);
  font-size: 24px;
  line-height: 1;
  transition: 0.3s ease-in-out;
}

.tj-post__navigation .tj-nav-post__nav a span i {
  color: var(--tj-color-theme-dark);
}

@media (max-width: 575px) {
  .tj-post__navigation .tj-nav-post__nav a span {
    width: 48px;
    height: 48px;
  }
}

.tj-post__navigation .tj-nav-post__nav a:hover span {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}

.tj-post__navigation .tj-nav-post__nav a:hover span i {
  color: var(--tj-color-common-white);
}

.tj-post__navigation .tj-nav-post__grid {
  font-size: 30px;
  line-height: 1;
  color: var(--tj-color-common-black);
}

.tj-post__navigation .tj-nav-post__grid a {
  color: currentcolor;
}

.tj-post__navigation .tj-nav-post__grid a:hover {
  color: var(--tj-color-theme-primary);
}

@media (max-width: 575px) {
  .tj-post__navigation {
    padding: 20px;
    gap: 20px;
  }
}

.tj-comments-wrap .comments-title .title {
  margin-bottom: 22px;
}

@media (max-width: 575px) {
  .tj-comments-wrap .comments-title .title {
    margin-bottom: 15px;
  }
}

.tj-latest-comments ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.tj-latest-comments ul .tj-comment {
  margin-bottom: 20px;
}

.tj-latest-comments ul .tj-comment:last-child {
  margin-bottom: 0px;
}

.tj-latest-comments ul .tj-comment .comment-content {
  display: flex;
  gap: 12px;
  padding: 30px;
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  position: relative;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
  max-width: 64px;
  height: 64px;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}

.tj-latest-comments ul .tj-comment .comment-content .comment-avatar img {
  width: 100%;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header {
  margin-top: 10px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
  font-size: 18px;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 6px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a:hover {
  color: var(--tj-color-theme-primary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text {
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  gap: 20px;
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply {
  position: absolute;
  top: 35px;
  right: 30px;
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-dark-3);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply:hover {
  color: var(--tj-color-theme-primary);
}

.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text span {
  font-size: 14px;
  color: var(--tj-color-theme-dark-4);
  font-weight: var(--tj-fw-regular);
}

@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment .comment-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
    margin-right: auto;
  }
}

.tj-latest-comments ul .tj-comment .desc {
  margin-top: 14px;
}

.tj-latest-comments ul .tj-comment .desc p:last-child {
  margin-bottom: 0px;
}

.tj-latest-comments ul .tj-comment>.children {
  padding-left: 75px;
}

@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment>.children {
    padding-left: 35px;
  }
}

.tj-latest-comments ul .tj-comment:last-child .comment-content .comments-header {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}

.tj-comments__container {
  margin-top: 50px;
}

.comment-respond .comment-reply-title {
  margin-bottom: 25px;
}

.comment-respond .form-input {
  margin-bottom: 30px;
}

.comment-respond .form-input input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]),
.comment-respond .form-input textarea,
.comment-respond .form-input input[type="email"],
.comment-respond .form-input input[type="text"] {
  background: var(--tj-color-common-white);
  height: 60px;
  padding: 18px 20px;
  border: 1px solid var(--tj-color-common-white);
  border-radius: 10px;
}

.comment-respond .form-input input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::-webkit-input-placeholder,
.comment-respond .form-input textarea::-webkit-input-placeholder,
.comment-respond .form-input input[type="email"]::-webkit-input-placeholder,
.comment-respond .form-input input[type="text"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}

.comment-respond .form-input input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"])::placeholder,
.comment-respond .form-input textarea::placeholder,
.comment-respond .form-input input[type="email"]::placeholder,
.comment-respond .form-input input[type="text"]::placeholder {
  color: var(--tj-color-text-body);
}

.comment-respond .form-input input:not([type="submit"]):not([type="radio"]):not([type="checkbox"]):not([type="search"]):focus,
.comment-respond .form-input textarea:focus,
.comment-respond .form-input input[type="email"]:focus,
.comment-respond .form-input input[type="text"]:focus {
  border-color: var(--tj-color-theme-primary);
}

.comment-respond .form-input textarea {
  min-height: 180px;
  resize: none;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .comment-respond .form-input {
    margin-bottom: 20px;
  }
}

.tj-main-sidebar {
  padding-left: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
only screen and (min-width: 768px) and (max-width: 991px),
only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .tj-main-sidebar {
    padding-left: 0px;
  }
}

.tj-sidebar-widget {
  background-color: var(--tj-color-theme-bg);
  margin-bottom: 30px;
  padding: 30px;
  position: relative;
  z-index: 3;
  border-radius: 10px;
  overflow: hidden;
}

.tj-sidebar-widget:last-child {
  margin-bottom: 0px;
}

.tj-sidebar-widget .widget-title {
  color: var(--tj-color-heading-primary);
  font-weight: var(--tj-fw-sbold);
  position: relative;
  margin-bottom: 25px;
  line-height: 1;
  z-index: 1;
}

.tj-sidebar-widget.widget-search .search-box form {
  position: relative;
  width: 100%;
  z-index: 1;
}

.tj-sidebar-widget.widget-search .search-box form input[type="search"] {
  font-size: 16px;
  background: var(--tj-color-common-white);
  width: 100%;
  height: 60px;
  border: 1px solid var(--tj-color-border-1);
  border-radius: 8px;
  padding: 18px 65px 18px 20px;
  line-height: 1;
}

.tj-sidebar-widget.widget-search .search-box form input[type="search"]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}

.tj-sidebar-widget.widget-search .search-box form input[type="search"]::placeholder {
  color: var(--tj-color-text-body);
}

.tj-sidebar-widget.widget-search .search-box form :focus {
  outline: none;
  box-shadow: 0px 0px 0px;
}

.tj-sidebar-widget.widget-search .search-box form button {
  font-size: 22px;
  color: var(--tj-color-heading-primary);
  width: 54px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  border-left: 1px solid var(--tj-color-border-1);
  transition: 0.2s ease-in-out;
}

.tj-sidebar-widget.widget-search .search-box form button i {
  display: inline-flex;
  line-height: 1;
}

.tj-sidebar-widget.tj-recent-posts ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.tj-sidebar-widget.tj-recent-posts ul li {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 15px;
}

.tj-sidebar-widget.tj-recent-posts ul li:last-child {
  margin-bottom: 0px;
}

.tj-sidebar-widget.tj-recent-posts ul li:hover .post-thumb img {
  transform: scale(1.15);
}

.tj-sidebar-widget.tj-recent-posts .post-thumb {
  position: relative;
  width: 100px;
  height: 100px;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.tj-sidebar-widget.tj-recent-posts .post-thumb a {
  display: inline-block;
  width: 100%;
}

.tj-sidebar-widget.tj-recent-posts .post-thumb a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.tj-sidebar-widget.tj-recent-posts .post-content .post-title {
  font-size: 18px;
  line-height: 1.444;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 10px;
}

.tj-sidebar-widget.tj-recent-posts .post-content .post-title a:hover {
  color: var(--tj-color-theme-primary);
}

.tj-sidebar-widget.tj-recent-posts .post-content .blog-meta {
  margin-bottom: 0px;
}

.tj-sidebar-widget.tj-recent-posts .post-content .blog-meta ul li {
  font-size: 14px;
  color: var(--tj-color-text-body);
}

.tj-sidebar-widget.widget-categories ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.tj-sidebar-widget.widget-categories ul li {
  margin-bottom: 10px;
}

.tj-sidebar-widget.widget-categories ul li:last-child {
  margin-bottom: 0px;
}

.tj-sidebar-widget.widget-categories ul li a {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  padding: 20px 15px 17px 25px;
  border-radius: 10px;
}

.tj-sidebar-widget.widget-categories ul li a span {
  color: var(--tj-color-heading-primary);
}

.tj-sidebar-widget.widget-categories ul li a .icon {
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
}

.tj-sidebar-widget.widget-categories ul li a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}

.tj-sidebar-widget.widget-categories ul li a:hover span {
  color: var(--tj-color-common-white);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .tj-sidebar-widget {
    padding: 25px 15px;
  }
}

.tagcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.tagcloud a {
  background-color: var(--tj-color-common-white);
  font-size: 14px;
  line-height: 1;
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-flex;
  overflow: hidden;
}

.tagcloud a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.infos-item {
  display: flex;
  column-gap: 8px;
  padding: 20px 0px;
}

.infos-item:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.infos-item .project-icons {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  font-size: 20px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  position: relative;
  top: 2px;
}

.infos-item .project-text span {
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: var(--tj-color-text-body);
  margin: 0px;
}

.infos-item .project-text .title {
  line-height: 1.1;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .infos-item .project-text .title {
    font-size: 16px;
  }
}

.service-categories ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.service-categories ul li {
  margin-bottom: 10px;
}

.service-categories ul li:last-child {
  margin-bottom: 0px;
}

.service-categories ul li a {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-heading-primary);
  background: var(--tj-color-common-white);
  padding: 20px 15px 17px 25px;
  border-radius: 10px;
}

.service-categories ul li a span {
  color: var(--tj-color-heading-primary);
}

.service-categories ul li a .icon {
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
}

.service-categories ul li a:hover,
.service-categories ul li a.active {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}

.service-categories ul li a:hover span,
.service-categories ul li a.active span {
  color: var(--tj-color-common-white);
}

.widget-feature-item {
  padding: 20px;
}

.widget-feature-item .feature-box {
  position: relative;
  background: var(--tj-color-theme-dark);
  border-radius: 10px;
  overflow: hidden;
}

.widget-feature-item .feature-box .feature-content {
  padding: 30px 28px;
}

.widget-feature-item .feature-box .feature-content .title {
  font-size: 74px;
  color: var(--tj-color-common-white);
  margin-bottom: 15px;
  line-height: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 50px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .widget-feature-item .feature-box .feature-content .title {
    font-size: 60px;
  }
}

.widget-feature-item .feature-box .feature-content>span {
  display: block;
  font-size: 20px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  line-height: 1;
  margin-bottom: 26px;
}

@media (max-width: 575px) {
  .widget-feature-item .feature-box .feature-content>span {
    margin-bottom: 20px;
  }
}

.widget-feature-item .feature-box .feature-content .feature-contact {
  background-color: var(--tj-color-theme-primary);
  padding: 7px 12px;
  border-radius: 50px;
  line-height: 1;
  overflow: hidden;
  display: inline-flex;
  margin: 0px;
}

.widget-feature-item .feature-box .feature-content .feature-contact span {
  color: var(--tj-color-common-white);
  font-size: 18px;
  font-weight: var(--tj-fw-sbold);
  margin: 0px;
  text-shadow: 0px 30px 0px;
  display: inline-flex;
  line-height: 1;
}

.widget-feature-item .feature-box .feature-content .feature-contact i {
  color: var(--tj-color-common-white);
  font-size: 20px;
  margin-right: 6px;
  margin-left: 0px;
}

.widget-feature-item .feature-box .feature-content .feature-contact:hover span {
  transform: translateY(-30px);
}

@media only screen and (min-width: 992px) and (max-width: 1199px),
(max-width: 575px) {
  .widget-feature-item .feature-box .feature-content {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .widget-feature-item .feature-box {
    max-width: 360px;
    margin: 0px auto;
  }
}

@media (max-width: 400px) {
  .widget-feature-item .feature-box {
    max-width: 320px;
    margin: 0px auto;
  }
}

.widget-feature-item .feature-images {
  width: 370px;
  height: 370px;
  border-radius: 50%;
  overflow: hidden;
  margin-left: 60px;
  margin-bottom: -50px;
  border: 5px solid var(--tj-color-theme-primary);
}

.widget-feature-item .feature-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-left: 45px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .widget-feature-item .feature-images {
    width: 500px;
    height: 500px;
    margin-left: 260px;
    margin-bottom: -70px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .widget-feature-item .feature-images {
    margin-left: 180px;
  }
}

@media (max-width: 400px) {
  .widget-feature-item .feature-images {
    width: 320px;
    height: 320px;
    margin-left: 45px;
  }
}

@media (max-width: 575px) {
  .widget-feature-item {
    padding: 20px 15px;
  }
}

.details-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-align: center;
  align-items: center;
  margin-bottom: 50px;
}

.service-details-item {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 30px 17px 25px 18px;
  max-width: 275px;
  width: 100%;
}

.service-details-item .number {
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  width: 33px;
  height: 33px;
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-sbold);
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-bottom: 20px;
}

.service-details-item .title {
  line-height: 1.444;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 18px;
}

.service-details-item .desc {
  margin-bottom: 0px;
}

.service-details-item .desc p:last-child {
  margin-bottom: 0px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-details-item {
    max-width: 235px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-details-item {
    max-width: 220px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-details-item {
    max-width: 250px;
    padding: 30px 15px 15px;
  }
}

@media (max-width: 575px) {
  .service-details-item {
    max-width: 100%;
  }
}

.blog-text .tj-faq {
  margin-bottom: 40px;
  padding-top: 10px;
}

.gallery {
  position: relative;
  display: block;
}

.gallery::before {
  content: "";
  color: var(--tj-color-common-white);
  font-size: 30px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: rgba(12, 30, 33, 0.4);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  opacity: 0;
  visibility: hidden;
  font-family: bexon-icons !important;
}

.gallery:hover::before {
  opacity: 1;
  visibility: visible;
}

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

  100% {
    transform: translateY(0%);
  }
}

@keyframes sticky {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.8);
  }
}

.jumping {
  animation: 1.5s ease 0s infinite normal none running jumping;
}

@-webkit-keyframes jumping {
  0% {
    transform: translateY(2px);
  }

  25% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-6px);
  }

  75% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(2px);
  }
}

@keyframes jumping {
  0% {
    transform: translateY(2px);
  }

  25% {
    transform: translateY(5px);
  }

  50% {
    transform: translateY(-6px);
  }

  75% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(2px);
  }
}

@-webkit-keyframes linehover {
  0% {
    width: 100%;
  }

  50% {
    width: 0px;
    right: 0px;
  }

  100% {
    width: 100%;
    left: 0px;
  }
}

@keyframes linehover {
  0% {
    width: 100%;
  }

  50% {
    width: 0px;
    right: 0px;
  }

  100% {
    width: 100%;
    left: 0px;
  }
}

@-webkit-keyframes textrotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes textrotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes rotates {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotates {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes gelatine {

  0%,
  100% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@keyframes gelatine {

  0%,
  100% {
    transform: scale(1, 1);
  }

  25% {
    transform: scale(0.7, 1.1);
  }

  50% {
    transform: scale(1.1, 0.7);
  }

  75% {
    transform: scale(0.95, 1.05);
  }
}

@-webkit-keyframes borderanimate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@keyframes borderanimate {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
  }

  60% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes bellshake {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(5deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  45% {
    transform: rotate(4deg);
  }

  60% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(2deg);
  }

  85% {
    transform: rotate(-2deg);
  }

  92% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes bellshake {
  0% {
    transform: rotate(0deg);
  }

  15% {
    transform: rotate(5deg);
  }

  30% {
    transform: rotate(-5deg);
  }

  45% {
    transform: rotate(4deg);
  }

  60% {
    transform: rotate(-4deg);
  }

  75% {
    transform: rotate(2deg);
  }

  85% {
    transform: rotate(-2deg);
  }

  92% {
    transform: rotate(1deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.pulse2 {
  animation: 2s linear 0s infinite normal none running pulse2;
}

@-webkit-keyframes pulse2 {
  0% {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
  }

  100% {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 20px;
  }
}

@keyframes pulse2 {
  0% {
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px;
  }

  100% {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 20px;
  }
}

.pulse3 {
  animation: 2s linear 0s infinite normal none running pulse3;
}

@-webkit-keyframes pulse3 {
  0% {
    box-shadow: rgba(30, 138, 138, 0.4) 0px 0px 0px 0px;
  }

  100% {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 8px;
  }
}

@keyframes pulse3 {
  0% {
    box-shadow: rgba(30, 138, 138, 0.4) 0px 0px 0px 0px;
  }

  100% {
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 8px;
  }
}

@-webkit-keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(0px);
  }

  100% {
    transform: skewX(-25deg) translateX(250%);
  }
}

@keyframes shine {
  0% {
    transform: skewX(-25deg) translateX(0px);
  }

  100% {
    transform: skewX(-25deg) translateX(250%);
  }
}

.zoomInOut {
  animation: 3s linear 0s infinite normal none running zoomEffect;
}

@-webkit-keyframes zoomEffect {

  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.2);
  }
}

@keyframes zoomEffect {

  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.2);
  }
}

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

  100% {
    transform: translateY(100%);
  }
}

@keyframes marquee {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(100%);
  }
}

#faqOne button {
  pointer-events: none;
}

#faqOne button::after {
  display: none;
}

.mapDiv {
  position: relative;
}

.mapDiv>h3 {
  color: rgb(255, 255, 255);
  position: absolute;
  bottom: 0px;
  left: 0px;
  margin: 0px;
  font-size: 48px;
  font-weight: 100;
}

.mapDiv>h3 strong {
  font-weight: 600;
}

.mapDiv>img {
  opacity: 0.3;
  pointer-events: none;
  user-select: none;
}

.map_row>.mapDiv {
  position: absolute;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 1100px;
}

.tooltip-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  background: rgb(255, 255, 255);
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  z-index: 3;
}

.pulse::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  width: 100%;
  background: rgb(255, 255, 255);
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: 1500ms ease-out 0s infinite normal none running pulse-border;
  opacity: 0.5;
}

.pvd_gaptop {
  padding-top: 120px;
}

#faqOne,
#faqOne .accordion-item {
  height: 100%;
}

#faqOne .accordion-item {
  padding: 0px 60px;
}

.map_row {
  overflow: hidden;
}

.content-detail {
  font-size: 1rem;
  line-height: 1.6;
  color: rgb(51, 51, 51);
  overflow-wrap: break-word;
}

.content-detail h1,
.content-detail h2,
.content-detail h3,
.content-detail h4,
.content-detail h5,
.content-detail h6 {
  font-weight: bold;
  margin: 1em 0px 0.5em;
  line-height: 1.3;
}

.content-detail h1 {
  font-size: 2em;
}

.content-detail h2 {
  font-size: 1.75em;
}

.content-detail h3 {
  font-size: 1.5em;
}

.content-detail h4 {
  font-size: 1.25em;
}

.content-detail h5 {
  font-size: 1.1em;
}

.content-detail h6 {
  font-size: 1em;
}

.content-detail p {
  margin: 1em 0px;
}

.content-detail ul {
  list-style-type: disc;
  margin: 1em 0px;
  padding-left: 2em;
}

.content-detail ol {
  list-style-type: decimal;
  margin: 1em 0px;
  padding-left: 2em;
}

.content-detail ul ul,
.content-detail ol ul,
.content-detail ul ol,
.content-detail ol ol {
  list-style-type: circle;
  margin-left: 1em;
}

.content-detail li {
  margin-bottom: 0.5em;
  list-style: inherit;
}

.content-detail a {
  color: rgb(51, 51, 51);
  text-decoration: underline;
  transition: color 0.2s;
}

.content-detail a:hover {
  color: rgb(0, 64, 128);
}

.content-detail b,
.content-detail strong {
  font-weight: bold;
}

.content-detail i,
.content-detail em {
  font-style: italic;
}

.content-detail u {
  text-decoration: underline;
}

.content-detail blockquote {
  border-left: 4px solid rgb(204, 204, 204);
  margin: 1em 0px;
  padding: 1em;
  color: rgb(102, 102, 102);
  font-style: italic;
  background-color: rgb(249, 249, 249);
}

.content-detail code {
  font-family: monospace;
  background-color: rgb(244, 244, 244);
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

.content-detail pre {
  font-family: monospace;
  background-color: rgb(244, 244, 244);
  padding: 1em;
  border-radius: 4px;
  overflow-x: auto;
  margin: 1em 0px;
  white-space: pre-wrap;
}

.content-detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0px;
  border: 1px solid rgb(221, 221, 221);
}

.content-detail th,
.content-detail td {
  border: 1px solid rgb(221, 221, 221);
  padding: 0.75em;
  text-align: left;
}

.content-detail th {
  background-color: rgb(245, 245, 245);
  font-weight: bold;
}

.content-detail img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1em 0px;
}

.content-detail dl {
  margin: 1em 0px;
}

.content-detail dt {
  font-weight: bold;
  margin-top: 1em;
}

.content-detail dd {
  margin-left: 1em;
}

.content-detail hr {
  border-right: none;
  border-bottom: none;
  border-left: none;
  border-image: initial;
  border-top: 1px solid rgb(221, 221, 221);
  margin: 1.5em 0px;
}

.content-detail input,
.content-detail select,
.content-detail textarea,
.content-detail button {
  font: inherit;
  padding: 0.5em;
  margin: 0.5em 0px;
  border: 1px solid rgb(204, 204, 204);
  border-radius: 4px;
  box-sizing: border-box;
}

.content-detail button {
  background-color: rgb(0, 102, 204);
  color: white;
  cursor: pointer;
  transition: background-color 0.2s;
}

.content-detail button:hover {
  background-color: rgb(0, 64, 128);
}

.content-detail sub,
.content-detail sup {
  font-size: 0.8em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

.content-detail sup {
  top: -0.5em;
}

.content-detail sub {
  bottom: -0.25em;
}

.content-detail iframe,
.content-detail video {
  max-width: 100%;
  height: auto;
  margin: 1em 0px;
  border: none;
}

.content-detail figure {
  margin: 1em 0px;
  text-align: center;
}

.content-detail figcaption {
  font-size: 0.9em;
  color: rgb(102, 102, 102);
}

.content-detail mark {
  background-color: rgb(255, 255, 0);
  color: rgb(51, 51, 51);
}

.content-detail aside {
  background-color: rgb(249, 249, 249);
  padding: 1em;
  margin: 1em 0px;
  border-left: 4px solid rgb(204, 204, 204);
  font-size: 0.9em;
  color: rgb(85, 85, 85);
}

.content-detail .pull-quote {
  font-size: 1.2em;
  font-style: italic;
  text-align: center;
  margin: 1em 0px;
  color: rgb(68, 68, 68);
}

.content-detail abbr[title] {
  border-bottom: 1px dotted rgb(51, 51, 51);
  cursor: help;
}

.content-detail.about h1,
.content-detail.about h2,
.content-detail.about h3,
.content-detail.about h4,
.content-detail.about h5,
.content-detail.about h6 {
  font-weight: 500;
}

#logoLister .client-logo {
  width: 100%;
}

#logoLister .client-logo img {
  transition: 0.3s;
}

#logoLister .client-logo:hover img {
  filter: none;
}

.u_title {
  margin: 0px 0px 60px;
  font-size: 28px;
  font-weight: 500;
}

.inline-content i {
  font-size: 48px;
}

.feature-list {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.feature-list li {
  background: rgb(255, 255, 255);
  margin-bottom: 12px;
  padding: 7px 15px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 2px 4px;
  border: 1px solid rgb(226, 232, 240);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.feature-list li:hover {
  z-index: 10;
}

.icon-wrapper {
  width: 45px;
  height: 45px;
  background: #6d8c2d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.icon-wrapper i {
  font-size: 1.25rem;
  color: rgb(255, 255, 255);
  transition: 0.3s;
}

.text-content {
  font-size: 1.05rem;
  color: rgb(51, 65, 85);
  font-weight: 500;
  letter-spacing: -0.01em;
  flex: 1 1 0%;
}

.the_parallax {
  height: 70vh;
  background-position: center center;
  background-size: cover;
}

.banner-left-box {
  position: relative;
}

.banner-left-box>img {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1);
}

.banner-left-box .banner-content {
  position: relative;
  z-index: 2;
}

.blog-content img {
  border-radius: 10px;
  margin-bottom: 15px;
  height: 270px;
  object-fit: cover;
  width: 100%;
}

.blog-content>a:first-child {
  position: relative;
  display: flex;
}

.blog-content>a:first-child::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  background-image: url("../images/tadinda.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  height: 60px;
  width: 100px;
}

.blog-item {
  transition: 0.3s;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item:hover .blog-content .title a {
  background-size: 100% 2px;
}

.index_pgp {
  overflow: hidden;
}

.index_pgp_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

#pgp {
  width: auto;
}

.index_pgp_nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgb(226, 232, 240);
  background: rgb(241, 245, 249);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

.index_pgp_nav button:hover {
  background: rgb(226, 232, 240);
}

.slider6 .mainSwiper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  min-height: 450px;
}

.slider6 .mainSwiper h2 {
  color: rgb(255, 255, 255);
  font-size: 62px;
  font-weight: 700;
  margin: 0px;
  overflow: hidden;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.slider6 .mainSwiper p {
  font-size: 18px;
  color: rgb(255, 255, 255);
  margin: 30px 0px 0px;
  overflow: hidden;
  -webkit-line-clamp: 4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  width: 700px;
  max-width: 100%;
}

.slider6 .mainSwiper a {
  background-color: rgb(33, 139, 195);
  border: 2px solid rgb(33, 139, 195);
  color: rgb(255, 255, 255);
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  height: 50px;
  padding: 0px 24px;
  font-weight: 600;
  position: relative;
  margin-top: 24px;
  transition: 0.3s;
}

.slider6 .mainSwiper a:hover {
  background-color: transparent;
  color: rgb(255, 255, 255);
  border-color: rgb(255, 255, 255);
}

.slider6 .mainSwiper .swiper-slide {
  position: relative;
}

.slider6 .mainSwiper .swiper-slide::before {
  content: "";
  position: absolute;
  opacity: 1;
  background: linear-gradient(90deg, #6d8c2d 0%, rgba(51, 51, 51, 0) 100%);
  left: 0px;
  top: 0px;
  height: 100%;
  width: 100%;
}

.slider6 .mainSwiper .swiper-slide .container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider6 .mainSwiper .swiper-slide .container>div {
  padding: 0px 0px 0px 100px;
  width: 700px;
  max-width: 100%;
}

.slider6 .mainSwiper {
  position: relative;
  overflow: hidden;
}

.slider6 .mainSwiper>.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.slider6 .mainSwiper>.container button {
  pointer-events: all;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: rgb(255, 255, 255);
  background: rgba(0, 0, 0, 0.2);
}

.slider6 #mainPagination {
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: center;
  bottom: 30px;
  z-index: 2;
}

.slider6 #mainPagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 3px;
}

.mainSwiper {
  margin: 0px 15px;
  border-radius: 12px;
  overflow: hidden;
}

footer.footer39 {
  background-color: rgb(36, 36, 36);
  border-top: 17px solid var(--tj-color-theme-primary);
  min-height: 200px;
  padding: 60px 0px;
  position: relative;
  overflow: hidden;
}

footer.footer39>img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 150%;
  opacity: 0.03;
  pointer-events: none;
  user-select: none;
  max-height: 700px;
}

.footer39 .footer_inner {
  display: flex;
  margin-bottom: 40px;
}

.footer39 .ft_left {
  width: 260px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer39 .ft_left img {
  max-width: 150px;
}

.footer39 .ft_right {
  flex: 1 1 0%;
}

footer.footer39 h3 {
  color: rgb(255, 255, 255);
  margin: 0px 0px 13px;
  font-size: 18px;
  font-weight: 700;
}

footer.footer39 p {
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.footer39 .ft_right ul {
  display: flex;
  flex-flow: column wrap;
  gap: 10px;
}

.footer39 .ft_right ul li a {
  color: rgb(255, 255, 255);
  font-size: 14px;
}

.footer39 .ft_right ul li a:hover {
  text-decoration: underline;
}

footer.footer39 .social_list {
  display: flex;
  gap: 5px;
}

footer.footer39 .social_list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  width: 40px;
  height: 40px;
  background: transparent;
  font-size: 22px;
  transition: 0.3s;
  border-radius: 50%;
}

footer.footer39 .social_list li a:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(57, 62, 45);
}

.footer39 .footer_bottom {
  margin-top: 80px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer39 .footer_bottom p {
  font-size: 13px;
  color: rgb(150, 150, 150);
}

.footer39 a.koolay_sign {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgb(150, 150, 150);
  font-weight: 600;
  justify-content: center;
  font-size: 12px;
}

.footer39 .koolay_sign img {
  height: 18px;
}

.footer39 .subs_form {
  position: relative;
  margin-bottom: 30px;
}

.footer39 .subs_form input {
  width: 100%;
  border-radius: 5px;
  height: 52px;
  padding-left: 16px;
  font-size: 16px;
  color: rgb(30, 30, 30);
  background-color: rgb(255, 255, 255);
}

.footer39 .subs_form input::placeholder {
  color: rgb(30, 30, 30);
}

.footer39 .subs_form button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 52px;
  display: flex;
  align-items: center;
  padding: 0px 27px;
  background-color: rgb(224, 155, 51);
  color: rgb(255, 255, 255);
  font-weight: 600;
  border-radius: 0px 5px 5px 0px;
  text-transform: uppercase;
}

.footer39 .ft_right .row {
  row-gap: 30px;
}

.footer39 .footer_links_overlay {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding: 0px 60px 0px 0px;
}

.footer39 .footer_links_overlay>ul {
  flex: 0 0 calc(33% - 19px);
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.footer39 .footer_links_overlay>ul li i {
  display: none;
}

.footer39 .footer_links_overlay>ul li a {
  font-size: 14px;
}

.footer39 .footer_links_overlay h6 {
  margin: 0px;
}

.footer39 .footer_links_overlay h6 a {
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 18px !important;
}

footer.footer39>img {
  object-fit: contain;
}

.footer39 .footer_contact {
  background-color: rgb(143, 255, 0);
  padding: 24px;
}

.footer39 .footer_contact h4 {
  margin: 0px 0px 12px;
  color: rgb(0, 0, 0);
  font-weight: 700;
  font-size: 18px;
}

.footer39 .footer_rw1 {
  padding: 40px 0px;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  gap: 15px;
}

.footer39 .footer_rw1>div:first-child {
  width: 260px;
}

.footer39 .footer_rw1>div:last-child {
  flex: 1 1 0%;
}

.footer39 .footer_rw1>div:first-child span {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 700;
}

.footer39 .footer_rw1>div:first-child img {
  width: 140px;
}

.footer39 .websites_list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer39 .websites_list li a {
  color: rgb(255, 255, 255);
  font-weight: 500;
  font-size: 14px;
}

.footer39 .websites_list li a:hover {
  text-decoration: underline;
}

.footer39 .tms_list {
  display: flex;
  gap: 5px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer39 .tms_list li a {
  display: flex;
  align-items: center;
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 14px;
  padding-right: 5px;
  text-decoration: underline;
  border-right: 2px solid rgb(255, 255, 255);
}

.footer39 .tms_list li:last-child a {
  padding-right: 0px;
  border-right: none;
}

footer ul {
  padding: 0px;
}

footer ul li {
  list-style: none;
}

.sidemenu119 .CategorySubjects {
  color: #000;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidemenu119 .CategorySubjects i {
  content: '';
  margin-right: 15px;
  width: 40px;
  height: 39px;
  background: url(../images/corp_ico.png);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center;
  background-size: cover;
}

.sidemenu119 .CategorySubjects i::before {
  /* content: ''; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background-color: #fff;
  width: 80%;
}

.sidemenu119 .wbx_1+.wbx_1 {
  margin-top: 30px;
}

.sidemenu119 .sub_menu ul li a {
  font-size: 18px;
  color: rgb(72, 72, 72);
  padding: 16px 0px;
  font-weight: 500;
  display: flex;
  border-right: 1px solid rgb(197 197 197);
  transition: 0.3s;
  position: relative;
  cursor: pointer;
}

.sidemenu119 .sub_menu ul li:not(:last-child) a {
  border-bottom: 1px solid rgb(197 197 197);
}

.sidemenu119 .sub_menu ul li a.active {
  color: #6d8c2d;
}

.sidemenu119 .sub_menu ul li a::before {
  content: "";
  position: absolute;
  right: -2px;
  top: 0px;
  bottom: 0px;
  width: 3px;
  background-color: #6d8c2d;
  opacity: 0;
  transition: 0.3s;
}

.sidemenu119 .sub_menu ul li a.active::before {
  opacity: 1;
}

.sidemenu119 .sub_menu ul li a.active::before {
  opacity: 1;
}

@media (min-width: 1200px) {
  .sidemenu119 .sub_menu ul li a:hover::before {
    opacity: 1;
  }

  .sidemenu119 .sub_menu ul li a:hover::before {
    opacity: 1;
  }

  .sidemenu119 .sub_menu ul li a:hover {
    color: #6d8c2d;
  }
}

.sidemenu119 #latest_news li a {
  height: auto;
  font-size: 22px;
  padding: 10px 0px;
  line-height: 1.4;
}

.sidemenu119 #latest_news li a span {
  font-size: 12px;
  display: block;
}

.sidemenu119 #latest_news li a::before {
  display: none;
}

.sidemenu119 .rn_list {
  display: flex;
  flex-direction: column;
}

.sidemenu119 .rn_list li a {
  display: flex;
  align-items: center;
}

.sidemenu119 .rn_list li+li {
  margin-top: 12px;
  padding-top: 12px;
}

.sidemenu119 .rn_list li a>div:first-child {
  width: 110px;
}

.sidemenu119 .rn_list li a>div:first-child img {
  width: 100%;
}

.sidemenu119 .rn_list li a>div:last-child {
  flex: 1 1 0%;
  padding-left: 10px;
}

.sidemenu119 .rn_list li a>div:last-child h3 {
  font-size: 14px;
  font-weight: 500;
  margin: 0px;
  color: rgb(0, 0, 0);
  line-height: 1.3;
}

.sidemenu119 .lister_sidebar {
  padding: 0 40px 0 0;
  position: sticky;
  top: 65px;
}

.sidemenu119 ul {
  padding: 0;
}

.sidemenu119 ul li {
  list-style: none;
}

.row.corporate_page {
  padding: 0;
  position: relative;
  z-index: 2;
}

.corp_section {
  padding: 80px 0;
}

.content-detail>:first-child {
  margin-top: 0;
}

@media (max-width: 1200px) {
  .footer39 .footer_links_overlay {
    padding: 0px;
  }
}

@media (max-width: 992px) {
  .footer39 .footer_rw1 {
    padding: 20px 0px;
  }

  .footer39 .footer_inner {
    margin-bottom: 20px;
  }

  .footer39 .subs_form {
    margin-bottom: 20px;
  }

  .footer39 .websites_list {
    justify-content: flex-start;
  }

  .footer39 .footer_rw1 {
    flex-wrap: wrap;
  }

  .footer39 .footer_rw1>div:first-child {
    width: 100%;
  }

  .footer39 .footer_rw1>div:last-child {
    flex: 0 0 auto;
    width: 100%;
  }

  .footer39 .footer_inner>div:first-child,
  .footer39 .footer_inner>div:last-child {
    width: 100%;
  }

  .footer39 .footer_inner {
    row-gap: 60px;
    flex-wrap: wrap;
  }

  .footer39 .ft_left {
    padding-right: 0px;
    text-align: center;
  }

  .footer39 .ft_left img {
    display: block;
    margin: 0px auto;
  }

  footer.footer39 .social_list {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer39 .footer_links_overlay {
    flex-wrap: wrap;
    gap: 20px 0px;
    justify-content: space-between;
  }

  .footer39 .footer_links_overlay>ul {
    width: calc(50% - 10px);
    flex: 0 0 auto;
    text-align: left;
  }

  .footer39 .ft_right ul {
    text-align: left !important;
  }

  .footer39 .footer_bottom {
    justify-content: space-between;
    flex-flow: column wrap;
    margin-top: 40px;
    gap: 15px;
  }

  footer.footer39 h3 {
    text-align: center;
    margin-bottom: 20px;
  }

  footer.footer39 {
    padding: 40px 0px;
    border-top-width: 12px;
  }

  .footer39 .ft_right .row {
    row-gap: 30px;
  }

  .footer39 .ft_right ul {
    gap: 10px;
    text-align: center;
  }
}

@media (min-width: 1400px) {
  .slider6 .mainSwiper>.container {
    max-width: 1400px;
    width: 1400px;
  }
}

@media (max-width: 1200px) {
  .slider6 .has-submenu.active::after {
    content: "" !important;
  }

  .slider6 .h_menu>ul>li>a.has-submenu::after,
  .slider6 .has-submenu::after {
    content: "";
    font-family: FontAwesome;
    color: rgb(255, 255, 255);
    position: static;
    height: auto;
    border-radius: 0px;
    font-size: 20px;
    line-height: normal;
  }

  .slider6 .mainSwiper img {
    height: calc(-154px + 100vh);
  }

  .slider6 .mainSwiper h2 {
    font-size: 40px;
  }

  .slider6 .mainSwiper p {
    font-size: 18px;
  }

  .slider6 .mainSwiper a {
    font-size: 16px;
    height: 40px;
    padding: 0px 20px;
  }
}

@media (max-width: 992px) {
  .sidemenu119 .lister_sidebar {
    padding-right: 15px;
    padding-left: 15px;
  }

  .corporate_page {
    flex-direction: column-reverse;
    row-gap: 40px;
  }

  .slider6 .mainSwiper h2 {
    font-size: 40px;
  }

  .slider6 .mainSwiper p {
    font-size: 18px;
  }

  .slider6 .mainSwiper>.container button {
    display: none;
  }

  .slider6 .mainSwiper .swiper-slide .container>div {
    padding: 0px;
  }
}

@media (max-width: 768px) {
  .corp_section {
    padding: 40px 0;
  }

  .slider6 #mainPagination {
    bottom: 15px;
  }

  .slider6 .mainSwiper img {
    height: calc(-56px + 100vh);
  }

  .slider6 .mainSwiper h2 {
    font-size: 28px;
  }

  .slider6 .mainSwiper p {
    font-size: 14px;
    margin-top: 15px;
  }

  .slider6 .mainSwiper .swiper-slide .container {
    padding: 0px 15px;
  }

  .slider6 .mainSwiper a {
    font-size: 14px;
    height: 35px;
    padding: 0px 15px;
  }

  .slider6 .mainSwiper img {
    height: 450px;
    min-height: auto;
    object-position: -600px center;
  }

  .slider6 .mainSwiper .swiper-slide .container {
    margin-top: -25px;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0px) scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 1600px) {
  .map_row>.mapDiv {
    width: 930px;
  }
}

@media (max-width: 992px) {
  .banner-img img {
    height: auto;
  }

  .map_row>.mapDiv {
    position: relative;
    transform: none;
    left: 0px;
    top: 0px;
    margin: 0px 0px 30px 30px;
    width: calc(100% + 120px);
  }

  .contact-form.style-2 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-img-area .faq-img img {
    height: 400px;
  }

  .about-img-area .about-img video {
    height: 500px;
  }

  .countup-wrap {
    margin: 0px 5px;
  }

  .u_title {
    margin-bottom: 40px;
  }

  .tooltip-btn {
    width: 22px;
    height: 22px;
  }

  .map_row>.mapDiv {
    margin: 0px 0px 30px 15px;
    width: calc(100% + 120px);
  }

  .mapDiv>h3 {
    font-size: 28px;
  }

  .contact-form.style-2 .form-input textarea {
    height: 100px;
  }

  #faqOne .accordion-item {
    padding: 0px 20px;
  }

  .banner-right-box .customers-text {
    font-size: 13px;
  }

  .banner-right-box .customers-number,
  .banner-right-box .customers-text {
    display: none;
  }
}

@media (max-width: 575px) {
  .the_parallax {
    height: 200px;
  }
}

.prd_079 {
  color: #333;
}

.prd_079 .product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.prd_079 .image-section {
  background: linear-gradient(135deg, #f9fbf2 0%, #e8f0d1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}

.prd_079 .image-section img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
  border-radius: 30px;
}

.prd_079 .badge-weight {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #be1e2d;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
}

.prd_079 .content-section {
  padding: 50px;
}

.prd_079 .brand-name {
  color: #6d8c2d;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.prd_079 .product-title {
  font-size: 36px;
  font-weight: 700;
  color: #2d3436;
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
}

.prd_079 .product-title span {
  background-color: #ff0000;
  color: #fff;
  font-size: 20px;
}

.prd_079 .pistachio-percentage {
  display: inline-block;
  background: #6d8c2d;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 25px;
}

.prd_079 .section-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #6d8c2d;
  border-bottom: 2px solid #eef2e6;
  padding-bottom: 8px;
}

.prd_079 .ingredients-box {
  background: #f9fbf2;
  padding: 20px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  border-left: 4px solid #6d8c2d;
}

.prd_079 .spec-table {
  width: 100%;
  margin-bottom: 20px;
}

.prd_079 .spec-table tr td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #f0f0f0;
}

.prd_079 .spec-label {
  font-weight: 600;
  color: #666;
}

.prd_079 .spec-value {
  text-align: right;
  font-weight: 500;
  color: #2d3436;
}

.prd_079 .logistics-grid {
  background: #fff;
  border: 1px solid #eef2e6;
  border-radius: 12px;
  padding: 20px;
}

.the_badges {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 2;
}

.the_badges li {
  list-style: none;
}

.the_badges img {
  height: 55px;
  width: auto;
}

.prd_079 .image-section figure {
  margin: 0;
  position: relative;
}

@media (max-width: 1400px) {
  .the_badges img {
    height: 45px;
  }
}

@media (max-width: 1200px) {
  .the_badges {
    position: static;
    margin-top: 15px;
  }
}

@media (max-width: 991px) {
  .tj-page-link span {
    font-size: 14px;
  }

  .prd_079 .content-section {
    padding: 30px;
  }

  .prd_079 .product-title {
    font-size: 28px;
  }

  .prd_079 .image-section {
    padding: 20px;
  }
}

@media(max-width:768px) {
  .the_badges img {
    height: 50px;
  }
}