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

  Theme Default CSS
	Buttons CSS
	Header CSS
	Footer CSS
	Search CSS
	Hamburger CSS
	Preloader CSS
	Heading CSS
	Hero CSS
	Choose CSS
	Client CSS
	About CSS
	Services CSS
	Marquee CSS
	Project CSS
	Testimonial CSS
	Faq CSS
	Blog CSS
	CTA CSS
	Countup CSS
	Working process CSS
	Contact CSS
	Slider CSS
	Team CSS
	Team details
	Breadcrumb CSS
	Pricing CSS
	Blog Details CSS
	Error 404
	Animate CSS

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Mona+Sans:ital,wght@0,200..900;1,200..900&display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: "Mona Sans", sans-serif;
  --tj-ff-heading: "Mona Sans", sans-serif;
  --tj-ff-fontawesome: "Font Awesome 6 Pro";
  /**
     @Font-weight Declaration
   */
  --tj-fw-normal: normal;
  --tj-fw-thin: 100;
  --tj-fw-elight: 200;
  --tj-fw-light: 300;
  --tj-fw-regular: 400;
  --tj-fw-medium: 500;
  --tj-fw-sbold: 600;
  --tj-fw-bold: 700;
  --tj-fw-ebold: 800;
  --tj-fw-black: 900;
  /**
     @Font-Size Declaration
   */
  --tj-fs-body: 16px;
  --tj-fs-p: 16px;
  --tj-fs-h1: 74px;
  --tj-fs-h2: 48px;
  --tj-fs-h3: 32px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 20px;
  --tj-fs-h6: 18px;
  /**
     @Color Declaration
   */
  --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-text-body-5: rgba(255, 255, 255, 0.8);
  --tj-color-theme-primary: #173266;
  --tj-color-theme-bg: #17326612;
  --tj-color-theme-bg-2: #cee0e0;
  --tj-color-theme-bg-3: #202e30;
  --tj-color-theme-dark: #1f2937;
  --tj-color-theme-dark-2: #18292c;
  --tj-color-theme-dark-3: #364e52;
  --tj-color-theme-dark-4: #67787a;
  --tj-color-theme-dark-5: #676e7a;
  --tj-color-red-1: #ff0000;
  --tj-color-grey-1: #ecf0f0;
  --tj-color-grey-2: #a9b8b8;
  --tj-color-grey-3: rgba(255, 255, 255, 0.1019607843);
  --tj-color-border-1: #c9d1d1;
  --tj-color-border-2: #313d3d;
  --tj-color-border-3: rgba(255, 255, 255, 0.1490196078);
  --tj-color-border-4: rgba(255, 255, 255, 0.2);
  --tj-color-border-5: rgba(30, 138, 138, 0.1490196078);
}

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

.site-main {
  position: relative;
}

body {
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: normal;
  color: var(--tj-color-text-body);
  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;
}

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

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,
svg path,
h1,
h2,
h3,
h4,
h5,
h6 {
   -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; 
}

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

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

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

.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;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}

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 {
  -webkit-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);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

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

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

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

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

*::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
*::-moz-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
*:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
*::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
*::placeholder {
  color: var(--tj-color-text-body);
  font-size: var(--tj-fs-body);
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

/**
 	Common Classes CSS
*/
table {
  border-collapse: separate;
  border-spacing: 0;
}

img {
  max-width: 100%;
}

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

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

.fix {
  overflow: hidden;
}

.section-gap {
  padding-top: 120px;
  padding-bottom: 120px;
}
@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: 70px;
    padding-bottom: 70px;
  }
}

.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 {
  -webkit-margin-start: 15px;
  margin-inline-start: 15px;
  -webkit-margin-end: 15px;
  margin-inline-end: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .section-gap-x {
    -webkit-margin-start: 12px;
    margin-inline-start: 12px;
    -webkit-margin-end: 12px;
    margin-inline-end: 12px;
  }
}

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

.mt-10 {
  margin-top: 10px;
}

.rg-30 {
  row-gap: 30px;
}

.rg-40 {
  row-gap: 40px;
}

.rg-50 {
  row-gap: 50px;
}

.rg-60 {
  row-gap: 60px;
}

.rg-70 {
  row-gap: 70px;
}

.rg-80 {
  row-gap: 80px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.gap-15 {
  --bs-gutter-x: 15px;
  padding: 0 15px;
}
.gap-15 .row {
  --bs-gutter-x: 15px;
  --bs-gutter-y: 15px;
}

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

.top-space-15 {
  padding-top: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .top-space-15 {
    padding-top: 12px;
  }
}

.top-space-65 {
  padding-top: 65px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .top-space-65 {
    padding-top: 94px;
  }
}

.gap-30 {
  --bs-gutter-x: 30px;
}
.gap-30 .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.gap-0 {
  --bs-gutter-x: 0;
}
.gap-0 .row {
  --bs-gutter-x: 0;
}

.wow {
  visibility: hidden;
}

.container-end-align {
  -webkit-margin-start: calc((100% - 1320px) / 2);
  margin-inline-start: calc((100% - 1320px) / 2);
  width: auto;
  min-width: auto;
  max-width: inherit;
  -webkit-padding-end: 0;
  padding-inline-end: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-end-align {
    -webkit-margin-start: calc((100% - 1140px) / 2);
    margin-inline-start: calc((100% - 1140px) / 2);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-end-align {
    -webkit-margin-start: calc((100% - 960px) / 2);
    margin-inline-start: calc((100% - 960px) / 2);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-end-align {
    -webkit-margin-start: calc((100% - 720px) / 2);
    margin-inline-start: calc((100% - 720px) / 2);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container-end-align {
    -webkit-margin-start: calc((100% - 540px) / 2);
    margin-inline-start: calc((100% - 540px) / 2);
  }
}
@media (max-width: 575px) {
  .container-end-align {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-padding-end: 12px;
    padding-inline-end: 12px;
  }
}

.vbox-grab .vbox-child img {
  border-radius: 12px;
}

#smooth-content {
  padding-bottom: 15px;
  will-change: transform;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  #smooth-content {
    padding-bottom: 0;
  }
}

.tj-sticky-panel-2,
.slidebar-stickiy {
  will-change: transform;
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  [data-speed=".8"] {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }
}

/**
  Buttons CSS
*/
.tj-lang-btn{background-color: var(--tj-color-theme-primary);font-weight: var(--tj-fw-sbold);text-align: center;border-radius: 50px;line-height: 1;z-index: 2;overflow: hidden;padding: 13px 30px;gap: 10px;color: var(--tj-color-common-white);}
.tj-primary-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  background-color: var(--tj-color-theme-primary);
  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;
  white-space: nowrap;
}
.tj-primary-btn .btn-text {
  color: var(--tj-color-common-white);
	padding:10px;
  overflow: hidden;
}
.tj-primary-btn .btn-text span ,tj-lang-btn .btn-text span{
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.tj-primary-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  width: 42px;
  height: 42px;
  overflow: hidden;
  background-color: #f09128;
  border-radius: 50%;
}
[dir="rtl"] .tj-primary-btn {

  padding: 5px 25px 5px 5px;

}
.tj-primary-btn .btn-icon i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
[dir="rtl"] .tj-primary-btn .btn-icon i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 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.transparent-btn {
  background-color: transparent;
  border: 1px solid var(--tj-color-border-1);
}
.tj-primary-btn.transparent-btn .btn-text {
  color: var(--tj-color-heading-primary);
}
.tj-primary-btn.transparent-btn:hover {
  border-color: var(--tj-color-theme-dark);
}
.tj-primary-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);

}

tj-lang-btn:hover{
		color:var(--tj-color-common-white) !important;
}
.tj-primary-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
[dir="rtl"] .tj-primary-btn:hover .btn-icon i {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.text-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  text-shadow: 0 30px 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.text-btn .btn-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  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);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.text-btn:hover .btn-text span {
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
}
.text-btn:hover .btn-icon {
  background-color: var(--tj-color-theme-primary);
}
.text-btn:hover .btn-icon i {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header-area {
  background-color: var(--tj-color-common-white);
  border-end-start-radius: 12px;
  border-end-end-radius: 12px;
  position: relative;
  z-index: 99;
}
.header-area.header-2.header-absolute {
  position: absolute;
  top: 30px;
  inset-inline-start: 15px;
  width: calc(100% - 60px);
  z-index: 999;
  background-color: transparent;
  border-radius: 0;
}
.header-area.header-2.header-absolute > .container-fluid {
  --bs-gutter-x: 0;
}
.header-area.header-2.header-absolute > .container-fluid > .row {
  --bs-gutter-x: 0;
}
.header-area.header-2.header-absolute .header-wrapper {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0 20px;
  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: 24px;
    inset-inline-start: 12px;
    width: calc(100% - 48px);
  }
}
.header-area.header-2.header-sticky .header-wrapper {
  padding: 0 8px;
}

.header-area.header-duplicate {
  display: none;
  opacity: 0;
  visibility: hidden;
}
.header-area.sticky {
  position: fixed;
  width: calc(100% - 30px);
  top: 0;
  inset-inline-start: 0;
  -webkit-animation: sticky 0.9s;
  animation: sticky 0.9s;
  border-bottom: none;
  z-index: 1002;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
  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%;
  }
  .header-area.sticky.section-gap-x {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area.header-2.header-absolute .header-wrapper {
    padding: 0 16px;
  }
  .header-area.header-2.header-sticky .header-wrapper {
    padding: 0 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-2.header-absolute .header-wrapper {
    padding: 15px 12px;
  }
  .header-area.header-2.header-sticky .header-wrapper {
    padding: 15px 0;
  }
}

.header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  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 0;
  }
}

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

.menu-area {
  gap: 25px;
}

.mainmenu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 30px;
  -moz-column-gap: 30px;
  column-gap: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > a {
  position: relative;
  font-size: 16px;
  color: var(--tj-color-heading-primary);
  display: block;
  padding: 37px 0;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
}
.mainmenu ul > li.menu-item-has-children > a,
.mainmenu ul > li.has-dropdown > a {
  -webkit-padding-end: 20px;
  padding-inline-end: 20px;
}
.mainmenu ul > li.menu-item-has-children > a::after,
.mainmenu ul > li.has-dropdown > a::after {
  content: "\e929";
  font-family: "bexon-icons";
  color: inherit;
  font-size: 12px;
  position: absolute;
  top: 40px;
  inset-inline-end: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.mainmenu ul > li.menu-item-has-children:hover > a::after,
.mainmenu ul > li.has-dropdown:hover > a::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.mainmenu ul > li.current-menu-ancestor > a,
.mainmenu ul > li.current-menu-item > a,
.mainmenu ul > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor > a::after,
.mainmenu ul > li.current-menu-item > a::after,
.mainmenu ul > li:hover > a::after {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li.current-menu-ancestor > a::before,
.mainmenu ul > li.current-menu-item > a::before,
.mainmenu ul > li:hover > a::before {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 0 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 0 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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.header-search .search i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-search .search {
    font-size: 18px;
    width: 44px;
    height: 44px;
  }
}
.header-search .search:hover i {
  -webkit-animation: gelatine 0.6s;
  animation: gelatine 0.6s;
}
.header-search .search.search-hide {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset-inline-start: 0;
  top: 0;
}
.header-search .search_close_btn i {
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 6px;
  width: 25px;
  height: 25px;
  position: relative;
  top: 0;
  inset-inline-start: 0;
  -webkit-margin-start: 5px;
  margin-inline-start: 5px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.menu_bar span {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--tj-color-common-black);
  border-radius: 10px;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all 0.3s;
  transition: all 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 {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}

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

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Footer CSS
----------------------------------------*/
.tj-footer-section {
  background-color: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
  padding-top: 195px;
  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 {
    padding-top: 135px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-section {
    padding-top: 320px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-footer-section {
    padding-top: 270px;
    margin-bottom: 0;
    border-end-start-radius: 0;
    border-end-end-radius: 0;
  }
}

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

.award-logo-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 18px;
}
.award-logo-area .award-logo {
  max-width: 96px;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}
.social-links ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 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);
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  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: var(--tj-color-theme-primary);
  opacity: 1;
}
.social-links.style-3 ul li a:hover i {
  color: var(--tj-color-common-white);
}

.widget-nav-menu {
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
}
.widget-nav-menu ul {
  list-style: none;
}
.widget-nav-menu ul li {
  padding: 6px 0;
}
.widget-nav-menu ul li:first-child {
  padding-top: 0;
}
.widget-nav-menu ul li a {
  color: var(--tj-color-text-body);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}
.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);
  -webkit-padding-start: 5px;
  padding-inline-start: 5px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu {
    -webkit-padding-start: 20px;
    padding-inline-start: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .widget-nav-menu {
    -webkit-padding-start: 80px;
    padding-inline-start: 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 {
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}
@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 {
  -webkit-padding-start: 25px;
  padding-inline-start: 25px;
}
@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 {
    -webkit-padding-start: 70px;
    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;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}
.widget-nav-menu.footer-col-3 {
  -webkit-padding-start: 120px;
  padding-inline-start: 120px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-nav-menu.footer-col-3 {
    -webkit-padding-start: 80px;
    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;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.copyright-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 0;
}
.copyright-content-area .footer-contact ul {
  list-style: none;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 22px;
}
.copyright-content-area .footer-contact ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  color: var(--tj-color-text-body);
}
.copyright-content-area .footer-contact ul li a .icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 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;
  inset-inline-start: auto;
  inset-inline-end: 0;
  width: 0;
  height: 1px;
  background-color: var(--tj-color-text-body);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.copyright-content-area .footer-contact ul li a:hover .text::before {
  width: 100%;
  inset-inline-start: 0;
  inset-inline-end: 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;
    -ms-flex-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: 0;
}
.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: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.copyright-content-area .copyright-menu ul li {
  position: relative;
  -webkit-margin-end: 13px;
  margin-inline-end: 13px;
  -webkit-padding-end: 12px;
  padding-inline-end: 12px;
  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%;
  inset-inline-end: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.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 a:hover {
  color: var(--tj-color-common-white);
}
.copyright-content-area .copyright-menu ul li:last-child {
  -webkit-padding-end: 0;
  padding-inline-end: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}
.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-footer-section.footer-2 {
  background-color: var(--tj-color-theme-dark);
  padding-top: 0;
}
.tj-footer-section.footer-2 .footer-widget .title {
  color: var(--tj-color-common-white);
}
.tj-footer-section.footer-2 .footer-widget ul li a {
  color: var(--tj-color-text-body-2);
}
.tj-footer-section.footer-2 .footer-widget ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-footer-section.footer-2 .footer-col-1 {
  position: relative;
  height: 100%;
  align-content: center;
}
.tj-footer-section.footer-2 .footer-col-1::before {
  content: "";
  position: absolute;
  bottom: -160px;
  inset-inline-start: -50px;
  width: 350px;
  height: 300px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  -webkit-filter: blur(50px);
  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;
  }
}

.widget-contact {
  -webkit-padding-start: 15px;
  padding-inline-start: 15px;
}
.widget-contact .title {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .widget-contact {
    -webkit-padding-start: 30px;
    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;
    -webkit-padding-start: 70px;
    padding-inline-start: 70px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .widget-contact {
    margin-top: 30px;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
  }
}

.footer-contact-info {
  width: 100%;
}
.footer-contact-info .contact-item:last-child {
  margin-bottom: 0;
}
.footer-contact-info .contact-item span {
  color: var(--tj-color-text-body-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}
.footer-contact-info .contact-item span i {
  font-size: 20px;
  color: var(--tj-color-text-body-2);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.footer-contact-info .contact-item a {
  color: var(--tj-color-text-body-2);
  font-weight: var(--tj-fw-sbold);
  display: flex;
  /* margin-bottom: 3px; */
  align-items: center;
  gap: 10px;
  font-size: 16px;
  padding: 6px 0;
}

.footer-contact-info .contact-item a:hover {
  color: #f09128;
}

.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 0;
}
.tj-copyright-area-2 .copyright-text p {
  color: var(--tj-color-text-body-2);
  text-transform: capitalize;
}
.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-common-white) ;
	font-weight:bold;
}

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

/* !END: Theme Footer CSS */
/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search_popup {
  position: absolute;
  top: 101%;
  inset-inline-start: 0;
  width: 100%;
  height: auto;
  background-color: var(--tj-color-common-white);
  padding: 80px 0;
  -webkit-transform: translateY(calc(-100% - 200px));
  -ms-transform: translateY(calc(-100% - 200px));
  transform: translateY(calc(-100% - 200px));
  -webkit-transition: opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    -webkit-transform 0.3s ease-in-out;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
  z-index: 10;
  border-radius: 12px;
}
.search_popup .search_close {
  position: absolute;
  top: 36px;
  inset-inline-end: 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;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.search_popup .search_close .search_close_btn svg path {
  fill: var(--tj-color-theme-dark);
}
.search_popup .search_close .search_close_btn svg:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search_popup .search_close .search_close_btn svg:hover path {
  fill: var(--tj-color-theme-primary);
}
.search_popup.search-opened {
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.search_popup.search-opened .search_form .search_input {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.search_popup.search-opened .search_form .search_input::after {
  width: 100%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.search_popup .logo {
  max-width: 150px;
  width: 100%;
  position: absolute;
  inset-inline-start: 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-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 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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"]
  )::-moz-placeholder,
.tj_search_wrapper
  .search_form
  form
  .search_input
  .search-box
  input[type="text"]::-moz-placeholder {
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  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"]
  ):-ms-input-placeholder,
.tj_search_wrapper
  .search_form
  form
  .search_input
  .search-box
  input[type="text"]:-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  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"]
  )::-ms-input-placeholder,
.tj_search_wrapper
  .search_form
  form
  .search_input
  .search-box
  input[type="text"]::-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  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 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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"]
    )::-moz-placeholder,
  .tj_search_wrapper
    .search_form
    form
    .search_input
    .search-box
    input[type="text"]::-moz-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"]
    ):-ms-input-placeholder,
  .tj_search_wrapper
    .search_form
    form
    .search_input
    .search-box
    input[type="text"]:-ms-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"]
    )::-ms-input-placeholder,
  .tj_search_wrapper
    .search_form
    form
    .search_input
    .search-box
    input[type="text"]::-ms-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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-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;
  inset-inline-start: 0;
  top: 18px;
  height: 30px;
  -webkit-border-start: 1px solid var(--tj-color-border-1);
  border-inline-start: 1px solid var(--tj-color-border-1);
}

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

/* !END: Theme Search CSS */
/* !START: hamburger CSS */
.hamburger-area {
  position: fixed;
  inset-inline-end: -490px;
  top: 15px;
  width: 450px;
  height: calc(100% - 30px);
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -webkit-transition-duration: 1s;
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  border-radius: 12px;
}
.hamburger-area::-webkit-scrollbar {
  display: none;
}
.hamburger-area.opened {
  inset-inline-end: 15px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .hamburger-area.opened {
    inset-inline-end: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .hamburger-area {
    top: 0;
    height: 100%;
    border-start-end-radius: 0;
    border-end-end-radius: 0;
  }
}
@media (max-width: 575px) {
  .hamburger-area {
    width: 320px;
  }
}
.hamburger_bg {
  background-color: var(--tj-color-theme-dark);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: -1;
  border-start-start-radius: 12px;
  border-end-start-radius: 12px;
}
.hamburger_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  padding: 40px;
  overflow: auto;
  height: 100%;
}
.hamburger_wrapper::before {
  content: "";
  position: absolute;
  top: 3%;
  inset-inline-end: 3%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
  -webkit-filter: blur(50px);
  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 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  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: 0 40px 0 16px;
  background: var(--tj-color-common-white);
  border: none;
  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 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--tj-color-text-body);
}
.hamburger_search select::-moz-placeholder,
.hamburger_search .nice-select::-moz-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-moz-placeholder,
.hamburger_search input::-moz-placeholder {
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--tj-color-text-body);
}
.hamburger_search select:-ms-input-placeholder,
.hamburger_search .nice-select:-ms-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  ):-ms-input-placeholder,
.hamburger_search input:-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--tj-color-text-body);
}
.hamburger_search select::-ms-input-placeholder,
.hamburger_search .nice-select::-ms-input-placeholder,
.hamburger_search
  input:not([type="submit"]):not([type="radio"]):not(
    [type="checkbox"]
  )::-ms-input-placeholder,
.hamburger_search input::-ms-input-placeholder {
  -ms-transition: all 0.3s;
  transition: all 0.3s;
  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 {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: var(--tj-color-text-body);
}
.hamburger_search button {
  position: absolute;
  height: 58px;
  width: 58px;
  top: 50%;
  inset-inline-end: 0;
  font-size: 24px;
  color: var(--tj-color-theme-dark);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-border-start: 1px solid var(--tj-color-border-1);
  border-inline-start: 1px solid var(--tj-color-border-1);
}
.hamburger_menu .mean-container .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.hamburger_menu .mean-container .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.hamburger_menu .mean-nav {
  background: transparent;
  margin-top: 0;
  overflow: hidden;
}
.hamburger_menu .mean-nav > ul {
  display: block !important;
}
.hamburger_menu .mean-nav > ul > li:first-child > a {
  border-top: none;
}
.hamburger_menu .mean-nav ul li {
  position: relative;
}
.hamburger_menu .mean-nav ul li a {
  color: var(--tj-color-common-white);
  width: 100%;
  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 0;
  border-top: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.hamburger_menu .mean-nav ul li a.mean-expand {
  padding: 0;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  position: absolute;
  inset-inline-end: 0;
  top: 12px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.hamburger_menu .mean-nav ul li a.mean-expand:hover {
  color: var(--tj-color-common-white);
}
.hamburger_menu .mean-nav ul li a.mean-expand i {
  font-size: 15px;
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--tj-color-theme-primary);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.hamburger_menu .mean-nav ul li a.mean-expand.mean-clicked i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

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

.offcanvas-text {
  margin-bottom: 40px;
}
.offcanvas-text p {
  color: var(--tj-color-text-body-2);
  margin-bottom: 0;
}

.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 0 10px 0;
}
.hamburger-infos .contact-info .contact-item:first-child {
  padding-top: 0;
}

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

.menu-bar button {
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  cursor: pointer;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
}
.menu-bar button span {
  height: 3px;
  width: 35px;
  display: block;
  background: var(--tj-color-common-white);
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
}
.menu-bar button span:nth-child(2) {
  width: 40px;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
.menu-bar button span:nth-child(3) {
  width: 30px;
}
.menu-bar button span:nth-child(4) {
  position: absolute;
  top: -8px;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 3px;
  height: 0;
  -webkit-transition: height 400ms;
  transition: height 400ms;
}
.menu-bar.style-2 button span {
  background: var(--tj-color-heading-primary);
}
.menu-bar.menu-bar-toggeled button {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 400ms;
  transition-delay: 400ms;
}
.menu-bar.menu-bar-toggeled button span:nth-child(1) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(3) {
  width: 0;
}
.menu-bar.menu-bar-toggeled button span:nth-child(4) {
  height: 40px;
  -webkit-transition: height 200ms ease;
  transition: height 200ms ease;
  -webkit-transition-delay: 200ms;
  transition-delay: 200ms;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .menu-bar {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}

.body-overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  inset-inline-start: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  backdrop-filter: blur(10px);
}
.body-overlay.opened {
  opacity: 1;
  visibility: visible;
}

/* !END: hamburger CSS */
/**----------------------------------------
START: Preloader CSS
----------------------------------------*/
.tj-preloader {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  z-index: 100000000;
  color: #fdfdf9;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tj-preloader.is-loading .tj-preloader-ball-inner,
.tj-preloader.is-loading .tj-preloader-ball-shadow {
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

.tj-preloader.is-loaded {
  pointer-events: none;
}

.tj-preloader .tj-preloader-overlay {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  z-index: 99999999;
  opacity: 1;
  -webkit-animation: tj-fade-out 2s forwards;
  animation: tj-fade-out 2s forwards;
}

@-webkit-keyframes tj-fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes tj-fade-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.tj-preloader .tj-preloader-inner {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.tj-preloader .tj-preloader-ball-wrap {
  gap: 10px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  inset-inline-start: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

@media only screen and (min-width: 1025px) {
  .tj-preloader .tj-preloader-ball-wrap {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}
.tj-preloader .tj-preloader-ball-inner-wrap {
  position: absolute;
  width: 10px;
  height: 100%;
  top: 50%;
  inset-inline-start: -16px;
  -webkit-transform: translate(-100%, -50%);
  -ms-transform: translate(-100%, -50%);
  transform: translate(-100%, -50%);
  z-index: 10000;
}
@media only screen and (min-width: 1025px) {
  .tj-preloader .tj-preloader-ball-inner-wrap {
    inset-inline-start: -30px;
  }
}

.tj-preloader .tj-preloader-ball-shadow {
  position: absolute;
  width: 16px;
  height: 4px;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #00ffc2;
  bottom: 0;
  border-radius: 50%;
  -webkit-filter: blur(12px);
  filter: blur(12px);
  -webkit-box-shadow: 0 4px 20px 0 #20e7b7;
  box-shadow: 0 4px 20px 0 #20e7b7;
  -webkit-transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  -webkit-animation: tj-shadow-blur 1s linear infinite;
  animation: tj-shadow-blur 1s linear infinite;
}

.tj-preloader .tj-preloader-ball-inner {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #00ffc2;
  -webkit-animation: tj-bounce-anim 1s linear infinite;
  animation: tj-bounce-anim 1s linear infinite;
  -webkit-box-shadow: 0 0 12px 0 #fdfdf9;
  box-shadow: 0 0 12px 0 #fdfdf9;
  -webkit-transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  transition: 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.tj-preloader.is-loaded .tj-preloader-ball-shadow {
  display: none;
}

.tj-preloader.is-loaded .tj-preloader-ball-inner {
  -webkit-animation: fadeLeftToRight 0.7s linear;
  animation: fadeLeftToRight 0.7s linear;
}

.tj-preloader .tj-preloader-ball {
  position: absolute;
  width: 14px;
  height: 14px;
  bottom: 50%;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  border-radius: 50%;
  background-color: rgba(0, 255, 194, 0.1);
  -webkit-box-shadow: 0 0 20px 0 #20e7b7;
  box-shadow: 0 0 20px 0 #20e7b7;
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

.tj-preloader .tj-preloader-text {
  font-size: 20px;
  position: relative;
  letter-spacing: 0;
  -webkit-transform: translateY(-0.03em);
  -ms-transform: translateY(-0.03em);
  transform: translateY(-0.03em);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: var(--tj-fw-sbold);
	direction:ltr;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-preloader .tj-preloader-text {
    font-size: 16px;
  }
}

.tj-preloader.is-loaded .tj-preloader-text {
  opacity: 0;
  visibility: hidden;
}

#tj-weave-anim span {
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: inline-block;
  -webkit-animation: tj-weave-anim 1.15s ease infinite;
  animation: tj-weave-anim 1.15s ease infinite;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
#tj-weave-anim span:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
#tj-weave-anim span:nth-child(2) {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s;
}
#tj-weave-anim span:nth-child(3) {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
}
#tj-weave-anim span:nth-child(4) {
  -webkit-animation-delay: 0.15s;
  animation-delay: 0.15s;
}
#tj-weave-anim span:nth-child(5) {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
#tj-weave-anim span:nth-child(6) {
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}
#tj-weave-anim span:nth-child(7) {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}
#tj-weave-anim span:nth-child(8) {
  -webkit-animation-delay: 0.35s;
  animation-delay: 0.35s;
}
#tj-weave-anim span:nth-child(9) {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
#tj-weave-anim span:nth-child(10) {
  -webkit-animation-delay: 0.45s;
  animation-delay: 0.45s;
}
#tj-weave-anim span:nth-child(11) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
#tj-weave-anim span:nth-child(12) {
  -webkit-animation-delay: 0.55s;
  animation-delay: 0.55s;
}
#tj-weave-anim span:nth-child(13) {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
#tj-weave-anim span:nth-child(14) {
  -webkit-animation-delay: 0.65s;
  animation-delay: 0.65s;
}
#tj-weave-anim span:nth-child(15) {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
#tj-weave-anim span:nth-child(16) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s;
}
#tj-weave-anim span:nth-child(17) {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
#tj-weave-anim span:nth-child(18) {
  -webkit-animation-delay: 0.85s;
  animation-delay: 0.85s;
}
#tj-weave-anim span:nth-child(19) {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
#tj-weave-anim span:nth-child(20) {
  -webkit-animation-delay: 0.95s;
  animation-delay: 0.95s;
}
#tj-weave-anim span:nth-child(21) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
#tj-weave-anim span:nth-child(22) {
  -webkit-animation-delay: 1.05s;
  animation-delay: 1.05s;
}
#tj-weave-anim span:nth-child(23) {
  -webkit-animation-delay: 1.15s;
  animation-delay: 1.15s;
}

@-webkit-keyframes tj-shadow-blur {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(-50%) scale(0.6);
    transform: translate(-50%) scale(0.6);
    opacity: 0.4;
  }
  30% {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: translate(-50%, -0.5rem) scale(1);
    transform: translate(-50%, -0.5rem) scale(1);
    opacity: 1;
  }
  to {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(-50%) scale(0.6);
    transform: translate(-50%) scale(0.6);
    opacity: 0.4;
  }
}

@keyframes tj-shadow-blur {
  0% {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(-50%) scale(0.6);
    transform: translate(-50%) scale(0.6);
    opacity: 0.4;
  }
  30% {
    -webkit-filter: blur(2px);
    filter: blur(2px);
    -webkit-transform: translate(-50%, -0.5rem) scale(1);
    transform: translate(-50%, -0.5rem) scale(1);
    opacity: 1;
  }
  to {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(-50%) scale(0.6);
    transform: translate(-50%) scale(0.6);
    opacity: 0.4;
  }
}
@-webkit-keyframes fadeLeftToRight {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(0) scale(1);
    transform: translate(0) scale(1);
    opacity: 1;
  }
  30% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(-3000%, 0) scale(1);
    transform: translate(-3000%, 0) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(-2000%, 0) scale(1);
    transform: translate(-2000%, 0) scale(1);
    opacity: 1;
  }
  60% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(0%, 0) scale(1);
    transform: translate(0%, 0) scale(1);
    opacity: 1;
  }
  to {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(1000%, 0) scale(7);
    transform: translate(1000%, 0) scale(7);
    opacity: 0.4;
  }
}
@keyframes fadeLeftToRight {
  0% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(0) scale(1);
    transform: translate(0) scale(1);
    opacity: 1;
  }
  30% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(-3000%, 0) scale(1);
    transform: translate(-3000%, 0) scale(1);
    opacity: 1;
  }
  40% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(-2000%, 0) scale(1);
    transform: translate(-2000%, 0) scale(1);
    opacity: 1;
  }
  60% {
    -webkit-filter: blur(0);
    filter: blur(0);
    -webkit-transform: translate(0%, 0) scale(1);
    transform: translate(0%, 0) scale(1);
    opacity: 1;
  }
  to {
    -webkit-filter: blur(12px);
    filter: blur(12px);
    -webkit-transform: translate(1000%, 0) scale(7);
    transform: translate(1000%, 0) scale(7);
    opacity: 0.4;
  }
}
@-webkit-keyframes tj-bounce-anim {
  0% {
    -webkit-transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
  }
  3% {
    -webkit-transform: translateY(calc(-50% - 0.95rem)) scale(1.1, 1.05);
    transform: translateY(calc(-50% - 0.95rem)) scale(1.1, 1.05);
  }
  5% {
    -webkit-transform: translateY(calc(-50% - 0.9rem)) scale(1.2, 1.1);
    transform: translateY(calc(-50% - 0.9rem)) scale(1.2, 1.1);
  }
  8% {
    -webkit-transform: translateY(calc(-50% - 0.8rem)) scale(0.98, 1.15);
    transform: translateY(calc(-50% - 0.8rem)) scale(0.98, 1.15);
  }
  12% {
    -webkit-transform: translateY(calc(-50% - 0.7rem)) scale(0.95, 1.2);
    transform: translateY(calc(-50% - 0.7rem)) scale(0.95, 1.2);
  }
  16% {
    -webkit-transform: translateY(calc(-50% - 0.5rem)) scale(0.92, 1.25);
    transform: translateY(calc(-50% - 0.5rem)) scale(0.92, 1.25);
  }
  20% {
    -webkit-transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
  }
  24% {
    -webkit-transform: translateY(calc(-50% + 0.4rem)) scale(0.9, 1.7);
    transform: translateY(calc(-50% + 0.4rem)) scale(0.9, 1.7);
  }
  26% {
    -webkit-transform: translateY(calc(-50% + 0.8rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% + 0.8rem)) scale(0.9, 1.4);
  }
  28% {
    -webkit-transform: translateY(calc(-50% + 0.95rem)) scale(1.2, 0.7);
    transform: translateY(calc(-50% + 0.95rem)) scale(1.2, 0.7);
  }
  30% {
    -webkit-transform: translateY(calc(-50% + 1rem)) scale(1.5, 0.3);
    transform: translateY(calc(-50% + 1rem)) scale(1.5, 0.3);
  }
  32% {
    -webkit-transform: translateY(calc(-50% + 0.8rem)) scale(1.4, 0.4);
    transform: translateY(calc(-50% + 0.8rem)) scale(1.4, 0.4);
  }
  36% {
    -webkit-transform: translateY(calc(-50% + 0.5rem)) scale(1.2, 0.8);
    transform: translateY(calc(-50% + 0.5rem)) scale(1.2, 0.8);
  }
  42% {
    -webkit-transform: translateY(calc(-50% + 0.2rem)) scaleY(1.2);
    transform: translateY(calc(-50% + 0.2rem)) scaleY(1.2);
  }
  48% {
    -webkit-transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
  }
  54% {
    -webkit-transform: translateY(calc(-50% - 0.3rem)) scale(0.92, 1.3);
    transform: translateY(calc(-50% - 0.3rem)) scale(0.92, 1.3);
  }
  62% {
    -webkit-transform: translateY(calc(-50% - 0.5rem)) scale(0.95, 1.2);
    transform: translateY(calc(-50% - 0.5rem)) scale(0.95, 1.2);
  }
  68% {
    -webkit-transform: translateY(calc(-50% - 0.6rem)) scale(0.97, 1.15);
    transform: translateY(calc(-50% - 0.6rem)) scale(0.97, 1.15);
  }
  75% {
    -webkit-transform: translateY(calc(-50% - 0.7rem)) scale(0.98, 1.1);
    transform: translateY(calc(-50% - 0.7rem)) scale(0.98, 1.1);
  }
  80% {
    -webkit-transform: translateY(calc(-50% - 0.8rem)) scale(0.99, 1.08);
    transform: translateY(calc(-50% - 0.8rem)) scale(0.99, 1.08);
  }
  85% {
    -webkit-transform: translateY(calc(-50% - 0.9rem)) scaleY(1.05);
    transform: translateY(calc(-50% - 0.9rem)) scaleY(1.05);
  }
  90% {
    -webkit-transform: translateY(calc(-50% - 0.95rem)) scale(1.2, 1.03);
    transform: translateY(calc(-50% - 0.95rem)) scale(1.2, 1.03);
  }
  95% {
    -webkit-transform: translateY(calc(-50% - 0.98rem)) scale(1.1, 1.01);
    transform: translateY(calc(-50% - 0.98rem)) scale(1.1, 1.01);
  }
  to {
    -webkit-transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
  }
}
@keyframes tj-bounce-anim {
  0% {
    -webkit-transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
  }
  3% {
    -webkit-transform: translateY(calc(-50% - 0.95rem)) scale(1.1, 1.05);
    transform: translateY(calc(-50% - 0.95rem)) scale(1.1, 1.05);
  }
  5% {
    -webkit-transform: translateY(calc(-50% - 0.9rem)) scale(1.2, 1.1);
    transform: translateY(calc(-50% - 0.9rem)) scale(1.2, 1.1);
  }
  8% {
    -webkit-transform: translateY(calc(-50% - 0.8rem)) scale(0.98, 1.15);
    transform: translateY(calc(-50% - 0.8rem)) scale(0.98, 1.15);
  }
  12% {
    -webkit-transform: translateY(calc(-50% - 0.7rem)) scale(0.95, 1.2);
    transform: translateY(calc(-50% - 0.7rem)) scale(0.95, 1.2);
  }
  16% {
    -webkit-transform: translateY(calc(-50% - 0.5rem)) scale(0.92, 1.25);
    transform: translateY(calc(-50% - 0.5rem)) scale(0.92, 1.25);
  }
  20% {
    -webkit-transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
  }
  24% {
    -webkit-transform: translateY(calc(-50% + 0.4rem)) scale(0.9, 1.7);
    transform: translateY(calc(-50% + 0.4rem)) scale(0.9, 1.7);
  }
  26% {
    -webkit-transform: translateY(calc(-50% + 0.8rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% + 0.8rem)) scale(0.9, 1.4);
  }
  28% {
    -webkit-transform: translateY(calc(-50% + 0.95rem)) scale(1.2, 0.7);
    transform: translateY(calc(-50% + 0.95rem)) scale(1.2, 0.7);
  }
  30% {
    -webkit-transform: translateY(calc(-50% + 1rem)) scale(1.5, 0.3);
    transform: translateY(calc(-50% + 1rem)) scale(1.5, 0.3);
  }
  32% {
    -webkit-transform: translateY(calc(-50% + 0.8rem)) scale(1.4, 0.4);
    transform: translateY(calc(-50% + 0.8rem)) scale(1.4, 0.4);
  }
  36% {
    -webkit-transform: translateY(calc(-50% + 0.5rem)) scale(1.2, 0.8);
    transform: translateY(calc(-50% + 0.5rem)) scale(1.2, 0.8);
  }
  42% {
    -webkit-transform: translateY(calc(-50% + 0.2rem)) scaleY(1.2);
    transform: translateY(calc(-50% + 0.2rem)) scaleY(1.2);
  }
  48% {
    -webkit-transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
    transform: translateY(calc(-50% - 0.2rem)) scale(0.9, 1.4);
  }
  54% {
    -webkit-transform: translateY(calc(-50% - 0.3rem)) scale(0.92, 1.3);
    transform: translateY(calc(-50% - 0.3rem)) scale(0.92, 1.3);
  }
  62% {
    -webkit-transform: translateY(calc(-50% - 0.5rem)) scale(0.95, 1.2);
    transform: translateY(calc(-50% - 0.5rem)) scale(0.95, 1.2);
  }
  68% {
    -webkit-transform: translateY(calc(-50% - 0.6rem)) scale(0.97, 1.15);
    transform: translateY(calc(-50% - 0.6rem)) scale(0.97, 1.15);
  }
  75% {
    -webkit-transform: translateY(calc(-50% - 0.7rem)) scale(0.98, 1.1);
    transform: translateY(calc(-50% - 0.7rem)) scale(0.98, 1.1);
  }
  80% {
    -webkit-transform: translateY(calc(-50% - 0.8rem)) scale(0.99, 1.08);
    transform: translateY(calc(-50% - 0.8rem)) scale(0.99, 1.08);
  }
  85% {
    -webkit-transform: translateY(calc(-50% - 0.9rem)) scaleY(1.05);
    transform: translateY(calc(-50% - 0.9rem)) scaleY(1.05);
  }
  90% {
    -webkit-transform: translateY(calc(-50% - 0.95rem)) scale(1.2, 1.03);
    transform: translateY(calc(-50% - 0.95rem)) scale(1.2, 1.03);
  }
  95% {
    -webkit-transform: translateY(calc(-50% - 0.98rem)) scale(1.1, 1.01);
    transform: translateY(calc(-50% - 0.98rem)) scale(1.1, 1.01);
  }
  to {
    -webkit-transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
    transform: translateY(calc(-50% - 1rem)) scaleX(1.4);
  }
}
@-webkit-keyframes tj-weave-anim {
  0% {
    -webkit-transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
  }
  12% {
    -webkit-transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
    transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
  }
  24% {
    -webkit-transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
  }
  36% {
    -webkit-transform: translate3D(0, 0, 0) scale(1);
    transform: translate3D(0, 0, 0) scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes tj-weave-anim {
  0% {
    -webkit-transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
  }
  12% {
    -webkit-transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
    transform: translate3D(2px, -2px, 2px) scale(1.16) rotateY(6deg);
  }
  24% {
    -webkit-transform: translate3D(0, 0, 0) scale(1) rotateY(0);
    transform: translate3D(0, 0, 0) scale(1) rotateY(0);
  }
  36% {
    -webkit-transform: translate3D(0, 0, 0) scale(1);
    transform: translate3D(0, 0, 0) scale(1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* !END: Preloader CSS */
/**----------------------------------------
START: Error 404 CSS
----------------------------------------*/
.tj-error-section {
  padding: 150px 0 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 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-error-section {
    padding: 70px 0;
  }
}
.tj-error-content {
  position: relative;
  max-width: 900px;
  width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  z-index: 1;
}
.tj-error-content .error-img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 800px;
  margin-bottom: 45px;
}
@media (max-width: 575px) {
  .tj-error-content .error-img {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}
.tj-error-content .error-title {
  font-size: var(--tj-fs-h1);
  margin: 0;
}
@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 0;
}
.tj-error-content .error-btn {
  margin-top: 35px;
}
@media (max-width: 575px) {
  .tj-error-content .error-btn {
    margin-top: 25px;
  }
}

/* !END: Error 404 CSS */
/**----------------------------------------
START: Back to top CSS
----------------------------------------*/
#tj-back-to-top {
  height: 60px;
  width: 60px;
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  inset-inline-end: 40px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  #tj-back-to-top {
    height: 50px;
    width: 50px;
  }
}
#tj-back-to-top.active {
  bottom: 40px;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--tj-color-theme-primary);
}
#tj-back-to-top .return {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#tj-back-to-top-percentage {
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-dark);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: var(--tj-fw-sbold);
  -webkit-box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 5px 15px 0px;
}
#tj-back-to-top-percentage i {
  font-size: var(--tj-fs-h5);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #tj-back-to-top {
    inset-inline-end: 30px;
  }
  #tj-back-to-top.active {
    bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  #tj-back-to-top {
    bottom: 20px;
    inset-inline-end: 20px;
  }
  #tj-back-to-top.active {
    bottom: 20px;
  }
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* !END: Back to top CSS */

/**----------------------------------------
START: Animation  CSS
----------------------------------------*/
.tj-anim-move-var-big {
  -webkit-animation-name: moveVarBig;
  animation-name: moveVarBig;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes moveVarBig {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
}

@keyframes moveVarBig {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
}
.tj-anim-move-var-big-reverse {
  -webkit-animation-name: moveVarBigReverse;
  animation-name: moveVarBigReverse;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes moveVarBigReverse {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes moveVarBigReverse {
  0% {
    -webkit-transform: translateY(150px);
    transform: translateY(150px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.tj-zoom-in-out-anim {
  -webkit-animation-name: zoomInOutAnim;
  animation-name: zoomInOutAnim;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes zoomInOutAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoomInOutAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/* !END: Animation CSS */

/**----------------------------------------
START: Heading CSS
----------------------------------------*/
.sec-heading {
  -webkit-margin-start: auto;
  margin-inline-start: auto;
  -webkit-margin-end: auto;
  margin-inline-end: auto;
  width: 100%;
  margin-bottom: 52px;
}
.sec-heading-centered {
  max-width: 550px;
  text-align: center;
}
.sec-heading .sec-title {
  margin-bottom: 0;
}
.sec-heading .sec-title span {
  color: var(--tj-color-theme-primary);
}
.sec-heading .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: 0;
  padding: 7px 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) {
  .sec-heading {
    margin-bottom: 35px;
  }
}

.heading-wrap-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 52px;
}
.heading-wrap-content .sec-heading {
  max-width: 500px;
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
  margin-bottom: 0;
}
.heading-wrap-content .desc {
  max-width: 360px;
  margin-bottom: 0;
}
@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: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .heading-wrap-content {
    margin-bottom: 35px;
  }
}

.sec-heading-wrap .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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;
  }
}
.sec-heading-wrap.style-3 .sub-title {
  color: var(--tj-color-theme-primary);
  padding: 0;
  border: 0;
}

.content-wrap .sec-heading {
  max-width: 550px;
  margin: 0 0 20px 0;
}
.content-wrap .desc {
  margin-bottom: 0;
}
.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 {
  overflow: hidden;
}

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

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

/* !END: Heading CSS */
/**----------------------------------------
START: Client CSS
----------------------------------------*/
.tj-client-section {
  position: relative;
}
.tj-client-section .client-container {
  padding: 0;
  overflow: hidden;
}

.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-content {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px dashed var(--tj-color-border-1);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -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: 0;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .client-content .sec-title {
    font-size: 15px;
  }
}
.client-content span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: 0 5px;
}
.client-content .client-text {
  color: var(--tj-color-text-body-3);
  position: relative;
}
.client-content .client-text::after {
  content: "";
  position: absolute;
  bottom: 3px;
  inset-inline-start: 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: 0 auto 60px;
  height: auto;
  border-radius: 40px;
  position: unset;
  background: transparent;
  -webkit-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
  padding: 0 15px 4px;
}
@media (max-width: 575px) {
  .client-content.style-2 {
    padding: 4px 15px 4px;
  }
}
.client-content.style-2 .sec-title {
  max-width: 100%;
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -0.6px;
}
.client-content.style-2 .client-numbers {
  color: var(--tj-color-theme-primary);
  background: transparent;
  padding: 0;
  border-radius: 0;
}
.client-content.style-2 .client-text::after {
  display: none;
}
@media (max-width: 575px) {
  .client-content.style-2 {
    width: calc(100% - 30px);
    margin: 0 auto 40px;
  }
}

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

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


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


.client-slider-1::after {
  content: "";
  position: absolute;
  width: 448px;
  height: 100%;
  top: 0;
  inset-inline-end: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    270deg,
    rgb(233, 237, 237) 0%,
    rgba(233, 237, 237, 0) 100%
  );
}


[dir="rtl"] .client-slider-1::before {
  background: linear-gradient(
    270deg,
    rgb(233, 237, 237) 0%,
    rgba(233, 237, 237, 0) 100%
  ) !important;
}

[dir="rtl"] .client-slider-1::after {
  background: linear-gradient(
    90deg,
    rgb(233, 237, 237) 0%,
    rgba(233, 237, 237, 0) 100%
  ) !important;
}



@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 {
  inset-inline-start: auto;
  inset-inline-end: 0;
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgb(233, 237, 237)),
    to(rgba(233, 237, 237, 0))
  ) !important;
  background-image: linear-gradient(
    -90deg,
    rgb(233, 237, 237) 0%,
    rgba(233, 237, 237, 0) 100%
  ) !important;
}

.client-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-padding-end: 30px;
  padding-inline-end: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .client-item {
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
  }
}

.client-logo {
  width: 284px;
  height: 120px;
  background-color: var(--tj-color-common-white);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  border-radius: 8px;
}
.client-logo img {
  object-fit: contain;
  padding: 10px;
  height: 120px;
}
@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;
    padding: 20px;
  }
}

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

/* !END: Client CSS */
/**----------------------------------------
START: About CSS
----------------------------------------*/
.about-img-area {
  position: relative;
  -webkit-margin-end: -8px;
  margin-inline-end: -8px;
}
.about-img-area .about-img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 12px;
}
.about-img-area .about-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  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;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}
.about-img-area.style-2 {
  max-width: 591px;
  -webkit-margin-end: auto;
  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: 0 0 15px 15px;
  border-start-end-radius: 0;
  border-end-start-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: 0;
  inset-inline-start: 0;
  max-width: 241px;
  width: 100%;
  padding: 15px 15px 0 0;
  border-start-end-radius: 12px;
}
.box-area::after,
.box-area::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  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>');
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.box-area::after {
  inset-inline-start: auto;
  top: auto;
  inset-inline-end: -13px;
  bottom: 0;
}

.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: justify;
  -ms-flex-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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}
.about-bottom-area .client-review-cont {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.about-bottom-area .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.video-img {
  max-width: 224px;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.video-img::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--tj-color-theme-dark);
  opacity: 0.25;
}
.video-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  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%;
  inset-inline-start: 50%;
  z-index: 5;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}
.video-btn span {
  font-size: 15px;
  -webkit-margin-start: 2px;
  margin-inline-start: 2px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.video-btn:hover {
  color: var(--tj-color-common-white);
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  -ms-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.1);
}

.about-content-area-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 85px;
}
.about-content-area-2 .about-content {
  max-width: 100%;
  -webkit-margin-start: auto;
  margin-inline-start: 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 {
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .about-content-area-2 .about-content {
    width: 100%;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
  }
}
.about-content-area-2 .sec-heading {
  margin-bottom: 27px;
}
.about-content-area-2 .sec-heading ul {
  padding-inline-start: 20px;
}
.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 {
  -webkit-transform: translate(-50%, -50%) scale(0.9);
  -ms-transform: translate(-50%, -50%) scale(0.9);
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.customers-box.style-2 .customers-bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  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%;
  inset-inline-end: 120px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  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;
  -ms-flex-align: start;
  align-items: start;
  text-align: start;
}
.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 0 10px;
}
[dir="rtl"] .countup-item.style-2 .inline-content {
  color: var(--tj-color-heading-primary);
  margin: 11px 0 10px;
	direction:ltr;
}
.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
}
.countup-item.style-2 .steps {
  position: absolute;
  top: 28px;
  inset-inline-end: 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 {
    inset-inline-end: 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;
  -ms-flex: 1;
  flex: 1;
  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 {
    -ms-flex-preferred-size: 100%;
    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;
}

/* !END: About CSS */
/**----------------------------------------
START: Services CSS
----------------------------------------*/
.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 {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}
.tj-service-section .sec-heading.style-2 .sub-title {
  color: #f09128;
  background-color: var(--tj-color-theme-dark-2);
}
.tj-service-section.service-2 {
  overflow-x: hidden;
}
.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: 0;
  inset-inline-start: 0;
  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;
  inset-inline-start: inherit;
  bottom: 0;
  inset-inline-end: 0;
}

.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: 0;
}
.service-item .service-icon {
  font-size: 70px;
  width: 250px;
  height: 250px;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  line-height: 1;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media(max-width:1400px){
	.service-item .service-icon {
  width: 220px !important;
  height: 220px !important;

  border-radius: 50%;

}
}
@media(max-width:1200px){
	.service-item .service-icon {
  width: 200px !important;
  height: 200px !important;

  border-radius: 50%;

}
}

.service-item .service-icon img {
  height:100%;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.service-item .service-icon i {
  color: var(--tj-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

.service-item .title {
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 15px;
  -webkit-transition: none;
  transition: none;
}
.service-item .title a:hover {
  color: var(--tj-color-theme-primary);
}
.service-item .desc {
  margin-bottom: 0;
}
.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: 0;
  padding: 0;
  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: 0;
  inset-inline-start: 0;
  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%;
  inset-inline-start: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 2;
  -webkit-filter: blur(90px);
  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%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 12px;
}
.service-item.style-1 .service-icon {
  position: absolute;
  top: 35px;
  inset-inline-start: 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%;
  inset-inline-start: 0;
  bottom: 0;
  padding: 40px 30px 20px;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: all 0.2s linear;
  transition: all 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: 0;
  -webkit-transition: none;
  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;
  inset-inline-start: auto;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: none;
  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 {
    inset-inline-start: 20px;
  }
}
@media (max-width: 575px) {
  .service-item.style-1 .text-btn {
    inset-inline-start: 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 {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  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;
  -webkit-transition: all 0.2s linear;
  transition: all 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-wrapper {
  margin-bottom: 30px;
}
.service-item-wrapper:last-child {
  margin-bottom: 0;
}
.service-item.style-2 {
  background-color: transparent;
  border: 1px dashed var(--tj-color-border-2);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 25px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  align-items: center;
}
.service-item.style-2 .service-content {
  width: 63%;
	color:white;
}
.service-item.style-2 .title-area {
  width: 33%;
}
@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 {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-item.style-2 .title {
  color: var(--tj-color-common-white);
}
@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 {
  -webkit-transform: rotateY(360deg);
  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;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 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 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  margin-bottom: 7px;
}
.list-items li:last-child {
  margin-bottom: 0;
}
.list-items li i {
  font-size: 12px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  margin-top: 6px;
}

.service-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.service-content-wrap .service-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: wrap;
  -ms-flex: wrap;
  flex: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 400px;
  width: 100%;
  gap: 20px;
}
.service-content-wrap .service-title .service-icon {
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 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 {
  -webkit-transition: none;
  transition: none;
  margin-bottom: 0;
}
.service-content-wrap .service-title .title a:hover {
  color: var(--tj-color-common-white);
}
.service-content-wrap .service-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.service-content-wrap .service-content .desc {
  max-width: 360px;
  width: 100%;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .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;
    -webkit-padding-start: 90px;
    padding-inline-start: 90px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .service-content-wrap .service-content {
    margin-top: 20px;
    -webkit-padding-start: 80px;
    padding-inline-start: 80px;
  }
}

.service-reveal-bg {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  width: 291px;
  height: 303px;
  opacity: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transform: translate(-50%, -50%) scale(0.7);
  -ms-transform: translate(-50%, -50%) scale(0.7);
  transform: translate(-50%, -50%) scale(0.7);
  -webkit-transition: opacity 0.6s,
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.6s,
    -webkit-transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.6s, transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  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;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(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,
.bg-shape-4 {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  max-width: 915px;
  z-index: -1;
}

.bg-shape-4 {
  bottom: auto;
  inset-inline-start: auto;
  top: 0;
  inset-inline-end: 0;
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1);
}

/* !END: Services CSS */
/**----------------------------------------
START: Theme Marquee CSS
----------------------------------------*/
.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 {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.marquee-item {
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-padding-end: 30px;
  padding-inline-end: 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: 0;
}
@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;
    -webkit-padding-end: 25px;
    padding-inline-end: 25px;
  }
}
@media (max-width: 575px) {
  .marquee-item {
    gap: 20px;
    -webkit-padding-end: 20px;
    padding-inline-end: 20px;
  }
}

/* !END: Theme Marquee CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.tj-project-section-2 {
  overflow: hidden;
}
.tj-project-section-2 .container-fluid,
.tj-project-section-2 .project-wrapper {
  padding: 0;
}
.tj-project-section-2 .sec-heading {
  max-width: 550px;
}

.project-wrapper {
  padding: 0 15px;
}
@media (max-width: 575px) {
  .project-wrapper {
    padding: 0;
  }
}

.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;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.project-item .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.project-item .project-img::before {
  content: "";
  background: var(--tj-color-theme-dark);
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  inset-inline-start: 0;
  opacity: 0.16;
  pointer-events: none;
  z-index: 2;
}
.project-item .project-content {
  padding: 25px 20px 25px 30px;
}
.project-item .project-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 18px;
}
.project-item .title {
  max-width: 245px;
  width: 100%;
  font-weight: var(--tj-fw-sbold);
  margin-bottom: 0;
}
.project-item .title a:hover {
  color: #f09128;
}
@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 {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}

.categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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;
}
[dir="rtl"] .project-slider {
  direction: rtl !important;
}
[dir="rtl"] .project-slider .project-item .project-content {
 -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}
.project-slider .project-item .project-img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset-inline-start: 0;
  top: 0;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.project-slider .project-item .project-img a {
  display: block;
  width: 100%;
  height: 100%;
}
.project-slider .project-item .project-content {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  bottom: inherit;
  width: 100%;
  padding: 0 20px;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.project-slider .project-item .project-content .categories {
  -webkit-box-pack: center;
  -ms-flex-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: 0 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: 0;
  opacity: 1;
  backdrop-filter: none;
  width: 60px;
  height: 60px;
  font-size: 52px;
  margin: 35px auto 0;
}
.project-slider .project-item .project-content .project-btn i {
  color: var(--tj-color-common-white);
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.project-slider .project-item .project-content .project-btn:hover i {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  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 {
  -webkit-transform: scale(1.1) rotate(-2deg);
  -ms-transform: scale(1.1) rotate(-2deg);
  transform: scale(1.1) rotate(-2deg);
}
.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;
  }
}
/* !END: Project CSS */

/**----------------------------------------
START: Countup CSS
----------------------------------------*/
.tj-countup-section {
  position: relative;
  z-index: 2;
  margin-bottom: -122px;
}

.countup-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background-color: var(--tj-color-theme-primary);
  border-radius: 12px;
}

.countup-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 25%;
  padding: 68px 50px 74px 50px;
  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 {
    padding: 55px 30px 60px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .countup-item {
    width: 50%;
    padding: 45px 30px 50px 30px;
  }
}
@media (max-width: 575px) {
  .countup-item {
    width: 100%;
    padding: 38px 0 45px 0;
    text-align: center;
  }
  .countup-item:last-child {
    padding-bottom: 40px;
  }
}
@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: 0;
  }
}

.inline-content {
  font-size: 74px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  letter-spacing: -1.48px;
}
.inline-content .odometer {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: bottom;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .inline-content {
    font-size: 65px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px),
  only screen and (min-width: 576px) and (max-width: 767px) {
  .inline-content {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .inline-content {
    font-size: 55px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.count-text {
  color: var(--tj-color-common-white);
  display: block;
}

.count-separator {
  position: absolute;
  width: 10px;
  height: 90px;
  top: 50%;
  inset-inline-end: -5px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.15;
}
@media (max-width: 575px) {
  .count-separator {
    top: inherit;
    bottom: 0;
    inset-inline-end: 50%;
    -webkit-transform: translate(0, 50%) rotate(90deg);
    -ms-transform: translate(0, 50%) rotate(90deg);
    transform: translate(0, 50%) rotate(90deg);
  }
}

/* !END: Countup CSS */
/**----------------------------------------
START: Working process CSS
----------------------------------------*/
.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: 0;
  padding: 7px 10px;
}
.tj-working-process .content-wrap {
  margin-bottom: 45px;
}

.working-process-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
}

.process-item {
  max-width: 422px;
  width: 100%;
  background-color: var(--tj-color-common-white);
  padding: 25px 28px 40px 28px;
  position: relative;
  border-radius: 10px;
  z-index: 3;
}
.process-item:nth-child(2) {
  z-index: 2;
}
.process-item:last-child {
  z-index: 1;
}
.process-item:not(:last-child)::after {
  content: "\e916";
  font-size: 24px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  font-family: "bexon-icons" !important;
  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%;
  inset-inline-end: -34px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: none;
  transition: none;
}
[dir="rtl"] .process-item::after {
	transform:rotate(180deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item:not(:last-child)::after {
    font-size: 20px;
    width: 50px;
    height: 50px;
    inset-inline-end: -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 {
    -webkit-transform: translate(-50%, 0) rotate(90deg);
    -ms-transform: translate(-50%, 0) rotate(90deg);
    transform: translate(-50%, 0) rotate(90deg);
    top: inherit;
    inset-inline-end: inherit;
    bottom: -40px;
    inset-inline-start: 50%;
  }
}
.process-item .process-step {
  font-size: 120px;
  color: var(--tj-color-theme-primary);
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(var(--tj-color-theme-primary)),
    color-stop(90%, var(--tj-color-common-white))
  );
  background: linear-gradient(
    180deg,
    var(--tj-color-theme-primary) 0%,
    var(--tj-color-common-white) 90%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: var(--tj-fw-sbold);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  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: 0;
}
@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 15px;
  }
}

.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: 0;
  counter-reset: steps;
}
.tj-faq.style-3 .accordion-item {
  background: transparent;
  border: none;
  -webkit-border-start: 4px solid var(--tj-color-border-1);
  border-inline-start: 4px solid var(--tj-color-border-1);
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
  margin-bottom: 0;
}
.tj-faq.style-3 .accordion-item .faq-title {
  -webkit-padding-end: 0;
  padding-inline-end: 0;
  -webkit-padding-start: 27px;
  padding-inline-start: 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;
  content: "0" counter(steps) ".";
  font-size: 14px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  position: absolute;
  top: 50%;
  inset-inline-start: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  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: 0 0 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 {
    -webkit-padding-start: 10px;
    padding-inline-start: 10px;
  }
}

.working-img-area {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.working-img-area .circle-text-wrap.video-btn {
  inset-inline-end: inherit;
  inset-inline-start: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -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: 0;
  inset-inline-end: 0;
  z-index: 2;
}
.working-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* !END: Working process CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.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;
    margin-top: 30px;
  }
}

.contact-info .contact-item {
  padding: 13px 0 9px 0;
}
.contact-info .contact-item .subtitle {
  display: block;
  font-size: 14px;
  line-height: 1;
  color: var(--tj-color-text-body-2);
  margin-bottom: 7px;
}
.contact-info .contact-item a:hover {
  color: var(--tj-color-theme-primary);
}
.contact-info .contact-item .contact-link {
  display: inline-block;
  color: var(--tj-color-common-white);
}
.contact-info .contact-item:last-child {
  border: 0;
}

.contact-form {
  background-color: var(--tj-color-common-white);
  -webkit-margin-start: 0;
  margin-inline-start: 0;
  -webkit-margin-end: 15px;
  margin-inline-end: 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 0;
  border: 0;
  border-bottom: 1px dashed 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);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type="tel"]::-moz-placeholder,
.contact-form .form-input input[type="text"]::-moz-placeholder,
.contact-form .form-input input[type="email"]::-moz-placeholder {
  color: var(--tj-color-text-body-3);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type="tel"]:-ms-input-placeholder,
.contact-form .form-input input[type="text"]:-ms-input-placeholder,
.contact-form .form-input input[type="email"]:-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.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);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-moz-placeholder,
.contact-form .form-input select::-moz-placeholder,
.contact-form .form-input .nice-select::-moz-placeholder,
.contact-form .form-input input[type="tel"]::-moz-placeholder,
.contact-form .form-input input[type="text"]::-moz-placeholder,
.contact-form .form-input input[type="email"]::-moz-placeholder {
  color: var(--tj-color-text-body-3);
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea:-ms-input-placeholder,
.contact-form .form-input select:-ms-input-placeholder,
.contact-form .form-input .nice-select:-ms-input-placeholder,
.contact-form .form-input input[type="tel"]:-ms-input-placeholder,
.contact-form .form-input input[type="text"]:-ms-input-placeholder,
.contact-form .form-input input[type="email"]:-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.contact-form .form-input textarea::-ms-input-placeholder,
.contact-form .form-input select::-ms-input-placeholder,
.contact-form .form-input .nice-select::-ms-input-placeholder,
.contact-form .form-input input[type="tel"]::-ms-input-placeholder,
.contact-form .form-input input[type="text"]::-ms-input-placeholder,
.contact-form .form-input input[type="email"]::-ms-input-placeholder {
  color: var(--tj-color-text-body-3);
  -ms-transition: all 0.3s;
  transition: all 0.3s;
}
.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);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.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 0 10px;
  }
}
.contact-form .form-input .cf-label {
  font-size: 16px;
  color: var(--tj-color-text-body-3);
  position: absolute;
  top: 10px;
  inset-inline-start: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s linear;
  transition: all 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 textarea {
  height: 130px;
  resize: none;
  padding-top: 0;
}
.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 {
  max-width: 610px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 2;
}
.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;
  }
}

@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 {
    -webkit-margin-end: 0;
    margin-inline-end: 0;
  }
}

.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-bottom: 0;
  max-width: 224px;
  margin: 0 auto;
}
.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--tj-color-theme-bg);
  border-radius: 50%;
  margin-bottom: 22px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.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);
}

/* !END: Contact CSS */
/**----------------------------------------
START: Theme Slider CSS
----------------------------------------*/
.tj-slider-section {
  position: relative;
  z-index: 1;
  margin: 0 15px 0 15px;
  border-radius: 16px;
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-slider-section {
    border-radius: 14px;
    margin: 0 12px 0;
  }
}

.tj-slider-item {
  min-height: 92.5vh;
  background-color: #0c1e21;
  position: relative;
  z-index: 1;

}
.tj-slider-item::after {
  position: absolute;
  content: "";
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(20%, rgb(12, 30, 33)),
    color-stop(60%, rgba(12, 30, 33, 0.4)),
    to(rgba(12, 30, 33, 0.1))
  );
  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 0 347px;
  position: relative;
  z-index: 3;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-slider-item .slider-wrapper {
    -webkit-padding-start: 50px;
    padding-inline-start: 50px;
    padding-top: 170px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-wrapper {
    padding: 170px 0 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 0 280px 0; */
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-slider-item .slider-wrapper {
    padding: 80px 0 50px 0;
  }
  .tj-slider-item::after {
    /* display: none; */
  }
	  
.tj-slider-item {
  min-height: 50vh !important;
  background-color: #0c1e21;
  position: relative;
  z-index: 1;

}
}
.tj-slider-item .slider-content {
  max-width: 660px;
}
.tj-slider-item .slider-content .slider-title {
  color: var(--tj-color-common-white);
  font-size: 60px;
  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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  overflow: hidden;
object-fit:cover !important;
}
@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: 55px;
  }
}
@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: 30px;
  }
}
.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: 45px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-content {
    max-width: 600px;
  }
}
@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: 1400px) and (max-width: 1600px) {
  .tj-slider-item {
    min-height: 95vh;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item {
min-height: 65vh;
  }

}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .tj-slider-item {
    min-height: 40vh;
    margin-top: 106px;
  }
}

.swiper-slide .slider-content .slider-title,
.swiper-slide .slider-content .slider-desc,
.swiper-slide .slider-content .slider-btn {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition-duration: 0.8s;
  transition-duration: 0.8s;
}
.swiper-slide.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;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.swiper-slide.swiper-slide-active .slider-content .slider-title {
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
	
}
.swiper-slide.swiper-slide-active .slider-content .slider-desc {
  -webkit-transition-delay: 1.25s;
  transition-delay: 1.25s;
}
.swiper-slide.swiper-slide-active .slider-content .slider-btn {
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}

.slider-bg-image {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
}

[dir="ltr"] .hero-thumb {
  max-width: 1320px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  inset-inline-start: 50%;
  bottom: 60px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
[dir="rtl"] .hero-thumb {
  max-width: 1320px;
  width: 100%;
  padding: 0 10px;
  margin: 0 auto;
  position: absolute;
  inset-inline-end: 50%;
  bottom: 60px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.hero-thumb .swiper-wrapper {
  max-width: 270px;
  margin: 0;
}
.hero-thumb .thumb-item {
  width: 80px !important;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.hero-thumb .thumb-item img {
  object-fit: cover;
  height: 100%;
}
.hero-thumb .thumb-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
  border-radius: 6px;
  background-color: var(--tj-color-theme-dark);
  opacity: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-thumb .thumb-item {
    width: 70px !important;
    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) {
  .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 {
    -webkit-padding-start: 60px;
    padding-inline-start: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-thumb {
    max-width: 1140px;
    bottom: 100px;
  }
}
@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: 30px;
  }
  .tj-slider-item .slider-content {
    /* display: none; */
  }
}

.hero-navigation {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 30px;
  margin-top: 26px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hero-navigation .slider-next,
.hero-navigation .slider-prev {
  width: 60px;
  height: 60px;
	border-radius:50%;
  font-size: 28px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: -60px;
	display:flex;
	justify-content:center;
	align-items:center;
}
[dir="rtl"] .hero-navigation .slider-next,
[dir="rtl"] .hero-navigation .slider-prev {
  width: 60px;
  height: 60px;
	border-radius:50%;
  font-size: 28px;
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  margin-top: -60px;
	display:flex;
	justify-content:center;
	align-items:center;
	transform:rotate(180deg)
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-navigation .slider-next,
  .hero-navigation .slider-prev {
    margin-top: 0;
  }
}
.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-white);
}

.hero-navigation .slider-next:hover,
.hero-navigation .slider-prev:hover {
  border-color: var(--tj-color-common-white);
  background-color: var(--tj-color-common-white);
}
.hero-navigation .slider-next:hover .anim-icon i,
.hero-navigation .slider-prev:hover .anim-icon i{
	color: var(--tj-color-common-black) !important;
}
@media only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .hero-navigation .slider-next,
  .hero-navigation .slider-prev {
    display: none !important;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px),
  only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-navigation {
    padding: 0 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: 0 15px;
  }
}

.circle-text-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 60px;
  inset-inline-end: 285px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  z-index: 5;
  overflow: hidden;
  display: none;
}
[dir="ltr"] .circle-text-wrap .circle-icon,
[dir="ltr"]  .circle-text-wrap .circle-text {
  position: absolute;
  inset-inline-start: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6;
}
[dir="rtl"] .circle-text-wrap .circle-icon,
[dir="rtl"] .circle-text-wrap .circle-text {
  position: absolute;
  inset-inline-end: 50% !important;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 6;
}
.circle-text-wrap .circle-text {
  width: 164px;
  height: 160px;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: textrotate 20s infinite linear;
  animation: textrotate 20s infinite linear;
}
@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) {
  .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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.circle-text-wrap .circle-icon i {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.circle-text-wrap .circle-icon:hover i {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  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),
  only screen and (min-width: 576px) and (max-width: 767px),
  (max-width: 575px) {
  .circle-text-wrap .circle-icon {
    font-size: 60;
    width: 150px;
    height: 150px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .circle-text-wrap {
    inset-inline-end: 6%;
    bottom: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .circle-text-wrap {
    bottom: 100px;
  }
}
@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) {
  .circle-text-wrap {
    width: 160px;
    height: 160px;
    inset-inline-end: 6%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .circle-text-wrap {
    inset-inline-end: 10%;
    bottom: 40px;
    display: none;
  }
}
@media (max-width: 575px) {
  .circle-text-wrap {
    inset-inline-end: 15px;
    bottom: 40px;
    display: none;
  }
}

/* !END: Slider CSS */

/* !END: Blog Details CSS */
/**----------------------------------------
START: Animate CSS
----------------------------------------*/
@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
.jumping {
  -webkit-animation: jumping 1.5s infinite;
  animation: jumping 1.5s infinite;
}

@-webkit-keyframes jumping {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  75% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
@keyframes jumping {
  0% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
  25% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  50% {
    -webkit-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  75% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  100% {
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
  }
}
@-webkit-keyframes linehover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    inset-inline-end: 0;
  }
  100% {
    width: 100%;
    inset-inline-start: 0;
  }
}
@keyframes linehover {
  0% {
    width: 100%;
  }
  50% {
    width: 0;
    inset-inline-end: 0;
  }
  100% {
    width: 100%;
    inset-inline-start: 0;
  }
}
@-webkit-keyframes textrotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes textrotate {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes rotates {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotates {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
@keyframes gelatine {
  from,
  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  25% {
    -webkit-transform: scale(0.7, 1.1);
    transform: scale(0.7, 1.1);
  }
  50% {
    -webkit-transform: scale(1.1, 0.7);
    transform: scale(1.1, 0.7);
  }
  75% {
    -webkit-transform: scale(0.95, 1.05);
    transform: scale(0.95, 1.05);
  }
}
@-webkit-keyframes borderanimate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@keyframes borderanimate {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(0.8);
    transform: translate(-50%, -50%) scale(0.8);
  }
  60% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1.5);
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes bellshake {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes bellshake {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  15% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  30% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  45% {
    -webkit-transform: rotate(4deg);
    transform: rotate(4deg);
  }
  60% {
    -webkit-transform: rotate(-4deg);
    transform: rotate(-4deg);
  }
  75% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  85% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  92% {
    -webkit-transform: rotate(1deg);
    transform: rotate(1deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
.pulse2 {
  -webkit-animation: pulse2 2s linear infinite;
  animation: pulse2 2s linear infinite;
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgb(255, 255, 255);
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgb(255, 255, 255);
    box-shadow: 0 0 0 0px rgb(255, 255, 255);
  }
  100% {
    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
  }
}
.pulse3 {
  -webkit-animation: pulse3 2s linear infinite;
  animation: pulse3 2s linear infinite;
}

@-webkit-keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
    box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse3 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
    box-shadow: 0 0 0 0px rgba(30, 138, 138, 0.4);
  }
  100% {
    -webkit-box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
  }
}
.pulse4 {
  -webkit-animation: pulse4 2s linear infinite;
  animation: pulse4 2s linear infinite;
}

@-webkit-keyframes pulse4 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
}
@keyframes pulse4 {
  0% {
    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);
  }
  100% {
    -webkit-box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
    box-shadow: 0 0 0 12px rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}
@keyframes shine {
  0% {
    -webkit-transform: skewX(-25deg) translateX(0);
    transform: skewX(-25deg) translateX(0);
  }
  100% {
    -webkit-transform: skewX(-25deg) translateX(250%);
    transform: skewX(-25deg) translateX(250%);
  }
}
.zoomInOut {
  -webkit-animation: zoomEffect 3s linear infinite;
  animation: zoomEffect 3s linear infinite;
}

@-webkit-keyframes zoomEffect {
  0%,
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@keyframes zoomEffect {
  0%,
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@-webkit-keyframes tj-bounce-ball {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes tj-bounce-ball {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
.customers ul {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  list-style: none;
  padding: 10px;
}
.customers-box {
  background-color: var(--tj-color-common-white);
  border-radius: 10px;
  padding: 30px 25px;
}
.customers ul li img {
  width: 59px;
  height: 59px;
  background-color: var(--tj-color-common-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 2px var(--tj-color-common-white);
  box-shadow: 0 0 0 2px var(--tj-color-common-white);
}
.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: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 22px;
  -webkit-box-shadow: 0 0 0 2px var(--tj-color-common-white);
  box-shadow: 0 0 0 2px var(--tj-color-common-white);
}
.customers-box.style-2 ul li span {
  background-color: var(--tj-color-theme-dark);
}
/* !END: Animate CSS */
#wrapper {
  padding: 0;
  z-index: 10000;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  list-style: none;
  /* z-index: 1000; */
  position: fixed;
  bottom: 25%;
  inset-inline-start: 25px;
  transform: translate(-100%, 100%);
  /* direction: rtl; */
}
#wrapper .Icon {
  position: relative;
  background: #25d366;
  border-radius: 1rem;
  padding: 15px;
  margin: 9px;
  width: 50px;
  height: 50px;
  font-size: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
#wrapper .call {
  background: var(--tj-color-theme-primary);
}
#wrapper .Icon a {
  color: #fff;
}

#wrapper .Icon:hover span {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
#wrapper .Icon:hover a {
  color: #fff;
}

#wrapper .whatsapp:hover {
  background: #1f2937;
  color: #ffffff;
}
#wrapper .whatsapp:hover {
  background: #1f2937;
  color: #ffffff;
}
#wrapper .call:hover {
  background: #1f2937 ;
  color: #1f2937 ;
}
@media(min-width:1200px){
  .footer-logo a img{
    width:800px !important;
}  
}
