@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;family=Fredoka:wght@300..700&amp;family=Unbounded:wght@200..900&amp;display=swap");
:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'DM Sans', sans-serif;
  --tj-ff-heading: 'Unbounded', 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: 90px;
  --tj-fs-h2: 45px;
  --tj-fs-h3: 30px;
  --tj-fs-h4: 24px;
  --tj-fs-h5: 16px;
  --tj-fs-h6: 14px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #0b3d2c;
  --tj-color-text-body: #878c8f;
  --tj-color-text-body-2: #d7cdcd;
  --tj-color-text-body-3: #32343b;
  --tj-color-text-body-4: #636a68;
  --tj-color-theme-primary: #0b3d2c;
  --tj-color-theme-secondary: #f1d2a9;
  --tj-color-theme-bg: #eff4ed;
  --tj-color-theme-bg-2: #1d4b3c;
  --tj-color-theme-bg-3: #eef1f0;
  --tj-color-theme-bg-4: #245142;
  --tj-color-grey-1: #777777;
  --tj-color-grey-2: #f7f8f7;
  --tj-color-grey-3: #e6ebe9;
  --tj-color-grey-4: #bdbf76;
  --tj-color-grey-5: #1f6306;
  --tj-color-grey-6: #f9f9f9;
  --tj-color-grey-7: #3d5b4f;
  --tj-color-grey-8: #c3b8b8;
  --tj-color-grey-9: #f1d2a9;
  --tj-color-grey-10: #e0e8dd;
  --tj-color-grey-11: #a49ea0;
  --tj-color-grey-12: #bfc2c3;
  --tj-color-grey-13: #f5f5f5;
  --tj-color-grey-14: #f6f6f6;
  --tj-color-grey-15: #b6bbbe;
  --tj-color-grey-16: #3a6355;
  --tj-color-grey-17: #ccd7d4;
  --tj-color-grey-18: #eef0ef;
  --tj-color-grey-19: #2a5647;
  --tj-color-grey-20: #2b5141;
  --tj-color-grey-21: #e2e6e5;
  --tj-color-grey-22: #cad1d5;
  --tj-color-grey-23: #fafcfe;
  --tj-color-grey-24: #121212;
  --tj-color-grey-25: #194838;
  --tj-color-grey-26: #194838;
  --tj-color-grey-27: #c0c1c2;
  --tj-color-grey-28: #f5e0c5;
  --tj-color-grey-29: #d1d3d2;
  --tj-color-border-1: #cfbc96;
  --tj-color-border-2: #cdd9d0;
  --tj-color-border-3: #8fb182;
  --tj-color-border-4: #bbd0b4;
  --tj-color-border-5: #2f5a4b;
  --tj-color-border-6: #e6e6e7;
  --tj-color-border-7: #f2f2f7;
}

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

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

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

.jost-<uniquifier> {
  font-family: "Jost", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

a {
  text-decoration: none;
}

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

h1 {
  font-size: var(--tj-fs-h1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h1 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  h1 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  h1 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

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

h3 {
  font-size: var(--tj-fs-h3);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: var(--tj-fs-h4);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  h4 {
    font-size: 22px;
  }
}
@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) {
  h4 {
    font-size: 20px;
  }
}

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

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

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

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

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

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

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

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

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

button:hover {
  cursor: pointer;
}

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

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: transparent;
}

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

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

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

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}

/**
  Buttons CSS
*/
.tj-header-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  text-transform: uppercase;
  border-radius: 150px;
  padding: 23px 40px;
  letter-spacing: 0.32px;
  text-align: center;
  background: var(--tj-color-theme-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tj-header-btn i {
  color: var(--tj-color-common-white);
}
.tj-header-btn::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-common-white);
  z-index: -1;
}
.tj-header-btn:hover {
  color: var(--tj-color-theme-primary);
}
.tj-header-btn:hover::before {
  width: 100%;
}
.tj-header-btn:hover i {
  color: var(--tj-color-theme-primary);
}

.btn-2,
.tj-button {
  position: relative;
  font-size: 17px;
  max-width: 200px;
  width: 100%;
  /*letter-spacing: 0.32px;*/
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
  overflow: hidden;
  font-weight: var(--tj-fw-medium);
  background: var(--tj-color-theme-secondary);
  border-radius: 5px;
  -webkit-transform: translate3d(0px, 0%, 0px);
          transform: translate3d(0px, 0%, 0px);
}
.btn-2.btn-2,
.tj-button.btn-2 {
  background: #0070bc;
}
.btn-2.btn-2:before,
.tj-button.btn-2:before {
  background: #0070bc;
}
.btn-2.btn-2:after,
.tj-button.btn-2:after {
  background: #fff;
}
.btn-2.btn-2 .tj-secondary-btn span:first-child,
.tj-button.btn-2 .tj-secondary-btn span:first-child {
  color: #fff;
}
.btn-2.btn-2 .tj-secondary-btn span:last-child,
.tj-button.btn-2 .tj-secondary-btn span:last-child {
  color: #142f74;
}
.btn-2.btn-2:hover,
.tj-button.btn-2:hover {
  background: var(--tj-color-theme-secondary);
}
.btn-2:before,
.tj-button:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 0 0;
  -webkit-transform: translateY(100%) scaleY(0.5);
      -ms-transform: translateY(100%) scaleY(0.5);
          transform: translateY(100%) scaleY(0.5);
  background: var(--tj-color-theme-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.btn-2:after,
.tj-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0070bc;
  border-radius: 0;
  -webkit-transform: translateY(0) scaleY(1);
      -ms-transform: translateY(0) scaleY(1);
          transform: translateY(0) scaleY(1);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.btn-2 .tj-secondary-btn,
.btn-2 .tj-primary-btn,
.tj-button .tj-secondary-btn,
.tj-button .tj-primary-btn {
  display: block;
  position: relative;
  width: 100%;
  height: 54px;
  line-height: 54px;
  text-transform: capitalize;
  overflow: hidden;
  font-weight: 600;
}
.btn-2 .tj-secondary-btn span,
.btn-2 .tj-primary-btn span,
.tj-button .tj-secondary-btn span,
.tj-button .tj-primary-btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  position: absolute;
  z-index: 1;
  top: 0;
  width: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.btn-2 .tj-secondary-btn span:first-child,
.btn-2 .tj-primary-btn span:first-child,
.tj-button .tj-secondary-btn span:first-child,
.tj-button .tj-primary-btn span:first-child {
  color: var(--tj-color-common-white);
  -webkit-transform: translateY(65px);
      -ms-transform: translateY(65px);
          transform: translateY(65px);
}
.btn-2 .tj-secondary-btn span:last-child,
.btn-2 .tj-primary-btn span:last-child,
.tj-button .tj-secondary-btn span:last-child,
.tj-button .tj-primary-btn span:last-child {
  color: var(--tj-color-theme-primary);
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.btn-2:hover,
.tj-button:hover {
  background: var(--tj-color-theme-secondary);
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}
.btn-2:hover:after,
.tj-button:hover:after {
  border-radius: 0 0 50% 50%;
  -webkit-transform: translateY(-100%) scaleY(0.5);
      -ms-transform: translateY(-100%) scaleY(0.5);
          transform: translateY(-100%) scaleY(0.5);
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.btn-2:hover:before,
.tj-button:hover:before {
  border-radius: 0;
  -webkit-transform: translateY(0) scaleY(1);
      -ms-transform: translateY(0) scaleY(1);
          transform: translateY(0) scaleY(1);
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
.btn-2:hover span:first-child,
.tj-button:hover span:first-child {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.btn-2:hover span:last-child,
.tj-button:hover span:last-child {
  -webkit-transform: translateY(-65px);
      -ms-transform: translateY(-65px);
          transform: translateY(-65px);
}

.tj-cancel-btn {
  position: relative;
  font-size: 16px;
  max-width: 185px;
  width: 100%;
  letter-spacing: 0.32px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  background: var(--tj-color-theme-secondary);
  border-radius: 5px;
  padding: 20px 15px;
  line-height: 1;
}
.tj-cancel-btn:hover {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-common-white);
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.tj-header-area {
  position: relative;
  /*padding: 0 110px;*/
  width: 100%;
  top: 0;
  left: 0;
  z-index: 98;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  background: var(--tj-color-common-white);
}
.tj-header-area.header-absolute {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}
.tj-header-area.sticky {
  position: fixed;
  background: var(--tj-color-common-white);
  -webkit-animation: sticky 0.9s;
          animation: sticky 0.9s;
}
.tj-header-area.header-dublicate {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.tj-header-area.header-dublicate.sticky {
  position: fixed;
  opacity: 1;
  visibility: visible;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
.tj-header-area .header-topbar {
  background: #1c3975;
}
.tj-header-area .header-topbar .header-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.tj-header-area .header-bottom-area .header-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area .header-bottom-area .header-wrapper {
    padding-left: 15px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1750px), only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-header-area {
    padding: 0;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1601px) and (max-width: 1750px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1601px) and (max-width: 1750px) and (max-width: 575px), only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1400px) and (max-width: 1600px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1400px) and (max-width: 1600px) and (max-width: 575px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) and (max-width: 575px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px) and (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px), only screen and (max-width: 575px) and (min-width: 1400px) and (max-width: 1600px), only screen and (max-width: 575px) and (min-width: 1200px) and (max-width: 1399px), only screen and (max-width: 575px) and (min-width: 992px) and (max-width: 1199px), only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px), (max-width: 575px) and (max-width: 575px) {
  .tj-header-area.sticky {
    padding: 0;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1750px), only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-header-area .header-bottom-area {
    padding: 0 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area {
    padding: 0;
  }
  .tj-header-area .header-bottom-area {
    padding: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area .header-topbar {
    padding: 15px 0;
  }
  .tj-header-area .header-topbar .header-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 575px) {
  .tj-header-area .header-topbar {
    padding: 15px 0;
  }
  .tj-header-area .header-topbar .header-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}
.tj-header-area.header-2 {
  background-color: transparent;
  padding: 25px 0;
}
.tj-header-area.header-2::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 0;
  background: var(--tj-color-common-white);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
}
.tj-header-area.header-2.sticky {
  background-color: var(--tj-color-common-white);
  padding: 0px;
}
.tj-header-area.header-2.sticky::before {
  opacity: 1;
  visibility: visible;
}
.tj-header-area.header-2.sticky .header-wrapper::before {
  top: 0px;
}
.tj-header-area.header-2 .mainmenu-inner {
  max-width: 1250px;
  gap: 65px;
  width: 100%;
  margin: 0 auto;
  background: var(--tj-color-theme-primary);
  border-radius: 50px;
  padding: 0px 35px;
}
.tj-header-area.header-2 .site-logo {
  border-radius: 150px;
}
.tj-header-area.header-2 .search-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.tj-header-area.header-2 .search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.tj-header-area.header-2 .search-box input[type=text] {
  padding: 0px 0px 0px 25px;
}
.tj-header-area.header-2 .header-wrapper {
  position: relative;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 250px;
  padding: 0 45px;
}
.tj-header-area.header-2 .header-wrapper::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 10px;
  left: 0;
  background: var(--tj-color-common-white);
  border-radius: 250px;
  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-header-area.header-2 .header-wrapper::before {
    top: 0px;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-header-area.header-2 .header-wrapper {
    max-width: 1560px;
  }
  .tj-header-area.header-2 .site-logo {
    max-width: 160px;
  }
  .tj-header-area.header-2 .mainmenu-inner {
    gap: 50px;
  }
  .tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
    gap: 35px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-header-area.header-2 .header-wrapper {
    max-width: 1560px;
    padding: 0px 20px;
  }
  .tj-header-area.header-2 .site-logo {
    max-width: 160px;
  }
  .tj-header-area.header-2 .mainmenu-inner {
    gap: 30px;
  }
  .tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-header-area.header-2 .header-wrapper {
    padding: 0px 20px;
  }
  .tj-header-area.header-2 .site-logo {
    max-width: 160px;
  }
  .tj-header-area.header-2 .mainmenu-inner {
    gap: 30px;
  }
  .tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.header-2 .header-wrapper {
    padding: 0px 20px;
  }
  .tj-header-area.header-2 .site-logo {
    max-width: 160px;
  }
  .tj-header-area.header-2 .mainmenu-inner {
    gap: 15px;
  }
  .tj-header-area.header-2 .mainmenu-inner .mainmenu ul {
    gap: 18px;
  }
  .tj-header-area.header-2 .header-contact {
    min-width: 190px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-2 {
    padding: 15px 0;
  }
  .tj-header-area.header-2 .header-wrapper {
    max-width: 735px;
    padding: 0px 15px;
  }
  .tj-header-area.header-2 .mainmenu-inner {
    padding: 10px 0px 10px 0;
    background: var(--tj-color-common-white);
  }
  .tj-header-area.header-2 .mainmenu-inner .hamburger_menu a {
    color: var(--tj-color-common-white);
    background: var(--tj-color-theme-primary);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-header-area.header-2 .header-wrapper {
    max-width: 530px;
  }
}
.tj-header-area.header-3 .header-wrapper {
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0px 150px 150px 0px;
  position: relative;
  z-index: 1;
}
.tj-header-area.header-3 .header-wrapper::before {
  position: absolute;
  content: "";
  width: 95%;
  height: 100%;
  top: 0;
  left: 85px;
  background: var(--tj-color-theme-secondary);
  border-radius: 0px 150px 150px 0px;
}
.tj-header-area.header-3 .header-wrapper::after {
  position: absolute;
  content: "";
  width: 75%;
  height: 100%;
  top: 0;
  left: 60px;
  background: var(--tj-color-common-white);
  border-radius: 0px 150px 150px 0px;
}
.tj-header-area.header-3 .header-wrapper .site-logo {
  position: relative;
  max-width: 265px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: var(--tj-color-theme-secondary);
  z-index: 2;
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
}
.tj-header-area.header-3 .header-wrapper .site-logo .logo {
  position: relative;
  top: -12px;
}
.tj-header-area.header-3 .header-wrapper .site-logo .logo-shapes {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 90%;
  height: 100%;
  background: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
          clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  z-index: -1;
}
.tj-header-area.header-3 .social-media {
  padding-left: 50px;
}
.tj-header-area.header-3 .social-media ul {
  gap: 40px;
}
.tj-header-area.header-3 .social-media ul li a {
  font-size: 20px;
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .social-media ul li a:hover {
  color: var(--tj-color-theme-secondary);
}
.tj-header-area.header-3 .mainmenu-inner {
  position: relative;
  gap: 120px;
  padding-left: 0px;
  z-index: 1;
}
.tj-header-area.header-3 .mainmenu-inner::before {
  position: absolute;
  content: "";
  width: 78%;
  height: 100%;
  left: -70px;
  top: 0;
  background-image: url(../images/bg/header-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 150px;
}
.tj-header-area.header-3 .mainmenu-inner .search-box {
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
      -ms-flex-direction: initial;
          flex-direction: initial;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-header-area.header-3 .mainmenu-inner {
    gap: 40px;
  }
}
.tj-header-area.header-3 .mainmenu ul > li.has-dropdown::after {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .mainmenu ul > li > a {
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-sbold);
  padding: 37px 0;
}
.tj-header-area.header-3 .mainmenu ul > li > a::before {
  top: 30px;
  background: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .mainmenu ul > li > a::after {
  bottom: 30px;
  background: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .mainmenu ul > li .sub-menu > li > a {
  padding: 8px 20px;
}
.tj-header-area.header-3 .mainmenu ul > li .sub-menu > li > a::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tj-header-area.header-3 .search-box {
  gap: 30px;
}
.tj-header-area.header-3 .search-box .header-search .search {
  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;
  background: var(--tj-color-common-white);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  padding: 0px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 1;
}
.tj-header-area.header-3 .search-box .header-search .search i {
  color: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .search-box .header-search .search:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.tj-header-area.header-3 .search-box .header-search .search:hover i {
  color: var(--tj-color-common-white);
}
.tj-header-area.header-3 .search-box .header-button .tj-primary-btn {
  border-radius: 150px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-header-area.header-3 .mainmenu-inner {
    gap: 35px;
  }
  .tj-header-area.header-3 .search-box {
    gap: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-header-area.header-3 .header-wrapper::before {
    width: 92%;
  }
  .tj-header-area.header-3 .mainmenu-inner {
    gap: 50px;
  }
  .tj-header-area.header-3 .mainmenu-inner::before {
    width: 74%;
  }
  .tj-header-area.header-3 .search-box {
    gap: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-header-area.header-3 .header-wrapper::before {
    width: 90%;
  }
  .tj-header-area.header-3 .header-wrapper::after {
    width: 80%;
  }
  .tj-header-area.header-3 .mainmenu-inner {
    gap: 50px;
  }
  .tj-header-area.header-3 .mainmenu-inner::before {
    width: 78%;
  }
  .tj-header-area.header-3 .search-box {
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-header-area.header-3 .header-wrapper::before {
    width: 100%;
    border-radius: 0px;
  }
  .tj-header-area.header-3 .header-wrapper::after {
    display: none;
  }
  .tj-header-area.header-3 .mainmenu-inner::before {
    display: none;
  }
  .tj-header-area.header-3 .hamburger_menu a {
    background: var(--tj-color-theme-primary);
  }
}

.mainmenu-inner {
  position: relative;
  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;
  width: 100%;
  gap: 80px;
  padding-left: 65px;
}
.mainmenu-inner .mainmenu-shape {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0070bc;
  -webkit-clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
          clip-path: polygon(0 0, 100% 0, 97% 100%, 3% 100%);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .mainmenu-inner {
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu-inner {
    gap: 30px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu-inner {
    gap: 20px;
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mainmenu-inner {
    padding: 10px 15px 10px 0;
  }
  .mainmenu-inner .mainmenu-shape {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 3% 100%);
  }
}

.site-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 325px;
  width: 100%;
  background: var(--tj-color-common-white);
}
.site-logo .logo {
  display: inline-block;
  /*max-width: 140px;*/
  width: 100%;
}
.site-logo .logo img {
  width: 100%;
}
/*@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .site-logo {
    max-width: 145px;
  }
}*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .site-logo {
    max-width: 140px;
  }
  /*.site-logo .logo {
    max-width: 125px;
  }*/
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .site-logo {
    max-width: 140px;
  }
  /*.site-logo .logo {
    max-width: 120px;
  }*/
}

.social-media {
  position: relative;
  z-index: 1;
}
.social-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
}
.social-media ul li {
  font-size: 16px;
  line-height: 1;
}
.social-media ul li a {
  color: var(--tj-color-common-white);
}
.social-media ul li a:hover {
  color: var(--tj-color-theme-secondary);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .social-media ul {
    gap: 20px;
  }
}

.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;
  gap: 50px;
}
.mainmenu ul > li {
  position: relative;
  z-index: 1;
  padding-right: 6px;
}
.mainmenu ul > li.has-dropdown {
  padding-right: 20px;
}
.mainmenu ul > li.has-dropdown::after {
  content: "\f107";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  font-family: "Font Awesome 6 Pro";
  -webkit-transition: 0.1s;
  transition: 0.1s;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--tj-color-common-white);
}
.mainmenu ul > li > a {
    position: relative;
    font-size: 16px;
    color: var(--tj-color-common-white);
    display: block;
    padding: 36px 0;
    font-weight: 500;
}
.mainmenu ul > li > a::before, .mainmenu ul > li > a::after {
  background: #fff;
  height: 1px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  content: "";
}
.mainmenu ul > li > a::before {
  top: 25px;
}
.mainmenu ul > li > a::after {
  top: unset;
  left: unset;
  bottom: 25px;
  right: 0;
}
.mainmenu ul > li.current-menu-ancestor a::before, .mainmenu ul > li.current-menu-ancestor a::after, .mainmenu ul > li.current-menu-item a::before, .mainmenu ul > li.current-menu-item a::after, .mainmenu ul > li:hover a::before, .mainmenu ul > li:hover a::after {
  width: 100%;
}
.mainmenu ul > li > .sub-menu {
  text-align: left;
  margin: 0;
  list-style: none;
  background: var(--tj-color-common-white);
  position: absolute;
  opacity: 0;
  /*padding: 10px 0;*/
  visibility: hidden;
  z-index: 100;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  width: 245px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  gap: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  top: 100%;
  display: block;
  left: 0;
  pointer-events: none;
}
/*.mainmenu ul > li > .sub-menu::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 2px;
  background: #1c3975;
  content: "";
  -webkit-transition: 0.6s;
  transition: 0.6s;
}*/
.mainmenu ul > li > .sub-menu > li {
  display: block;
  width: 100%;
  margin-right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 1;
}
.mainmenu ul > li > .sub-menu > li.has-dropdown::after {
  content: "\f105";
  right: 10px;
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li > a {
  position: relative;
  padding: 8px 20px;
  display: block;
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li > a::before {
  content: "";
  width: 0;
  height: 2px;
  background: #1c3975;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.mainmenu ul > li > .sub-menu > li > a::after {
  display: none;
}
.mainmenu ul > li > .sub-menu > li:last-child {
  padding-bottom: 0;
}
.mainmenu ul > li > .sub-menu > li.has-dropdown > a::after {
  content: "\f105";
  right: 10px;
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor, .mainmenu ul > li > .sub-menu > li.current-menu-item, .mainmenu ul > li > .sub-menu > li:hover {
  padding-left: 8px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a, .mainmenu ul > li > .sub-menu > li.current-menu-item > a, .mainmenu ul > li > .sub-menu > li:hover > a {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::before, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::before, .mainmenu ul > li > .sub-menu > li:hover > a::before {
  opacity: 1;
  visibility: visible;
  width: 14px;
}
.mainmenu ul > li > .sub-menu > li.current-menu-ancestor > a::after, .mainmenu ul > li > .sub-menu > li.current-menu-item > a::after, .mainmenu ul > li > .sub-menu > li:hover > a::after {
  color: var(--tj-color-theme-primary);
}
.mainmenu ul > li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
}
.mainmenu ul > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  pointer-events: inherit;
}
.mainmenu ul > li:hover > .sub-menu::before {
  width: 100%;
}
/*@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .mainmenu ul {
    gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mainmenu ul {
    gap: 16px;
  }
}*/

.search-box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  z-index: 1;
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]),
.search-box input[type=text] {
  color: var(--tj-color-common-white);
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  background: transparent;
  border: none;
  padding: 0px 50px 0px 25px;
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder,
.search-box input[type=text]::-ms-input-placeholder {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: var(--tj-fw-medium);
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-webkit-input-placeholder, .search-box input[type=text]::-webkit-input-placeholder {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  color: rgba(255, 255, 255, 0.8);
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-moz-placeholder, .search-box input[type=text]::-moz-placeholder {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  color: rgba(255, 255, 255, 0.8);
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox]):-ms-input-placeholder, .search-box input[type=text]:-ms-input-placeholder {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  color: rgba(255, 255, 255, 0.8);
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::-ms-input-placeholder, .search-box input[type=text]::-ms-input-placeholder {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  color: rgba(255, 255, 255, 0.8);
}
.search-box input:not([type=submit]):not([type=radio]):not([type=checkbox])::placeholder,
.search-box input[type=text]::placeholder {
  font-size: 17px;
  font-weight: var(--tj-fw-medium);
  color: rgba(255, 255, 255, 0.8);
}
.search-box button {
  padding: 35px 16px;
  background: var(--tj-color-theme-secondary);
  font-size: 18px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
}

.header-search {
  position: relative;
  z-index: 1;
}
.header-search.d-search .search {
  color: var(--tj-color-theme-primary);
}
.header-search .search {
  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) {
  .header-search {
    display: none;
  }
}

.header-infos ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.header-infos ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  color: #fff;
  position: relative;
  z-index: 1;
  line-height: 1;
  border-right: 2px solid #f2f2f2;
  padding: 13px 50px 13px 0;
}
.header-infos ul li:last-child {
  padding: 13px 0px 13px 0;
}
.header-infos ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.header-infos ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.header-infos ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-theme-primary);
}
.header-infos ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.header-infos ul li:last-child {
  border: none;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-infos ul {
    gap: 20px;
  }
  .header-infos ul li {
    padding: 13px 20px 13px 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) {
  .header-infos ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 15px;
  }
  .header-infos ul li {
    padding: 0;
    border: none;
  }
  .header-infos ul li:last-child {
    padding: 0px;
  }
}

.header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.header-menu ul li {
  line-height: 1;
  position: relative;
  z-index: 1;
  color: #fff;
}
.header-menu ul li::before {
  content: "/";
  margin-right: 15px;
}
.header-menu ul li:first-child::before {
  display: none;
}
.header-menu ul li a {
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.header-menu ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -2px;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-theme-primary);
}
.header-menu ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.header-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 10px;
  min-width: 200px;
}
.header-contact .call-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 40px;
  width: 100%;
  height: 40px;
  line-height: 1;
  font-size: 16px;
  color: #fff;
  background: #1c3975;
  border-radius: 50%;
}
.header-contact .call-text span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1c3975;
}
.header-contact .call-text .link {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.header-contact .call-text .link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-theme-primary);
}
.header-contact .call-text .link:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
@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-contact {
    display: none;
  }
}

.hamburger_menu {
  margin-left: auto;
}
.hamburger_menu a {
  width: 50px;
  height: 50px;
  line-height: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background: rgba(236, 255, 243, 0.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  z-index: 3;
  font-size: 25px;
  display: none;
}
.hamburger_menu a:hover {
    background-color: #ffffff;
    color: #0070bc;
}
@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_menu a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

@-webkit-keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes sticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
/* !END: Theme Header CSS */
/* !START: Back top CSS */
.scroll-to-top {
    position: fixed;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    line-height: 1;
    left: 30px;
    bottom: 30px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: #142f74;
    color: #ffffff;
    font-size: 21px;
    border: 2px solid #fff;
    z-index: 100;
    border-radius: 50%;
    cursor: pointer;
}
.scroll-to-top.scroll-to-top-visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top i {
  font-weight: var(--tj-fw-medium);
}
@media (max-width: 575px) {
  .scroll-to-top {
    right: 20px;
    bottom: 20px;
  }
}

/* !END: Back top CSS */
/**----------------------------------------
START: Theme Search CSS
----------------------------------------*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 100;
  margin-top: -540px;
  -webkit-transform: translateY(-110%);
      -ms-transform: translateY(-110%);
          transform: translateY(-110%);
  background-color: rgba(11, 61, 44, 0.9);
  -webkit-transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
          transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50%;
  text-align: center;
  background-color: var(--tj-color-common-white);
  width: 70px;
  height: 70px;
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
  cursor: pointer;
}
.search-popup .close-search i {
  position: relative;
  display: block;
  height: 70px;
  font-size: 25px;
  line-height: 65px;
  color: var(--tj-color-theme-primary);
}

.search-active .search-popup {
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
  margin-top: 0;
}
.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}
.search-popup .form-group input[type=search] {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 50px;
  color: var(--tj-color-grey-24);
  height: 70px;
  width: 100%;
  padding: 10px 65px 10px 30px;
  background-color: var(--tj-color-common-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .form-group input[type=search]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.search-popup .form-group input[type=search]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}
.search-popup .form-group input[type=search]::-moz-placeholder {
  color: var(--tj-color-text-body);
}
.search-popup .form-group input[type=search]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.search-popup .form-group input[type=search]::placeholder {
  color: var(--tj-color-text-body);
}
.search-popup .form-group input[type=search]:focus {
  outline: none;
}
.search-popup .form-group button,
.search-popup .form-group input[type=submit] {
  position: absolute;
  right: 30px;
  top: 0px;
  height: 70px;
  line-height: 70px;
  background: transparent;
  text-align: center;
  font-size: 25px;
  color: var(--tj-color-text-body);
  padding: 0;
  cursor: pointer;
  border: none;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-active .search-popup form {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}

.search-popup .close-search.style-2 {
  position: absolute;
  right: 25px;
  left: auto;
  color: var(--tj-color-common-white);
  width: auto;
  height: auto;
  top: 20px;
  margin: 0px;
  border: none;
  background: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.search-popup .close-search.style-2 i {
  font-size: 35px;
  color: var(--tj-color-common-white);
  line-height: 1;
}

/* !END: Theme Search CSS */
/**----------------------------------------
START: Theme Canvas CSS
----------------------------------------*/
.tj-overlay-canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #0070bc2b;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.tj-offcanvas-area {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 380px;
  z-index: 9999;
  background: #1c3975;
  padding: 12px 12px 12px;
  right: -450px;
  opacity: 0;
  visibility: visible;
  overflow-x: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 575px) {
  .tj-offcanvas-area {
    width: 280px;
    /*padding: 30px 20px;*/
  }
}
.tj-offcanvas-area .des {
  margin-bottom: 15px;
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .canvas-title {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}
.tj-offcanvas-area .canvas-title::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -3px;
  width: 88px;
  height: 2px;
  background: var(--tj-color-theme-primary);
  z-index: 2;
}
.tj-offcanvas-area .canvas-title .title {
  color: var(--tj-color-theme-primary);
}
.tj-offcanvas-area .contact-info-list {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-offcanvas-area .contact-info-list .header-infos ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .tj-offcanvas-area .contact-info-list .header-infos ul li {
    padding: 0;
    border: none;
  }
}
.tj-offcanvas-area .offcanvas-icon {
  font-size: 25px;
  color: var(--tj-primary-color);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.tj-offcanvas-area .offcanvas-icon i {
  color: #fff;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.tj-offcanvas-area .offcanvas-icon i:hover {
  color: #fff;
}
.tj-offcanvas-area .tj-offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 15px;
  /*margin-bottom: 50px;*/
}
.tj-offcanvas-area .tj-offcanvas-header .logo {
  display: inline-block;
  max-width: 140px;
  width: 100%;
}
.tj-offcanvas-area .tj-offcanvas-header .logo img {
  width: 100%;
}
.tj-offcanvas-area .tj-search-box {
  position: relative;
  margin-bottom: 40px;
}
.tj-offcanvas-area .tj-search-box form input {
  border: 1px solid var(--tj-primary-color);
  width: 100%;
  padding: 13px 15px;
  border-radius: 3px;
  font-size: 17px;
}
.tj-offcanvas-area .tj-search-box form input::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-moz-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input:-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form input::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.tj-offcanvas-area .tj-search-box form button {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  height: 48px;
  border-radius: 0px 3px 3px 0px;
  background: var(--tj-color-theme-primary);
  font-size: 15px;
  color: var(--tj-color-common-white);
  text-align: center;
}
.tj-offcanvas-area .tj-search-box form button:hover {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-share {
  margin-bottom: 50px;
}
.tj-offcanvas-area .offcanvas-share ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.tj-offcanvas-area .offcanvas-share ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.tj-offcanvas-area .offcanvas-share ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 2;
  font-size: 14px;
  width: 30px;
  height: 30px;
  line-height: 1;
  border-radius: 50%;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
}
.tj-offcanvas-area .offcanvas-share ul li a i {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .offcanvas-share ul li a:hover i {
  color: var(--tj-color-common-white);
}
.tj-offcanvas-area .contact-map iframe {
  width: 400px;
  height: 227px;
}
.tj-offcanvas-area .header-infos ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 1;
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  border-radius: 50%;
}

.canvas_expanded .tj-offcanvas-area {
  right: 0;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.canvas_expanded .tj-overlay-canvas,
.canvas_expanded .tj-offcanvas-area {
  opacity: 1;
  visibility: visible;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}
.mean-container .mean-nav ul li li {
  margin-left: 15px;
}
.mean-container .mean-nav ul li li a {
    text-transform: capitalize;
    padding: 8px 10px 8px 0;
    width: 100%;
    font-size: 15px !important;
    color: #ffffff !important;
    font-weight: 400 !important;
}
.mean-container .mean-nav ul li li li {
  margin-left: 15px;
}
.mean-container .mean-nav ul li li li a {
  text-transform: capitalize;
  padding: 15px 0 12px 0;
  width: 100%;
  color: var(--tj-color-theme-primary);
}

.mobile-navbar-menu {
  overflow: hidden;
}
.mobile-navbar-menu .mean-bar * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile-navbar-menu .mean-nav > ul {
  display: block !important;
}
.mobile-navbar-menu .mean-bar {
  background: transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.mobile-navbar-menu .mean-nav {
  background: transparent;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 20px;
}
.mobile-navbar-menu .mean-nav ul li:first-child {
  border-top: none;
}
.mobile-navbar-menu .mean-nav ul li a {
  color: #fff;
  border-top: none;
  padding: 8px 0;
  font-size: 15px;
  width: 100%;
  /*font-family: var(--tj-ff-heading);*/
  /*font-weight: var(--tj-fw-regular);*/
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-plus {
  display: block;
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand i.fa-minus {
  display: none;
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-minus {
  display: block;
  color: var(--tj-color-theme-primary);
}
.mobile-navbar-menu .mean-nav ul li a.mean-expand.mean-clicked i.fa-plus {
  display: none;
}

/* !END: Theme Canvas CSS */
/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/
.preloader {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: default;
  position: fixed;
  z-index: 9999999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: var(--tj-color-theme-bg-2);
}
.preloader .loader-icon {
  max-width: 45px;
  width: 100%;
  margin: 0 auto;
}
.preloader .loader-icon img {
  width: 100%;
}
.preloader .tj-cancel-btn {
  position: absolute;
  top: 15px;
  right: 15px;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 3px solid var(--tj-color-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 94px;
}
.preloader .animation-preloader .spinner::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-top: 3px solid var(--tj-color-theme-secondary);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}
.preloader .animation-preloader .txt-loading {
  font-size: 80px;
  line-height: 118px;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-weight: 700;
  margin-top: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 60px;
    line-height: 95px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 50px;
    line-height: 85px;
    margin-top: 120px;
  }
}
@media (max-width: 575px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 36px;
    line-height: 65px;
    margin-top: 100px;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--tj-color-common-white);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  -webkit-animation: letters-loading 4s infinite;
  animation: letters-loading 4s infinite;
  color: var(--tj-color-theme-secondary);
  content: attr(data-text-preloader);
  left: 1px;
  opacity: 0;
  position: absolute;
  top: -11px;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7)::before {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8)::before {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(9)::before {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s;
}

@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  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 loaderspin {
  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 loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
/* !END: Preloder CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.tj-footer-area {
  padding-top: 30px;
  background: #142f74;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
/*.tj-footer-area::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 100%;
  right: 0;
  top: 0;
  background: var(--tj-color-theme-bg-4);
  z-index: -1;
}*/
.tj-footer-area.footer-1 {
  /*margin-top: -100px;*/
  position: relative;
  z-index: 1;
}
.tj-footer-area.footer-1 .footer-shapes {
  position: absolute;
  top: 14%;
  left: 0;
  z-index: -1;
}
.tj-footer-area.footer-3 {
  padding-top: 0px;
}
.tj-footer-area.footer-3 .footer-shapes2 {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  max-width: 280px;
  width: 100%;
  z-index: -1;
}
.tj-footer-area.footer-3 .footer-shapes2 img {
  width: 100%;
}
.tj-footer-area.footer-3 .footer-shapes3 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 225px;
  width: 100%;
  z-index: -1;
}
.tj-footer-area.footer-3 .footer-shapes3 img {
  width: 100%;
}
.tj-footer-area.footer-3::before {
  display: none;
}
.tj-footer-area.footer-3 .footer-shapes {
  max-width: 550px;
  width: 100%;
  position: absolute;
  top: -17%;
  left: 0;
  z-index: -1;
}
.tj-footer-area.footer-3 .footer-shapes img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-footer-area.footer-3 .footer-shapes {
    max-width: 365px;
    top: -6%;
  }
}
.tj-footer-area.footer-3 .footer-top-area {
  padding-top: 70px;
  padding-bottom: 50px;
}
.tj-footer-area.footer-3 .content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tj-footer-area.footer-3 .content-area::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.6);
}
.tj-footer-area.footer-3 .content-area .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
  padding-left: 0px;
  padding-right: 115px;
  text-align: end;
}
.tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-inner .contact-icon {
  left: -70px;
  z-index: 2;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-link {
  padding-left: 115px;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-link .sub-title {
  display: block;
  color: var(--tj-color-grey-15);
  font-weight: var(--tj-fw-medium);
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
  font-size: 24px;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  position: relative;
  z-index: 1;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: -3px;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-common-white);
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-link .link:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-images {
  max-width: 110px;
  width: 100%;
  height: 120px;
  -webkit-mask-image: url(../images/shapes/images-1.png);
          mask-image: url(../images/shapes/images-1.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon {
  position: absolute;
  right: -70px;
  top: -5px;
  max-width: 110px;
  width: 100%;
  height: 120px;
  font-size: 20px;
  -webkit-mask-image: url(../images/shapes/contact.svg);
          mask-image: url(../images/shapes/contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: rgba(241, 210, 169, 0.2);
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 85px;
  width: 100%;
  height: 85px;
  -webkit-mask-image: url(../images/shapes/contact.svg);
          mask-image: url(../images/shapes/contact.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--tj-color-theme-secondary);
}
.tj-footer-area.footer-3 .content-area .contact_item .contact-inner .contact-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--tj-color-theme-primary);
}
.tj-footer-area.footer-3 .footer-bottom-area {
  background: var(--tj-color-theme-bg-4);
  max-width: 1710px;
  width: 100%;
  margin: 0 auto;
  border-radius: 250px;
  margin-bottom: 50px;
  padding: 90px 35px 10px;
}
.tj-footer-area.footer-3 .copyright-area {
  background: -webkit-gradient(linear, right top, left top, from(rgba(241, 210, 169, 0)), color-stop(0%, var(--tj-color-theme-primary)), color-stop(50%, rgba(241, 210, 169, 0.1)), to(var(--tj-color-theme-primary)));
  background: linear-gradient(-90deg, rgba(241, 210, 169, 0) 0%, var(--tj-color-theme-primary) 0%, rgba(241, 210, 169, 0.1) 50%, var(--tj-color-theme-primary) 100%);
  padding: 30px 75px;
}
.tj-footer-area.footer-3 .copyright-area .copyright-content {
  background: transparent;
  padding: 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-area.footer-3 .footer-bottom-area {
    border-radius: 150px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link {
    padding-left: 115px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
    font-size: 18px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
    padding-right: 115px;
  }
  .tj-footer-area.footer-3 .footer-bottom-area {
    border-radius: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-footer-area.footer-3 .content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tj-footer-area.footer-3 .content-area::before {
    display: none;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link {
    padding-left: 115px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
    font-size: 18px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
    padding-right: 115px;
  }
  .tj-footer-area.footer-3 .footer-bottom-area {
    border-radius: 0px;
    padding: 80px 15px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-footer-area.footer-3 .content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tj-footer-area.footer-3 .content-area::before {
    display: none;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link {
    padding-left: 115px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
    font-size: 18px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
    padding-right: 115px;
  }
  .tj-footer-area.footer-3 .footer-bottom-area {
    border-radius: 0px;
    padding: 80px 15px 30px;
  }
}
@media (max-width: 575px) {
  .tj-footer-area.footer-3 .content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    gap: 35px;
  }
  .tj-footer-area.footer-3 .content-area::before {
    display: none;
  }
  .tj-footer-area.footer-3 .content-area .contact_item {
    -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;
    max-width: 180px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link {
    padding-left: 0px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item .contact-link .link {
    font-size: 15px;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) {
    -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;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-inner .contact-icon {
    right: -60px;
    left: auto;
  }
  .tj-footer-area.footer-3 .content-area .contact_item:nth-child(2) .contact-link {
    padding-right: 0px;
    text-align: center;
  }
  .tj-footer-area.footer-3 .footer-bottom-area {
    border-radius: 0px;
    padding: 80px 0px 30px;
  }
  .tj-footer-area.footer-3 .copyright-area {
    padding: 30px 0px;
  }
}
@media screen and (min-width: 2000px) {
  .tj-footer-area::before {
    width: 38%;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-footer-area::before {
    width: 32%;
  }
}
/*@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-footer-area::before {
    width: 30%;
  }
}*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-footer-area::before {
    width: 52%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  /*.tj-footer-area {
    padding-top: 180px;
  }*/
  .tj-footer-area::before {
    display: none;
  }
}

.footer-widget {
  margin-bottom: 0px;
}
/*@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget {
    margin-bottom: 50px;
  }
}
.footer-widget .footer-title .title {
  font-size: 26px;
  margin-bottom: 25px;
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-title .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget .footer-title .title {
    margin-bottom: 30px;
  }
}*/
/*.footer-widget.footer1-col-4 {
  padding-left: 130px;
}*/
/*@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .footer-widget.footer1-col-4 {
    padding-left: 100px;
  }
}*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.footer1-col-4 {
    padding-left: 90px;
  }
}
@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) {
  .footer-widget.footer1-col-4 {
    padding-left: 0px;
  }
}
.footer-widget.footer1-col-3 {
  max-width: 100%;
  width: 100%;
}
@media (max-width: 575px) {
  .footer-widget.footer1-col-3 {
    max-width: 100%;
  }
}
.footer-widget.footer2-col-2 {
  padding-left: 110px;
}
.footer-widget.footer2-col-2.widget_nav_menu nav ul {
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-widget.footer2-col-2 {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-2 {
    padding-left: 0px;
  }
}
.footer-widget.footer2-col-4 {
  padding-left: 55px;
  max-width: 430px;
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.footer2-col-4 {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.footer2-col-4 {
    padding-left: 0px;
  }
}
.footer-widget.widget_nav_menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.widget_nav_menu nav ul li {
  margin-bottom: 25px;
}
.footer-widget.widget_nav_menu nav ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.widget_nav_menu nav ul li a {
  font-size: 18px;
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-15);
  position: relative;
  z-index: 1;
}
.footer-widget.widget_nav_menu nav ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-grey-15);
}
.footer-widget.widget_nav_menu nav ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.widget_nav_menu nav ul li a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.widget_nav_menu nav ul li {
    margin-bottom: 15px;
  }
}
.footer-widget.recent-post .post-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 25px;
  gap: 20px;
}
.footer-widget.recent-post .post-item:last-child {
  margin-bottom: 0;
}
.footer-widget.recent-post .post-item .post-images {
  max-width: 70px;
  width: 100%;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.footer-widget.recent-post .post-item .post-images a {
  display: inline-block;
}
.footer-widget.recent-post .post-item .post-images a img {
  height: 76px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.footer-widget.recent-post .post-item .post-images a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.footer-widget.recent-post .post-item .post-content {
  max-width: 260px;
  width: 100%;
}
.footer-widget.recent-post .post-item .post-content .date {
  color: var(--tj-color-grey-15);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}
.footer-widget.recent-post .post-item .post-content .post-title {
  color: var(--tj-color-common-white);
  margin-bottom: 0;
  font-family: var(--tj-ff-body);
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
  line-height: 1.6;
}
.footer-widget.recent-post .post-item .post-content .post-title a {
  color: var(--tj-color-common-white);
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.footer-widget.recent-post .post-item .post-content .post-title a:hover {
  color: var(--tj-color-common-white);
  background-size: 100% 1px;
}
.footer-widget.widget_timer {
  max-width: 375px;
  width: 100%;
}
.footer-widget.widget_timer nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.widget_timer nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 18px;
  color: var(--tj-color-grey-15);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 30px;
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.widget_timer nav ul li {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget.widget_timer nav ul li {
    margin-bottom: 20px;
  }
}
.footer-widget.footer-contact .desc {
  color: var(--tj-color-grey-15);
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
}
.footer-widget.footer-contact .desc p:last-child {
  margin-bottom: 0;
}
.footer-widget.footer-contact .contact-list {
  margin-top: 35px;
  margin-bottom: 45px;
}
.footer-widget.footer-contact .contact-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget.footer-contact .contact-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  font-size: 18px;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 15px;
}
.footer-widget.footer-contact .contact-list ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.footer-contact .contact-list ul li i {
  color: var(--tj-color-theme-secondary);
}
.footer-widget.footer-contact .contact-list ul li a {
  color: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
.footer-widget.footer-contact .contact-list ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-common-white);
}
.footer-widget.footer-contact .contact-list ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.footer-widget.footer-contact .footer-media ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.footer-widget.footer-contact .footer-media 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: 40px;
  height: 40px;
  line-height: 1;
  position: relative;
  color: var(--tj-color-common-white);
  background: var(--tj-color-grey-16);
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 2;
}
.footer-widget.footer-contact .footer-media ul li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  background: var(--tj-color-theme-secondary);
  z-index: -1;
}
.footer-widget.footer-contact .footer-media ul li a i {
  color: var(--tj-color-common-white);
}
.footer-widget.footer-contact .footer-media ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-widget.footer-contact .footer-media ul li a:hover::before {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.footer-widget.footer-contact .footer-media ul li a:hover i {
  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) {
  .footer-widget.footer-contact .contact-list {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
.footer-widget.footer-gallery ul {
  margin: 0;
  padding: 0;
  list-style: none;
  /*display: -webkit-box;*/
  /*display: -ms-flexbox;*/
  /*display: flex;*/
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  row-gap: 15px;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.footer-widget.footer-gallery ul li:last-child {
  margin-bottom: 0;
}
.footer-widget.footer-gallery ul li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.footer-widget.footer-gallery ul li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer-widget.footer-gallery ul li a i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.footer-widget.footer-gallery ul li a:hover i {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget.footer-gallery ul li a {
    width: 105px;
  }
  .footer-widget.footer-gallery ul li a img {
    max-width: 100px;
  }
}
@media (max-width: 575px) {
  .footer-widget.footer-gallery ul li a {
    width: 80px;
    height: 70px;
  }
}

.copyright-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
 background: #151f3a;
  padding: 8px 15px;
}
.copyright-content .desc {
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
}
.copyright-content .desc p:last-child {
  margin-bottom: 0;
}
.copyright-content .footer-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;
  gap: 15px;
}
.copyright-content .footer-menu ul li {
  position: relative;
  z-index: 1;
}
.copyright-content .footer-menu ul li::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 3px;
  bottom: 6px;
  right: -9px;
  border-radius: 50%;
  background: var(--tj-color-theme-secondary);
}
.copyright-content .footer-menu ul li:last-child::before {
  display: none;
}
.copyright-content .footer-menu ul li a {
  position: relative;
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  z-index: 1;
}
.copyright-content .footer-menu ul li a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: -2px;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-common-white);
}
.copyright-content .footer-menu ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(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) {
  .copyright-content {
    /*padding: 25px 15px;*/
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .copyright-content .desc {
    font-size: 13px;
  }
  .copyright-content .footer-menu ul li a {
    font-size: 13px;
  }
}

@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
/* !END: Footer CSS */
/**----------------------------------------
Heading CSS
----------------------------------------*/
.tj-heading-area .sub-title {
    display: block;
    font-size: 16px;
    font-weight: var(--tj-fw-medium);
    color: #fff;
    margin-bottom: 24px;
    line-height: 1;
}
.tj-heading-area .sec-title {
  margin-bottom: 0;
}
.tj-heading-area .desc {
  margin-top: 30px;
}

/* !END: Heading CSS */
/**----------------------------------------
START: Theme Banner CSS
----------------------------------------*/
.tj-banner-section {
  position: relative;
  z-index: 1;
  padding-bottom: 200px;
}
.tj-banner-section .banner-bg {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 100px;
  -webkit-mask-image: url(../images/shapes/banner-img-shape.svg);
          mask-image: url(../images/shapes/banner-img-shape.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}
.tj-banner-section .banner-shapes {
  position: absolute;
  top: 0;
  right: -90px;
  z-index: -1;
}
.tj-banner-section .banner-shapes img {
  -webkit-animation: bounceLeftToRight 4s infinite;
          animation: bounceLeftToRight 4s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-banner-section {
    padding-bottom: 140px;
  }
  .tj-banner-section .banner-bg {
    -webkit-mask-size: unset;
            mask-size: unset;
    -webkit-mask-image: unset;
            mask-image: unset;
  }
}

.tj-banner-section-two {
  padding-top: 450px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  background-color: var(--tj-color-theme-bg-3);
  position: relative;
  z-index: 1;
}
.tj-banner-section-two .banner-shapes {
  position: absolute;
  right: 0;
  bottom: 50px;
  max-width: 250px;
  width: 100%;
  z-index: -1;
}
.tj-banner-section-two .banner-shapes img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-banner-section-two {
    padding-top: 380px;
    padding-bottom: 240px;
    background-position: center 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-banner-section-two {
    padding-top: 320px;
    padding-bottom: 200px;
    background-position: center 50px;
  }
  .tj-banner-section-two .banner-shapes {
    max-width: 150px;
    bottom: auto;
    top: 30%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-banner-section-two {
    padding-top: 265px;
    padding-bottom: 175px;
    background-position: center 50px;
  }
  .tj-banner-section-two .banner-shapes {
    max-width: 150px;
    bottom: auto;
    top: 26%;
  }
}
@media (max-width: 575px) {
  .tj-banner-section-two {
    padding-top: 200px;
    padding-bottom: 125px;
    background-position: center 60px;
  }
  .tj-banner-section-two .banner-shapes {
    max-width: 120px;
    bottom: auto;
    top: 22%;
  }
}

.banner-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.banner-content-area .banner-inner {
  background: var(--tj-color-theme-bg);
  border-radius: 360px;
  max-width: 740px;
  width: 100%;
  margin-left: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 15px solid var(--tj-color-common-white);
  padding: 80px;
  min-height: 900px;
}
.banner-content-area .banner-inner .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
  border: 2px solid var(--tj-color-border-2);
  max-width: 300px;
  width: 100%;
  border-radius: 360px;
  padding: 4px 25px;
  margin-bottom: 25px;
  margin-left: 30px;
}
.banner-content-area .banner-inner .sub-title i {
  font-size: 20px;
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-theme-primary);
}
.banner-content-area .banner-inner .banner-title {
  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) {
  .banner-content-area .banner-inner .banner-title {
    text-align: center;
  }
}
.banner-content-area .banner-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 30px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .banner-content-area .banner-inner {
    max-width: 710px;
    padding: 80px;
    min-height: 850px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content-area .banner-inner {
    max-width: 580px;
    padding: 50px;
    min-height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content-area .banner-inner {
    max-width: 520px;
    padding: 40px;
    min-height: 720px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content-area {
    padding-top: 230px;
  }
  .banner-content-area .banner-inner {
    max-width: 520px;
    padding: 40px;
    min-height: 650px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-content-area .banner-inner .sub-title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-area {
    padding-top: 260px;
  }
  .banner-content-area .banner-inner {
    max-width: 500px;
    padding: 40px;
    min-height: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-content-area .banner-inner .sub-title {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .banner-content-area {
    padding-top: 280px;
  }
  .banner-content-area .banner-inner {
    max-width: 500px;
    padding: 30px;
    min-height: 550px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-content-area .banner-inner .sub-title {
    max-width: 265px;
    padding: 4px 15px;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .banner-content-area .banner-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.banner-content-two {
  max-width: 780px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.banner-content-two .banner-bg {
  max-width: 560px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.banner-content-two .banner-bg img {
  width: 100%;
}
.banner-content-two .banner-inner {
  position: relative;
  z-index: 2;
}
.banner-content-two .banner-inner .sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  max-width: 320px;
  width: 100%;
  font-size: 18px;
  letter-spacing: 0.32px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 2;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  border: 2px solid var(--tj-color-border-5);
  border-radius: 20px;
  padding: 5px 15px;
}
.banner-content-two .banner-inner .sub-title i {
  font-weight: var(--tj-fw-bold);
}
.banner-content-two .banner-inner .title {
  color: var(--tj-color-common-white);
  position: relative;
  font-size: 75px;
  max-width: 700px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  z-index: 1;
}
.banner-content-two .banner-inner .title span {
  display: block;
  border-radius: 150px;
  background: linear-gradient(55deg, rgba(241, 210, 169, 0.31) 0%, var(--tj-color-theme-primary) 19%, rgba(241, 210, 169, 0.3) 50%, var(--tj-color-theme-primary) 100%);
  margin-bottom: 5px;
}
.banner-content-two .banner-inner .title span:last-child {
  margin-bottom: 0;
}
.banner-content-two .banner-inner .banner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.banner-content-two .banner-inner .banner-wrapper .banner-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 235px;
  width: 100%;
}
.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
  position: relative;
  max-width: 95px;
  width: 100%;
  height: 95px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url(../images/shapes/banner-1.svg);
          mask-image: url(../images/shapes/banner-1.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: 2;
}
.banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2 {
  margin-left: -25px;
  z-index: 1;
}
.banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  max-width: 95px;
  width: 100%;
  height: 95px;
  font-size: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url(../images/shapes/banner-1.svg);
          mask-image: url(../images/shapes/banner-1.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  margin-left: -25px;
  z-index: -1;
}
.banner-content-two .banner-inner .banner-wrapper span {
  max-width: 160px;
  width: 100%;
  font-size: 18px;
  text-align: left;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-two .banner-inner .banner-wrapper {
    margin-top: 35px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner {
    max-width: 175px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
    max-width: 75px;
    height: 75px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
    max-width: 75px;
    height: 75px;
  }
}
@media (max-width: 575px) {
  .banner-content-two .banner-inner .banner-wrapper {
    margin-top: 15px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner {
    max-width: 140px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .img-2,
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .img-1 {
    max-width: 65px;
    height: 65px;
  }
  .banner-content-two .banner-inner .banner-wrapper .banner-inner .banner-icon {
    max-width: 65px;
    height: 65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .banner-content-two .banner-inner .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .banner-content-two .banner-inner .title {
    font-size: 55px;
    max-width: 650px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-content-two .banner-bg {
    max-width: 550px;
  }
  .banner-content-two .banner-inner .title {
    font-size: 50px;
    max-width: 630px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .banner-content-two .banner-bg {
    max-width: 450px;
  }
  .banner-content-two .banner-inner .sub-title {
    margin: 0 auto 20px;
  }
  .banner-content-two .banner-inner .title {
    font-size: 45px;
    max-width: 630px;
  }
}
@media (max-width: 575px) {
  .banner-content-two .banner-inner .sub-title {
    font-size: 14px;
    margin: 0 auto 20px;
    max-width: 235px;
  }
  .banner-content-two .banner-inner .title {
    font-size: 45px;
    max-width: 630px;
  }
  .banner-content-two .banner-inner .title span {
    font-size: 34px;
  }
  .banner-content-two .banner-inner .banner-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .banner-content-two .banner-inner .banner-wrapper span {
    font-size: 14px;
    text-align: center;
  }
}

@-webkit-keyframes bounceLeftToRight {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}

@keyframes bounceLeftToRight {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(15%);
            transform: translateX(15%);
  }
}
@-webkit-keyframes bounceTopToBottom {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@keyframes bounceTopToBottom {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
}
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
/* !END: Theme Banner CSS */
/**----------------------------------------
START: Theme Breadcrumb CSS
----------------------------------------*/
.tj-breadcrumb-area {
    padding-top: 60px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
    margin-top: 138px;
}
.tj-breadcrumb-area .breadcrumb-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*-webkit-mask-image: url(../images/shapes/breadcrumb-bg-shapes.svg);*/
          /*mask-image: url(../images/shapes/breadcrumb-bg-shapes.svg);*/
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
/*@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-breadcrumb-area {
    padding-top: 340px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-breadcrumb-area {
    padding-top: 300px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-breadcrumb-area {
    padding-top: 260px;
    padding-bottom: 100px;
  }
  .tj-breadcrumb-area .breadcrumb-bg {
    bottom: -25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-breadcrumb-area {
    padding-top: 250px;
    padding-bottom: 70px;
  }
  .tj-breadcrumb-area .breadcrumb-bg {
    bottom: -25px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-breadcrumb-area {
    padding-top: 280px;
    padding-bottom: 80px;
  }
  .tj-breadcrumb-area .breadcrumb-bg {
    bottom: -40px;
  }
}
@media (max-width: 575px) {
  .tj-breadcrumb-area {
    padding-top: 290px;
    padding-bottom: 60px;
  }
  .tj-breadcrumb-area .breadcrumb-bg {
    bottom: -40px;
  }
}
*/
.breadcrumb-content-area {
    position: relative;
    z-index: 2;
    /* max-width: 760px; */
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    /* border-radius: 105px; */
}
.breadcrumb-content-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-mask-image: url(../img/extra/breadcrumb.png);
          mask-image: url(../img/extra/breadcrumb.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: #fff;
  z-index: -1;
}
.breadcrumb-content-area .breadcrumb-heading {
    max-width: 296px;
    width: 100%;
    margin: 0 auto;
    background: -webkit-gradient(linear, right top, left top, from(rgba(241, 210, 169, 0)), color-stop(0%, var(--tj-color-theme-primary)), color-stop(50%, rgba(241, 210, 169, 0.3)), to(var(--tj-color-theme-primary)));
    padding: 12px 0;
        background: linear-gradient(-90deg, rgba(241, 210, 169, 0) 0%, #f0f0f0 0%, rgba(241, 210, 169, 0.3) 50%, #f0f1f1 100%);
}
.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
  font-size: 40px;
  color: #1c3975;
  line-height: 1;
  margin-bottom: 0;
}
.breadcrumb-content-area .breadcrumb-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  max-width: 320px;
  width: 100%;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  border: 2px solid #fefefe;
  border-radius: 20px;
  padding: 5px 15px;
}
.breadcrumb-content-area .breadcrumb-link > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #000;
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
  position: relative;
  z-index: 1;
}
.breadcrumb-content-area .breadcrumb-link > span::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -20px;
  background: #000;
}
.breadcrumb-content-area .breadcrumb-link > span:first-child::before {
  display: none;
}
.breadcrumb-content-area .breadcrumb-link > span i {
  font-weight: var(--tj-fw-bold);
}
.breadcrumb-content-area .breadcrumb-link a span {
  color: #000;
  font-size: 15px;
  font-weight: var(--tj-fw-medium);
}
.breadcrumb-content-area .breadcrumb-link a:hover span {
  color: #1c3975;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .breadcrumb-content-area {
    max-width: 600px;
  }
}
/*@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumb-content-area {
    padding: 35px 15px;
  }
  .breadcrumb-content-area .breadcrumb-heading {
    max-width: 440px;
  }
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 50px;
  }
  .breadcrumb-content-area .breadcrumb-link {
    margin: 0 auto 25px;
  }
}*/
/*@media only screen and (min-width: 576px) and (max-width: 767px) {
  .breadcrumb-content-area {
    padding: 35px 15px;
  }
  .breadcrumb-content-area .breadcrumb-heading {
    max-width: 375px;
  }
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 45px;
  }
  .breadcrumb-content-area .breadcrumb-link {
    margin: 0 auto 25px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-content-area {
    padding: 35px 15px;
  }
  .breadcrumb-content-area .breadcrumb-heading {
    max-width: 220px;
    padding: 6px 0;
  }
  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 32px;
  }
  .breadcrumb-content-area .breadcrumb-link {
    max-width: 280px;
    margin: 0 auto 15px;
  }
}*/

/* !END: Breadcrumb CSS */
/**----------------------------------------
Services CSS
----------------------------------------*/
.tj-service-section {
  position: relative;
  margin-top: -150px;
  z-index: 3;
}
.tj-service-section.service-style-one {
  margin-top: 0px;
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section.service-style-one {
    padding-bottom: 80px;
  }
}
.tj-service-section.style-inner-3 {
  padding-top: 120px;
  padding-bottom: 120px;
}
@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.style-inner-3 {
    padding-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section {
    padding-top: 30px;
    margin-top: 0px;
  }
  .tj-service-section .service-wrapper {
    border-radius: 0px;
  }
}

.tj-service-section-two {
  padding-top: 120px;
  padding-bottom: 90px;
  background: var(--tj-color-theme-bg-3);
  position: relative;
  z-index: 1;
}
.tj-service-section-two.service-page-two {
  padding-top: 20px;
  padding-bottom: 120px;
  background: var(--tj-color-common-white);
  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-service-section-two.service-page-two {
    padding-bottom: 50px;
  }
}
.tj-service-section-two .service-shapes {
  position: absolute;
  top: 12%;
  right: 10%;
  max-width: 190px;
  width: 100%;
  z-index: -1;
}
.tj-service-section-two .service-shapes img {
  width: 100%;
  -webkit-animation: bounceTopToBottom 4s infinite;
          animation: bounceTopToBottom 4s infinite;
}
.tj-service-section-two .service-shapes2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  max-width: 255px;
  width: 100%;
}
.tj-service-section-two .service-shapes2 img {
  width: 100%;
}
.tj-service-section-two .service-shapes3 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  max-width: 350px;
  width: 100%;
}
.tj-service-section-two .service-shapes3 img {
  width: 100%;
}
.tj-service-section-two .service-images {
  position: absolute;
  top: 140px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 985px;
  height: 790px;
  -webkit-mask-image: url(../images/shapes/service-1.svg);
          mask-image: url(../images/shapes/service-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}
.tj-service-section-two .services-grid-item:nth-child(1) {
  margin-top: 30px;
}
.tj-service-section-two .services-grid-item:nth-child(3), .tj-service-section-two .services-grid-item:nth-child(2) {
  margin-top: 250px;
}
.tj-service-section-two .services-grid-item:nth-child(4) {
  margin-top: -180px;
}
.tj-service-section-two .tj-heading-area {
  margin-bottom: 30px;
}
.tj-service-section-two .tj-heading-area .title {
  margin-bottom: 25px;
}
.tj-service-section-two .tj-heading-area .desc p {
  line-height: 1.8;
}
.tj-service-section-two .tj-heading-area .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-two .services-grid-item:nth-child(5), .tj-service-section-two .services-grid-item:nth-child(4), .tj-service-section-two .services-grid-item:nth-child(3), .tj-service-section-two .services-grid-item:nth-child(2), .tj-service-section-two .services-grid-item:nth-child(1) {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.tj-service-section-three {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.tj-service-section-three::before {
  position: absolute;
  content: "";
  width: 100%;
  left: 0;
  bottom: 70px;
  height: 58%;
  background: url(../images/bg/service-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.tj-service-section-three.service-style-one {
  padding-top: 0px;
  padding-bottom: 120px;
}
.tj-service-section-three.service-style-one::before {
  bottom: 17%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-service-section-three.service-style-one::before {
    bottom: 10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three.service-style-one::before {
    bottom: 5.5%;
  }
}
.tj-service-section-three .tj-heading-area {
  max-width: 580px;
  width: 100%;
  margin: 0 auto 60px;
}
.tj-service-section-three .services-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background: var(--tj-color-common-white);
  overflow: hidden;
  border-radius: 70px;
  z-index: 1;
}
.tj-service-section-three .services-wrapper .services-shapes {
  position: absolute;
  bottom: -80px;
  left: 25%;
  z-index: -1;
}
.tj-service-section-three .services-wrapper .services-shapes img {
  width: 100%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-service-section-three .services-wrapper {
    border-radius: 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-service-section-three .services-wrapper {
    border-radius: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three {
    padding-top: 80px;
  }
  .tj-service-section-three::before {
    height: 80%;
    bottom: 40px;
  }
  .tj-service-section-three .tj-heading-area {
    margin: 0 auto 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-section-three::before {
    height: 88%;
  }
}

.service-wrapper {
  position: relative;
  background-color: var(--tj-color-common-white);
  -webkit-box-shadow: 0px 0px 50px 0px rgba(31, 99, 6, 0.08);
          box-shadow: 0px 0px 50px 0px rgba(31, 99, 6, 0.08);
  border-radius: 150px;
  z-index: 1;
}
.service-wrapper .service-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.service-wrapper .service-list .service-single {
  width: 50%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  z-index: 1;
}
.service-wrapper .service-list .service-single::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--tj-color-border-3);
  z-index: -1;
}
.service-wrapper .service-list .service-single:first-child::before {
  display: none;
}
.service-wrapper .service-list .service-single:first-child .single_item {
  border-radius: 150px 0px 0px 150px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-wrapper .service-list .service-single:first-child .single_item {
    border-radius: 0px;
    border: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-wrapper .service-list .service-single:first-child {
    border-radius: 0px;
  }
}
.service-wrapper .service-list .service-single:last-child .single_item {
  border-radius: 0px 150px 150px 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-wrapper .service-list .service-single:last-child .single_item {
    border-radius: 0px;
  }
}
.service-wrapper .service-list .service-single .service_inner {
  position: absolute;
  top: -80px;
  left: 0;
  width: 110%;
  height: 138%;
  z-index: 2;
  border-radius: 200px 200px 0 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-wrapper .service-list .service-single .service_inner::before {
  position: absolute;
  content: "";
  width: 94%;
  height: 96%;
  top: 0px;
  left: 0px;
  background-color: var(--tj-color-theme-secondary);
  border-radius: 200px 200px 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-wrapper .service-list .service-single .service_inner {
    top: -60px;
    height: 130%;
  }
}
@media (max-width: 575px) {
  .service-wrapper .service-list .service-single .service_inner {
    width: 100%;
  }
  .service-wrapper .service-list .service-single .service_inner::before {
    width: 98%;
  }
}
.service-wrapper .service-list .service-single:hover::before {
  display: none;
}
.service-wrapper .service-list .service-single:hover .service_inner {
  opacity: 1;
  visibility: visible;
}
.service-wrapper .service-list .service-single:hover .single_item {
  border-radius: 0px;
  overflow: visible;
}
.service-wrapper .service-list .service-single:hover .single_item .number {
  color: var(--tj-color-grey-28);
  top: -50px;
}
.service-wrapper .service-list .service-single:hover .single_item .service-content .service-icon {
  color: var(--tj-color-theme-primary);
}
.service-wrapper .service-list .service-single:hover .single_item .service-content .service-icon i {
  color: var(--tj-color-theme-primary);
}
.service-wrapper .service-list .service-single:hover .single_item .service-content .desc {
  color: var(--tj-color-theme-primary);
}
.service-wrapper .service-list .service-single:hover + .service-single::before {
  background-color: transparent;
}
@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-wrapper .service-list .service-single {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    overflow: hidden;
    width: 45%;
  }
  .service-wrapper .service-list .service-single::before {
    display: none;
  }
  .service-wrapper .service-list .service-single .single_item .service-content .service-icon i {
    color: var(--tj-color-theme-primary);
  }
  .service-wrapper .service-list .service-single .single_item .number {
    color: var(--tj-color-grey-28);
  }
  .service-wrapper .service-list .service-single .single_item .desc {
    color: var(--tj-color-theme-primary);
  }
  .service-wrapper .service-list .service-single:hover .single_item .number {
    color: var(--tj-color-grey-28);
    top: 0px;
  }
}
@media (max-width: 575px) {
  .service-wrapper .service-list .service-single {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .service-wrapper .service-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-wrapper .service-list {
    row-gap: 20px;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
  .service-wrapper .service-list .service-single .service_inner {
    top: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 1;
    visibility: visible;
  }
  .service-wrapper .service-list .service-single .service_inner::before {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}
@media (max-width: 575px) {
  .service-wrapper .service-list {
    row-gap: 20px;
  }
  .service-wrapper .service-list .service-single .service_inner {
    top: 0;
    width: 100%;
    height: 100%;
    background-image: none;
    opacity: 1;
    visibility: visible;
  }
  .service-wrapper .service-list .service-single .service_inner::before {
    width: 100%;
    height: 100%;
    border-radius: 0px;
  }
}

.single_item {
  position: relative;
  z-index: 2;
  padding: 35px;
  text-align: center;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.single_item::after {
  position: absolute;
  content: "";
  bottom: -35px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 90px;
  width: 200px;
  border-radius: 150px 150px 0 0;
  background: rgba(11, 61, 44, 0.1);
  z-index: 2;
}
.single_item .number {
  position: absolute;
  top: -35px;
  right: 35px;
  font-size: 150px;
  color: var(--tj-color-grey-2);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  z-index: 3;
}
.single_item .service-content {
  position: relative;
  z-index: 3;
}
.single_item .service-content .service-icon {
  font-size: 60px;
  line-height: 1;
  margin-bottom: 15px;
  -webkit-transition: all 0.6s ease-out 0s;
  transition: all 0.6s ease-out 0s;
  color: var(--tj-color-text-body);
}
.single_item .service-content .service-icon i {
  color: var(--tj-color-text-body);
}
.single_item .service-content .desc {
  line-height: 1.7;
}
.single_item .service-content .desc p:last-child {
  margin-bottom: 0;
}
.single_item .service-content .read-more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  line-height: 1;
  color: var(--tj-color-theme-secondary);
  background: var(--tj-color-theme-primary);
  border-radius: 50%;
  margin-top: 30px;
  overflow: hidden;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.single_item .service-content .read-more .icon_second,
.single_item .service-content .read-more .icon_first {
  color: var(--tj-color-theme-secondary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.single_item .service-content .read-more .icon_second {
  position: absolute;
  -webkit-transform: translateX(210%);
      -ms-transform: translateX(210%);
          transform: translateX(210%);
  color: var(--tj-color-common-white);
}
.single_item .service-content .read-more:hover .icon_first {
  -webkit-transform: translateX(-210%);
      -ms-transform: translateX(-210%);
          transform: translateX(-210%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.single_item .service-content .read-more:hover .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_item .number {
    font-size: 100px;
  }
}
@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) {
  .single_item {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .single_item {
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
    width: auto;
    border: 0;
  }
  .single_item .number {
    font-size: 80px;
    top: 0px;
  }
  .single_item:nth-child(odd) {
    border-right: none;
    border-bottom: none;
  }
  .single_item:nth-child(even) {
    border-bottom: none;
  }
  .single_item:nth-child(3), .single_item:nth-child(4) {
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .single_item {
    background-color: var(--tj-color-common-white);
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 375px;
    width: 100%;
    margin: auto;
    border-bottom: 1px solid var(--tj-color-border-3);
    border-right: 0;
    z-index: auto;
  }
  .single_item .number {
    font-size: 65px;
    top: 0px;
    right: 75px;
  }
  .single_item:last-child {
    border-bottom: 0;
  }
}

.tj-service-item {
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-theme-primary);
  position: relative;
  padding: 60px 25px 0px 25px;
  border-radius: 0px 0px 150px 150px;
  overflow: hidden;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-service-item::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  bottom: 0;
  left: 0;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.tj-service-item .number {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 150px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-18);
  line-height: 1;
  z-index: -1;
}
.tj-service-item .title {
  margin-bottom: 20px;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.tj-service-item .desc {
  color: var(--tj-color-text-body);
  margin-bottom: 35px;
  line-height: 1.7;
}
.tj-service-item .desc p:last-child {
  margin-bottom: 0;
}
.tj-service-item .service-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: 110px;
  height: 110px;
  font-size: 65px;
  position: relative;
  top: 1px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-service-item .service-icon i {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-item {
    padding: 60px 15px 0px 15px;
  }
  .tj-service-item .number {
    font-size: 100px;
  }
  .tj-service-item .title {
    margin-bottom: 15px;
  }
  .tj-service-item .desc {
    margin-bottom: 30px;
  }
  .tj-service-item .service-icon {
    width: 90px;
    height: 90px;
    font-size: 50px;
  }
}
.tj-service-item .service_shapes {
  position: absolute;
  bottom: -100px;
  left: 0;
  opacity: 0.4;
  z-index: -1;
}
.tj-service-item:hover::before {
  width: 100%;
}
.tj-service-item:hover .number {
  color: rgba(238, 240, 239, 0.1);
}
.tj-service-item:hover .title {
  color: var(--tj-color-common-white);
}
.tj-service-item:hover .desc {
  color: var(--tj-color-common-white);
}
.tj-service-item:hover .service-icon {
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-common-white);
}
.tj-service-item:hover .service-icon i {
  color: var(--tj-color-common-white);
}

.service-item-two {
  max-width: 432px;
  width: 100%;
  padding: 35px 50px 0px 60px;
  background: transparent;
  border: 1px solid var(--tj-color-theme-primary);
  position: relative;
  z-index: 2;
}
.service-item-two::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--tj-color-theme-secondary);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.service-item-two:nth-child(2), .service-item-two:nth-child(1) {
  border-right: none;
  border-bottom: none;
}
.service-item-two:nth-child(1) {
  border-radius: 70px 0px 0px 0px;
}
.service-item-two:nth-child(1)::before {
  border-radius: 70px 0px 0px 0px;
}
.service-item-two:nth-child(3) {
  border-bottom: none;
  border-radius: 0px 70px 0px 0px;
}
.service-item-two:nth-child(3)::before {
  border-radius: 0px 70px 0px 0px;
}
.service-item-two:nth-child(4) {
  border-right: none;
  border-radius: 0px 0px 0px 70px;
}
.service-item-two:nth-child(4)::before {
  border-radius: 0px 0px 0px 70px;
}
.service-item-two:nth-child(6) {
  border-radius: 0px 0px 70px 0px;
}
.service-item-two:nth-child(6)::before {
  border-radius: 0px 0px 70px 0px;
}
.service-item-two:nth-child(5), .service-item-two:nth-child(4) {
  border-right: none;
}
.service-item-two .service-images {
  max-width: 200px;
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.service-item-two .service-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 150px;
}
.service-item-two .service-images img {
  height: 100px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px;
}
.service-item-two .title {
  margin-bottom: 20px;
}
.service-item-two .title a {
  color: var(--tj-color-theme-primary);
}
.service-item-two .desc {
  color: var(--tj-color-text-body);
  margin-bottom: 30px;
  line-height: 1.7;
}
.service-item-two .desc p:last-child {
  margin-bottom: 0;
}
.service-item-two .services-info {
  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;
}
.service-item-two .services-info .service-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: 110px;
  height: 100px;
  line-height: 1;
  font-size: 65px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg-3);
  border-radius: 150px 150px 0px 0px;
}
.service-item-two .services-info .service-arrow .service-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  line-height: 1;
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.service-item-two .services-info .service-arrow .service-link .icon_second,
.service-item-two .services-info .service-arrow .service-link .icon_first {
  color: var(--tj-color-theme-primary);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.service-item-two .services-info .service-arrow .service-link .icon_second {
  position: absolute;
  -webkit-transform: translateX(180%);
      -ms-transform: translateX(180%);
          transform: translateX(180%);
}
.service-item-two .services-info .service-arrow .service-link:hover .icon_first {
  -webkit-transform: translateX(-180%);
      -ms-transform: translateX(-180%);
          transform: translateX(-180%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.service-item-two .services-info .service-arrow .service-link:hover .icon_second {
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.service-item-two:hover::before {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.service-item-two:hover .service-images::before {
  background: rgba(255, 255, 255, 0.1);
}
.service-item-two:hover .desc {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-item-two {
    max-width: 372px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-item-two {
    max-width: 312px;
    padding: 35px 15px 0px 15px;
  }
  .service-item-two:nth-child(1) {
    border-radius: 20px 0px 0px 0px;
  }
  .service-item-two:nth-child(1)::before {
    border-radius: 20px 0px 0px 0px;
  }
  .service-item-two:nth-child(3) {
    border-radius: 0px 20px 0px 0px;
  }
  .service-item-two:nth-child(3)::before {
    border-radius: 0px 20px 0px 0px;
  }
  .service-item-two:nth-child(4) {
    border-radius: 0px 0px 0px 20px;
  }
  .service-item-two:nth-child(4)::before {
    border-radius: 0px 0px 20px 0px;
  }
  .service-item-two:nth-child(6) {
    border-radius: 0px 0px 20px 0px;
  }
  .service-item-two:nth-child(6)::before {
    border-radius: 0px 0px 20px 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .service-item-two {
    max-width: 348px;
    padding: 35px 15px 0px 15px;
  }
  .service-item-two:nth-child(1) {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(1)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(2) {
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(3) {
    border-radius: 0px 0px 0px 0px;
    border-right: none;
  }
  .service-item-two:nth-child(3)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(4) {
    border-radius: 0px 0px 0px 0px;
    border-bottom: none;
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(4)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(6) {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(6)::before {
    border-radius: 0px 0px 0px 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-item-two {
    padding: 35px 15px 0px 15px;
    max-width: 100%;
  }
  .service-item-two:nth-child(1) {
    border-radius: 0px 0px 0px 0px;
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(1)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(2) {
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(3) {
    border-radius: 0px 0px 0px 0px;
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(3)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(4) {
    border-radius: 0px 0px 0px 0px;
    border-bottom: none;
    border-right: 1px solid var(--tj-color-theme-primary);
  }
  .service-item-two:nth-child(4)::before {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(5) {
    border-right: 1px solid var(--tj-color-theme-primary);
    border-bottom: none;
  }
  .service-item-two:nth-child(6) {
    border-radius: 0px 0px 0px 0px;
  }
  .service-item-two:nth-child(6)::before {
    border-radius: 0px 0px 0px 0px;
  }
}

/* !END: Services CSS */
/**----------------------------------------
START: Service CSS
----------------------------------------*/
.tj-service-details {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-details {
    padding-bottom: 80px;
  }
}

.tj-main-sidebar {
  padding-left: 45px;
}
@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) {
  .tj-main-sidebar {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-main-sidebar {
    margin-top: 60px;
  }
}

.tj-service-widget {
  margin-bottom: 40px;
}
.tj-service-widget:last-child {
  margin-bottom: 0;
}
.tj-service-widget .side-title {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-service-widget .side-title {
    margin-bottom: 20px;
  }
}

.service-details-item .service_content {
  margin-bottom: 45px;
}
.service-details-item .service_content .details-image {
  margin-bottom: 30px;
}
.service-details-item .service_content .details-image img {
  width: 100%;
  border-radius: 25px;
}
.service-details-item .service_content .title {
  margin-bottom: 20px;
}
.service-details-item .service_content .desc {
  line-height: 1.7;
  margin-bottom: 25px;
}
.service-details-item .service_content .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-details-item .service-feture {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .service-details-item .service-feture .service-images {
    max-width: 100%;
  }
  .service-details-item .service-feture .service-images img {
    width: 100%;
  }
}

.service-tabs {
  margin-bottom: 30px;
}
.service-tabs .nav {
  gap: 15px;
  margin-bottom: 30px;
}
.service-tabs .nav .nav-item .service-tab {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body);
  border-radius: 0;
  background-color: var(--tj-color-grey-13);
  border: 1px solid var(--tj-color-border-6);
  padding: 15px 40px;
  border-radius: 10px;
}
.service-tabs .nav .nav-item .service-tab.active {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.service-tabs .desc p {
  line-height: 1.8;
}
.service-tabs .desc p:last-child {
  margin-bottom: 0;
}
.service-tabs .tabs-list {
  margin-top: 25px;
}
.service-tabs .tabs-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-tabs .tabs-list ul li {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding-left: 25px;
}
.service-tabs .tabs-list ul li:last-child {
  margin-bottom: 0;
}
.service-tabs .tabs-list ul li::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 8px;
  left: 0;
  background: rgba(185, 154, 128, 0.5);
  border-radius: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-tabs .nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .service-tabs .nav .nav-item .service-tab {
    padding: 13px 25px;
  }
}

.service-feture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  position: relative;
  z-index: 2;
}
.service-feture .service-images {
  max-width: 275px;
  width: 100%;
}
.service-feture .service-images img {
  border-radius: 20px;
}
.service-feture .feature-content .title {
  margin-bottom: 20px;
}
.service-feture .feature-content .desc {
  line-height: 1.7;
}
.service-feture .feature-content .desc p:last-child {
  margin-bottom: 0;
}

.service-feture-two {
  background: var(--tj-color-theme-primary);
  border-radius: 15px;
  padding: 50px 25px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}
.service-feture-two::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(11, 61, 44, 0.9);
  border-radius: 15px;
  z-index: -1;
}
.service-feture-two .title {
  color: var(--tj-color-common-white);
  font-size: 36px;
  margin-bottom: 30px;
}
.service-feture-two .service-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: 85px;
  height: 85px;
  line-height: 1;
  font-size: 40px;
  border-radius: 10px;
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-theme-primary);
  position: relative;
  z-index: 1;
}
.service-feture-two .service-icon::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  top: 50%;
  left: -65px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}
.service-feture-two .service-icon::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  top: 50%;
  right: -65px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
}
.service-feture-two .service-content {
  margin-top: 35px;
}
.service-feture-two .service-content span {
  display: block;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.service-feture-two .service-content .link {
  font-size: 20px;
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
}
.service-feture-two .service-content .link:hover {
  color: var(--tj-color-theme-secondary);
}
@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-feture-two {
    padding: 35px 15px;
  }
  .service-feture-two .title {
    font-size: 30px;
  }
}

.service_catagory {
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--tj-color-border-7);
}
.service_catagory ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service_catagory ul li {
  margin-bottom: 20px;
}
.service_catagory ul li:last-child {
  margin-bottom: 0;
}
.service_catagory ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  padding: 17px 30px;
  background: var(--tj-color-grey-13);
  border-radius: 10px;
}
.service_catagory ul li a i {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
}
.service_catagory ul li a.active, .service_catagory ul li a:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.service_catagory ul li a.active i, .service_catagory ul li a:hover i {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service_catagory {
    padding: 30px 15px;
  }
  .service_catagory ul li a {
    padding: 17px 15px;
  }
}

.service_download {
  border-radius: 15px;
  padding: 30px;
  border: 2px solid var(--tj-color-border-7);
}
.service_download ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.service_download ul li {
  margin-bottom: 20px;
}
.service_download ul li:last-child {
  margin-bottom: 0;
}
.service_download ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  padding: 17px 30px;
  background: var(--tj-color-grey-13);
  border-radius: 10px;
}
.service_download ul li a i {
  color: var(--tj-color-theme-primary);
}
.service_download ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.service_download ul li a:hover i {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service_download {
    padding: 30px 15px;
  }
  .service_download ul li a {
    padding: 17px 15px;
  }
}

.check-list {
  margin-top: 35px;
}
.check-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.check-list ul li:last-child {
  margin-bottom: 0;
}
.check-list ul li i {
  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;
  max-width: 40px;
  width: 100%;
  height: 40px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-common-white);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}

.check-list-one {
  margin-top: 25px;
}
.check-list-one ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-one ul li {
  position: relative;
  margin-bottom: 15px;
  padding-left: 20px;
  z-index: 1;
}
.check-list-one ul li:last-child {
  margin-bottom: 0;
}
.check-list-one ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tj-color-grey-12);
}

/* !END: Service CSS */
/**----------------------------------------
About CSS
----------------------------------------*/
.tj-about-section {
  padding-top: 60x;
  padding-bottom: 60x;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
/*@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-about-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}*/

.tj-about-section-two {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}
.tj-about-section-two .about-shapes {
  position: absolute;
  left: 0;
  top: -45%;
  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-about-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.tj-about-section-three {
  position: relative;
  z-index: 1;
}
.tj-about-section-three .about-shapes {
  position: absolute;
  bottom: -45%;
  right: -35px;
  max-width: 425px;
  width: 100%;
  z-index: -1;
}
.tj-about-section-three .about-shapes img {
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-about-section-three .about-shapes {
    max-width: 300px;
    bottom: -14%;
  }
}
@media (max-width: 575px) {
  .tj-about-section-three .about-shapes {
    max-width: 165px;
    bottom: -10%;
  }
}
.tj-about-section-three .about-right-content {
  padding-left: 0px;
}
.tj-about-section-three .about-right-content .feature_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
}
.tj-about-section-three .about-right-content .feature_wrapper .feature-content .feature-header .title {
  line-height: 1.7;
}
@media (max-width: 575px) {
  .tj-about-section-three .about-right-content .feature_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-about-section-three .about-wrapper-three .image-1 {
    height: 465px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-about-section-three .about-wrapper-three .image-1 {
    height: 375px;
  }
  .tj-about-section-three .about-wrapper-three .image-2 {
    height: 275px;
  }
}
@media (max-width: 575px) {
  .tj-about-section-three .about-wrapper-three .image-1 {
    height: 240px;
  }
  .tj-about-section-three .about-wrapper-three .image-2 {
    height: 175px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-about-section-three {
    padding-top: 30px;
  }
  .tj-about-section-three .feature-item-one {
    margin-top: 35px;
  }
  .tj-about-section-three .about-wrapper-three {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .tj-about-section-three {
    padding-top: 30px;
  }
  .tj-about-section-three .feature-item-one {
    margin-top: 35px;
  }
  .tj-about-section-three .about-wrapper-three {
    margin-top: 100px;
  }
}

.about-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.about-wrapper .fun-fact-item {
  position: absolute;
  bottom: 15px;
  right: 15px;
  text-align: center;
  z-index: 2;
}
.about-wrapper .about-img {
  position: relative;
  z-index: 1;
  max-width: 640px;
  width: 100%;
}
/*.about-wrapper .about-img::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  background-color: var(--tj-color-grey-4);
  -webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 65%, 65% 100%, 31% 100%, 0 100%, 0 30%);
          clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 65%, 65% 100%, 31% 100%, 0 100%, 0 30%);
}*/
.about-wrapper .about-img img {
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper .about-img::before {
    -webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
            clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
  }
  .about-wrapper .about-img::after {
    width: 36%;
    height: 30%;
  }
}
/*@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-wrapper {
    margin-top: 50px;
  }
  .about-wrapper .about-img {
    max-width: 100%;
  }
}*/
@media (max-width: 575px) {
  .about-wrapper .about-img::before {
    -webkit-clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
            clip-path: polygon(26% 0, 100% 0, 100% 25%, 100% 60%, 60% 100%, 31% 100%, 0 100%, 0 30%);
  }
  .about-wrapper .about-img::after {
    width: 38%;
    height: 30%;
  }
  /*.about-wrapper .about-img img {
    max-width: 300px;
    width: 100%;
  }*/
}

.about-wrapper-two {
  max-width: 660px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.about-wrapper-two .about-images {
  position: relative;
  max-width: 660px;
  width: 100%;
  height: 720px;
  -webkit-mask-image: url(../images/shapes/about-2.svg);
          mask-image: url(../images/shapes/about-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  z-index: 1;
}
.about-wrapper-two .about-images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrapper-two .about-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 660px;
  width: 100%;
  height: 720px;
  -webkit-mask-image: url(../images/shapes/about-5.svg);
          mask-image: url(../images/shapes/about-5.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  background: var(--tj-color-theme-secondary);
  z-index: 1;
}
.about-wrapper-two .about-box {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  width: 240px;
  height: 240px;
  line-height: 1;
  position: absolute;
  -webkit-box-shadow: 0px 3px 20px 0px rgba(11, 61, 44, 0.1);
          box-shadow: 0px 3px 20px 0px rgba(11, 61, 44, 0.1);
  border-radius: 50%;
  top: 0;
  right: 85px;
  z-index: 1;
}
.about-wrapper-two .about-box::before {
  position: absolute;
  content: "";
  width: 260px;
  height: 260px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-mask-image: url(../images/about/about-4.png);
          mask-image: url(../images/about/about-4.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background-size: cover;
  background-color: var(--tj-color-common-white);
  -webkit-box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
          box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
  z-index: -1;
}
.about-wrapper-two .about-box i {
  font-size: 65px;
  margin-bottom: 20px;
}
.about-wrapper-two .about-box .title {
  font-size: 18px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-wrapper-two .about-box {
    width: 160px;
    height: 160px;
    top: 30px;
    right: 20px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-two .about-box {
    width: 185px;
    height: 185px;
    top: -10px;
    right: 0px;
  }
  .about-wrapper-two .about-box::before {
    width: 185px;
    height: 185px;
  }
  .about-wrapper-two .about-box i {
    font-size: 40px;
    margin-bottom: 15px;
  }
  .about-wrapper-two .about-box .title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-wrapper-two .about-images {
    height: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-wrapper-two .about-images {
    height: 630px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-wrapper-two {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-wrapper-two .about-images,
  .about-wrapper-two .about-inner {
    height: 570px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-two .about-images,
  .about-wrapper-two .about-inner {
    height: 390px;
  }
}

.about-wrapper-three {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  gap: 20px;
  z-index: 1;
}
.about-wrapper-three .about-experience {
  position: absolute;
  top: 0;
  right: 0;
}
.about-wrapper-three .image-1 {
  position: relative;
  z-index: 1;
  max-width: 385px;
  width: 100%;
  height: 550px;
  -webkit-mask-image: url(../images/shapes/about-6.svg);
          mask-image: url(../images/shapes/about-6.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.about-wrapper-three .image-1 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-wrapper-three .image-2 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  width: 100%;
  height: 330px;
  -webkit-mask-image: url(../images/shapes/about-7.svg);
          mask-image: url(../images/shapes/about-7.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
}
.about-wrapper-three .image-2 img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-wrapper-three .about-experience {
    top: -25px;
    padding: 15px 70px 20px 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-wrapper-three .about-experience {
    top: -35px;
    padding: 15px 20px 20px 30px;
  }
  .about-wrapper-three .about-experience .tj-count {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .about-wrapper-three .about-experience {
    top: -55px;
    padding: 15px 15px 20px 15px;
    max-width: 220px;
  }
  .about-wrapper-three .about-experience .tj-count {
    font-size: 25px;
  }
}

.about-experience {
  position: relative;
  max-width: 300px;
  width: 100%;
  background: var(--tj-color-theme-primary);
  padding: 25px 70px 30px 40px;
  border-radius: 150px 0px 0px 150px;
  overflow: hidden;
  z-index: 2;
}
.about-experience .tj-count {
  position: relative;
  font-size: 55px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-secondary);
  line-height: 1;
  z-index: 2;
}
.about-experience .tj-count span {
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-secondary);
}
.about-experience .sub-title {
  position: relative;
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  z-index: 2;
}
.about-experience .about-icon {
  position: absolute;
  top: -10px;
  right: 0px;
  font-size: 110px;
  line-height: 1;
  z-index: 1;
  color: rgba(255, 255, 255, 0.1);
}

.fun-fact-item {
  position: relative;
  max-width: 120px;
  width: 100%;
  z-index: 1;
}
.fun-fact-item::after {
  position: absolute;
  content: "";
  right: -20px;
  bottom: -20px;
  width: 210px;
  height: 210px;
  background-color: var(--tj-color-theme-secondary);
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
  z-index: -1;
}
.fun-fact-item .client {
  max-width: 65px;
  width: 100%;
  margin: 0px auto 6px;
}
.fun-fact-item .tj-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 35px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.fun-fact-item .tj-count span {
  font-size: 35px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .fun-fact-item::after {
    width: 185px;
    height: 195px;
  }
  .fun-fact-item .client {
    max-width: 100%;
    text-align: end;
  }
  .fun-fact-item .tj-count {
    font-size: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .fun-fact-item .tj-count span {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .fun-fact-item::after {
    width: 230px;
    height: 210px;
  }
  .fun-fact-item .client {
    max-width: 100%;
    text-align: end;
  }
  .fun-fact-item .tj-count {
    font-size: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .fun-fact-item .tj-count span {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fun-fact-item::after {
    width: 175px;
    height: 195px;
  }
  .fun-fact-item .client {
    max-width: 100%;
    text-align: end;
  }
  .fun-fact-item .tj-count {
    font-size: 30px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .fun-fact-item .tj-count span {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .fun-fact-item {
    bottom: 10px;
  }
  .fun-fact-item::after {
    width: 160px;
    height: 160px;
  }
  .fun-fact-item .client {
    max-width: 100%;
    text-align: end;
  }
  .fun-fact-item .tj-count {
    font-size: 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .fun-fact-item .tj-count span {
    font-size: 20px;
  }
}

/*.about-right-content {
  padding-left: 50px;
}*/
.about-right-content .tj-heading-area .desc {
  max-width: 500px;
  width: 100%;
  line-height: 1.8;
}
.about-right-content .tj-heading-area .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-right-content {
    padding-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-right-content {
    padding-left: 0;
  }
  .about-right-content .tj-heading-area .desc {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .about-right-content {
    padding-left: 0;
  }
  .about-right-content .tj-heading-area .desc {
    margin-top: 20px;
  }
}

.feature-item-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 35px;
  gap: 30px;
}
.feature-item-one .feature-button {
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .feature-item-one .feature-wrapper-one {
    max-width: 250px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-item-one .feature-wrapper-one {
    max-width: 215px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .feature-item-one {
    margin-top: 40px;
  }
  .feature-item-one .feature-content-one {
    margin-bottom: 25px;
  }
  .feature-item-one .tj-primary-btn {
    padding: 23px 25px;
  }
}
@media (max-width: 575px) {
  .feature-item-one {
    gap: 15px;
    margin-top: 40px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .feature-item-one .feature-content-one {
    margin-bottom: 25px;
  }
  .feature-item-one .tj-primary-btn {
    padding: 23px 30px;
  }
  .feature-item-one .feature-wrapper-one {
    max-width: 100%;
  }
  .feature-item-one .feature-button {
    margin-top: 25px;
  }
}

.feature-wrapper-one {
  max-width: 285px;
  width: 100%;
  -webkit-clip-path: polygon(40% 0, 100% 0, 100% 40%, 100% 60%, 65% 100%, 45% 100%, 0 100%, 0 40%);
          clip-path: polygon(40% 0, 100% 0, 100% 40%, 100% 60%, 65% 100%, 45% 100%, 0 100%, 0 40%);
}
.feature-wrapper-one img {
  width: 100%;
}

.feature-content-one {
  max-width: 260px;
  width: 100%;
  margin-bottom: 35px;
}
.feature-content-one .feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.feature-content-one .feature-header i {
  font-size: 25px;
  color: var(--tj-color-theme-primary);
}
.feature-content-one .feature-header .title {
  font-size: 18px;
  margin-bottom: 0;
}
.feature-content-one .desc p:last-child {
  margin-bottom: 0;
}

.feature-content-two {
  max-width: 210px;
  width: 100%;
}
.feature-content-two .feature-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.feature-content-two .feature-header i {
  font-size: 25px;
  color: var(--tj-color-theme-primary);
}
.feature-content-two .desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .feature-content-two {
    max-width: 100%;
  }
}

.Base {
  border-style: solid;
  border-width: 1px;
  border-color: rgb(11, 61, 44);
  background-color: rgb(255, 255, 255);
  opacity: 0.2;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
  position: absolute;
  left: 300px;
  top: 9228px;
  width: 98px;
  height: 208px;
  z-index: 211;
}

/* !END: About CSS */
/**----------------------------------------
Why Choose CSS
----------------------------------------*/
.tj-choose-section {
  position: relative;
  padding-bottom: 120px;
  z-index: 2;
}
.tj-choose-section::before {
  position: absolute;
  content: "";
  top: -100px;
  right: 0;
  width: 58%;
  height: 90%;
  background-image: url(../images/bg/choose-bg.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  -webkit-clip-path: polygon(20% 0, 100% 0, 100% 20%, 100% 72%, 76% 100%, 31% 100%, 0 100%, 0 30%);
          clip-path: polygon(20% 0, 100% 0, 100% 20%, 100% 72%, 76% 100%, 31% 100%, 0 100%, 0 30%);
  z-index: -1;
}
.tj-choose-section .tj-heading-area .sub-title {
  color: var(--tj-color-theme-secondary);
}
.tj-choose-section .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-choose-section .tj-heading-area .desc {
  color: var(--tj-color-text-body-2);
  line-height: 1.7;
}
.tj-choose-section .tj-heading-area .desc p:last-child {
  margin-bottom: 0;
}
.tj-choose-section .tj-heading-area .choose-button {
  margin-top: 40px;
}
.tj-choose-section .choose-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.tj-choose-section .choose-wrapper .tj-button:before {
  background: var(--tj-color-common-white);
}
.tj-choose-section .choose-wrapper .tj-button:after {
  background: var(--tj-color-theme-secondary);
}
.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span {
  color: var(--tj-color-theme-primary);
}
.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span:first-child {
  color: var(--tj-color-theme-primary);
}
.tj-choose-section .choose-wrapper .tj-button .tj-primary-btn span:last-child {
  color: var(--tj-color-theme-primary);
}
.tj-choose-section .choose-wrapper .tj-button:hover {
  background: var(--tj-color-common-white);
}
.tj-choose-section .choose-shapes {
  position: absolute;
  top: -283px;
  right: 0;
  max-width: 260px;
  width: 100%;
  z-index: -1;
}
.tj-choose-section .choose-shapes img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-choose-section .choose-shapes {
    max-width: 150px;
    top: -205px;
  }
}
@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-choose-section .choose-shapes {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-choose-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-choose-section::before {
    top: 0px;
    width: 100%;
    height: 100%;
    -webkit-clip-path: unset;
            clip-path: unset;
  }
  .tj-choose-section .tj-heading-area .desc {
    margin-top: 25px;
  }
  .tj-choose-section .tj-heading-area .choose-button {
    margin-top: 35px;
  }
}

.choose-box {
  background-color: var(--tj-color-theme-primary);
  padding: 65px 60px;
  max-width: 630px;
  width: 100%;
  font-size: 16px;
  color: var(--tj-color-grey-3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .choose-box {
    padding: 35px 15px;
    max-width: 510px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-box {
    padding: 35px 15px;
    max-width: 410px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-box {
    max-width: 100%;
    padding: 35px 15px;
  }
}

.choose-item {
  -webkit-box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
          box-shadow: 0px 0px 35px 0px rgba(31, 99, 6, 0.07);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 70px 50px 40px;
  max-width: 630px;
  width: 100%;
  position: relative;
}
.choose-item::before {
  background-color: var(--tj-color-common-white);
  -webkit-clip-path: polygon(85% 0, 100% 40%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
          clip-path: polygon(85% 0, 100% 40%, 100% 60%, 100% 100%, 0 100%, 0% 60%, 0 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.choose-item .choose-icon {
  position: relative;
  background-color: var(--tj-color-theme-bg);
  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;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-size: 60px;
  width: 150px;
  height: 170px;
  color: var(--tj-color-theme-primary);
  z-index: 2;
}
.choose-item .choose-icon::before {
  background-color: var(--tj-color-theme-secondary);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  width: 120px;
  height: 140px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  z-index: -1;
}
.choose-item .choose-text {
  position: relative;
  width: calc(100% - 200px);
  z-index: 2;
}
.choose-item .choose-text .title {
  margin-bottom: 20px;
}
.choose-item .choose-text .desc {
  line-height: 1.7;
}
.choose-item .choose-text .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .choose-item {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    padding: 30px 40px 30px 20px;
    max-width: 545px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-item {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 15px 30px 15px;
    max-width: 455px;
  }
  .choose-item .choose-icon {
    font-size: 45px;
    width: 90px;
    height: 110px;
  }
  .choose-item .choose-icon::before {
    width: 75px;
    height: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .choose-item {
    max-width: 100%;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    padding: 30px 25px 30px 15px;
  }
  .choose-item .choose-icon {
    font-size: 45px;
    width: 120px;
    height: 140px;
  }
  .choose-item .choose-icon::before {
    width: 95px;
    height: 115px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .choose-item .choose-text {
    width: calc(100% - 160px);
  }
}
@media (max-width: 575px) {
  .choose-item {
    max-width: 100%;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
    padding: 30px 25px 30px 15px;
  }
  .choose-item::before {
    -webkit-clip-path: polygon(75% 0, 100% 40%, 100% 37%, 100% 100%, 0 100%, 0% 60%, 0 0);
            clip-path: polygon(75% 0, 100% 40%, 100% 37%, 100% 100%, 0 100%, 0% 60%, 0 0);
  }
  .choose-item .choose-icon {
    font-size: 45px;
    width: 95px;
    height: 115px;
    margin-bottom: 20px;
  }
  .choose-item .choose-icon::before {
    width: 75px;
    height: 95px;
  }
  .choose-item .choose-text {
    width: 100%;
  }
  .choose-item .choose-text .title {
    margin-bottom: 15px;
  }
}

/* !END: Why Choose CSS */
/**----------------------------------------
Team CSS
----------------------------------------*/
.tj-team-section {
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}
.tj-team-section .sec-shapes {
  position: absolute;
  bottom: 150px;
  left: 0;
  z-index: -1;
  max-width: 300px;
  width: 100%;
}
.tj-team-section .sec-shapes img {
  width: 100%;
}
.tj-team-section .tj-heading-area {
  /*max-width: 520px;*/
  width: 100%;
  /*margin: 0 auto 60px;*/
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-team-section .sec-shapes {
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-team-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .tj-team-section .tj-heading-area {
    margin: 0 auto 40px;
  }
}

.tj-team-section-two {
  padding-top: 120px;
  padding-bottom: 200px;
}
.tj-team-section-two .tj-heading-area {
  margin-bottom: 30px;
}
.tj-team-section-two .tj-heading-area .team-button {
  margin-top: 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section-two {
    padding-bottom: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-team-section-two {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .tj-team-section-two .tj-heading-area .team-button {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .tj-team-section-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-team-section-two .tj-heading-area .team-button {
    margin-top: 20px;
  }
  .tj-team-section-two .tj-button {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.tj-team-section-three {
  padding-top: 120px;
  padding-bottom: 50px;
}
.tj-team-section-three.tj-team-page {
  padding-top: 0px;
  padding-bottom: 120px;
}
.tj-team-section-three.tj-team-page .team-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
  max-width: 400px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
    max-width: 350px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
    max-width: 295px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-team-section-three.tj-team-page {
    padding-bottom: 80px;
  }
  .tj-team-section-three.tj-team-page .team-wrapper .team-style-3 {
    max-width: 335px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-team-section-three.tj-team-page {
    padding-bottom: 80px;
  }
}
.tj-team-section-three.team-page-two {
  padding-top: 170px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-team-section-three.team-page-two {
    padding-top: 30px;
  }
}
.tj-team-section-three .tj-heading-area {
  max-width: 560px;
  width: 100%;
  margin: 0 auto 60px;
}
.tj-team-section-three .team-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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-team-section-three {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-team-section-three .team-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tj-team-section-three .tj-heading-area {
    margin: 0 auto 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-team-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-team-section-three .team-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .tj-team-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-team-section-three .team-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.team-item {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border: 2px solid #c2c2c2;
  background: #fff;
}
.team-item .team-box {
  position: relative;
  z-index: 2;
}
.team-item .team-box .team-images {
  position: relative;
  z-index: 1;
}
.team-item .team-box .team-images img {
  width: 100%;
}
.team-item .team-box .team-images::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(11, 61, 44)), color-stop(74%, rgba(11, 61, 44, 0.01)));
  background-image: linear-gradient(0deg, rgb(80 144 186) 0%, rgba(11, 61, 44, 0.01) 74%);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  z-index: 2;
}
.team-item .team-box .team-social {
  position: absolute;
  bottom: 0;
  right: 20px;
  z-index: 2;
}
.team-item .team-box .team-social > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-right: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-item .team-box .team-social > ul > li {
  position: relative;
  padding-left: 20px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  cursor: pointer;
}
.team-item .team-box .team-social > ul > li > i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 62px;
  line-height: 1;
  font-size: 26px;
  color: #142f74;
  text-align: center;
  border-radius: 30px 30px 0px 0px;
  background-color: var(--tj-color-common-white);
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-item .team-box .team-social > ul > li ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  position: absolute;
  right: 100%;
  bottom: 10px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-item .team-box .team-social > ul > li ul li {
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-item .team-box .team-social > ul > li ul li a {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
    color: var(--tj-color-common-white);
}
.team-item .team-auother {
    padding-top: 16px;
    padding-bottom: 8px;
    border-top: 0;
    position: relative;
    text-align: center;
    /*border: 2px solid #c2c2c2;*/
    border-top: none;
}
.team-item .team-auother::before {
  background-color: var(--tj-color-common-white);
  position: absolute;
  bottom: 4px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  /*height: 260px;*/
  content: "";
  z-index: 1;
  /*border-radius: 0 0 150px 150px;*/
  /*border: 1px solid var(--tj-color-border-3);*/
}
.team-item .team-auother::after {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  height: 260px;
  content: "";
  z-index: -1;
  /*border-radius: 0 0 150px 150px;*/
  background: transparent;
}
.team-item .team-auother .auother-name {
  position: relative;
  margin-bottom: 8px;
  z-index: 2;
}
.team-item .team-auother .auother-name a:hover {
  color: #142f74;
}
.team-item .team-auother .sub-title {
  display: block;
  position: relative;
  font-weight: var(--tj-fw-medium);
  z-index: 2;
}
.team-item:hover .team-box .team-social > ul > li > i {
  background-color: #0070bc;
  color: #fff;
}
.team-item:hover .team-box .team-social > ul > li ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.team-item:hover .team-images::before {
  height: 100%;
}
.team-item:hover .team-auother::after {
  background: #e5f4ff;
  /*bottom: -6px;*/
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-item .team-box .team-social > ul > li {
    padding-left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item .team-box .team-social {
    right: 15px;
  }
  .team-item .team-box .team-social > ul > li ul {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
    margin-right: 15px;
    -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
            transform: scaleX(0);
  }
}

.join-team {
  position: relative;
  height: 515px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 30px;
}
.join-team::before {
  background-color: var(--tj-color-theme-secondary);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.9;
  z-index: 1;
}
.join-team .team-content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  padding: 30px;
}
.join-team .team-content .title {
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .join-team {
    height: 460px;
  }
  .join-team .team-content {
    padding: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .join-team {
    height: 400px;
  }
  .join-team .team-content {
    padding: 15px;
  }
  .join-team .team-content .title {
    font-size: 24px;
  }
}
.join-team .team-button {
  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;
  margin-top: 40px;
}
.join-team .tj-button {
  background: var(--tj-color-common-white);
}
.join-team .tj-button:before {
  background: var(--tj-color-common-white);
}
.join-team .tj-button:after {
  background: var(--tj-color-theme-primary);
}
.join-team .tj-button .tj-primary-btn span {
  color: var(--tj-color-common-white);
}
.join-team .tj-button .tj-primary-btn span:first-child {
  color: var(--tj-color-theme-primary);
}
.join-team .tj-button .tj-primary-btn span:last-child {
  color: var(--tj-color-common-white);
}
.join-team .tj-button:hover {
  background: var(--tj-color-common-white);
}

.team-style-2 {
  max-width: 315px;
  width: 100%;
  margin-bottom: 40px;
}
.team-style-2 .team-images {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 365px;
  -webkit-mask-image: url(../images/shapes/team-shapes.svg);
          mask-image: url(../images/shapes/team-shapes.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  z-index: -1;
}
.team-style-2 .team-images img {
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.team-style-2 .team-content {
  text-align: end;
  margin-top: -90px;
  margin-right: 6px;
}
.team-style-2 .team-content .team-share {
  margin-bottom: 20px;
}
.team-style-2 .team-content .team-share .team-social {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.team-style-2 .team-content .team-share .team-social li {
  position: relative;
  list-style-type: none;
  display: inline-block;
  z-index: 3;
}
.team-style-2 .team-content .team-share .team-social li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--tj-color-theme-secondary);
  color: var(--tj-color-theme-primary);
  font-size: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 0px 50px 50px;
  cursor: pointer;
}
.team-style-2 .team-content .team-share .team-social li .team-social-icon {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: -1;
  border-radius: 0px 0px 50px 50px;
}
.team-style-2 .team-content .team-share .team-social li .team-social-icon 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: 56px;
  height: 56px;
  font-size: 20px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-common-white);
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.team-style-2 .team-content .team-share .team-social li .team-social-icon li a i {
  width: 22px;
  height: 22px;
  line-height: 20px;
  display: inline-block;
  text-align: center;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-common-white);
}
.team-style-2 .team-content .team-share .team-social li .team-social-icon li a:hover i {
  color: var(--tj-color-theme-secondary);
}
.team-style-2 .team-content .team-share .team-social li .team-social-icon li:nth-child(1) a {
  border-radius: 50px 50px 0px 0px;
}
.team-style-2 .team-content .team-text .sub-title {
  display: block;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.team-style-2 .team-content .team-text .title {
  margin-bottom: 0;
}
.team-style-2:hover .team-content .team-share .team-social li .team-social-icon {
  opacity: 1;
  visibility: visible;
  bottom: 55px;
  border-radius: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-2 .team-content {
    margin-top: -105px;
    margin-right: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-2 .team-content {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .team-style-2 .team-images {
    height: 300px;
  }
  .team-style-2 .team-content {
    text-align: end;
    margin-top: -75px;
    margin-right: 0px;
  }
  .team-style-2 .team-content .team-share .team-social li i {
    width: 50px;
    height: 50px;
  }
  .team-style-2 .team-content .team-share .team-social li .team-social-icon li a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  .team-style-2 .team-content .team-share .team-social li:hover .team-social-icon {
    bottom: 50px;
  }
}
@media (max-width: 575px) {
  .team-style-2 {
    margin: 0 auto 30px;
  }
  .team-style-2 .team-content {
    margin-right: 15px;
  }
}

.team-style-3 {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 250px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 1;
}
.team-style-3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/shapes/team-11.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 250px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.team-style-3 .team-images {
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-style-3 .team-images img {
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 0px 200px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-style-3 .team-images .team-header {
  position: absolute;
  right: 0;
  bottom: -50px;
  display: inline-block;
  text-align: center;
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-theme-primary);
  padding: 20px 15px;
  border-radius: 150px;
  max-width: 315px;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-style-3 .team-images .team-header span {
  display: block;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.team-style-3 .team-images .team-header .title {
  margin-bottom: 0;
}
.team-style-3 .team-content {
  padding: 30px 40px 70px;
  -webkit-transform: translateY(-100px);
      -ms-transform: translateY(-100px);
          transform: translateY(-100px);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  border-radius: 250px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-style-3 .team-content .team-social {
  margin-bottom: 25px;
}
.team-style-3 .team-content .team-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.team-style-3 .team-content .team-social ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-style-3 .team-content .team-social 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: 40px;
  height: 40px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.team-style-3 .team-content .team-social ul li a i {
  -webkit-transition: all ease 0.31s;
  transition: all ease 0.31s;
}
.team-style-3 .team-content .team-social ul li a:hover {
  background-color: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
}
.team-style-3 .team-content .team-social ul li a:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
          animation: toBottomFromTop 0.5s forwards;
}
.team-style-3 .team-content .team-social ul li:first-child, .team-style-3 .team-content .team-social ul li:last-child {
  margin-top: -20px;
}
.team-style-3 .team-content .team-social ul li:first-child a, .team-style-3 .team-content .team-social ul li:last-child a {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.team-style-3 .team-content .team-text {
  display: block;
  position: relative;
  max-width: 285px;
  width: 100%;
  margin-left: auto;
  text-align: center;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 150px;
  padding: 20px 25px;
  z-index: 1;
  background: var(--tj-color-common-white);
}
.team-style-3 .team-content .team-text .sub-title {
  display: block;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.team-style-3 .team-content .team-text .title {
  margin-bottom: 0;
}
.team-style-3 .team-content .team-text .title a:hover {
  color: var(--tj-color-theme-secondary);
}
.team-style-3 .team-content .team-text:nth-child(2) {
  max-width: 100%;
  margin-top: 0px;
  border: none;
  background: transparent;
  padding: 0px;
}
.team-style-3:nth-child(5) .team-images img, .team-style-3:nth-child(2) .team-images img {
  border-radius: 0px 0px 150px 150px;
}
.team-style-3:nth-child(5) .team-images .team-header, .team-style-3:nth-child(2) .team-images .team-header {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-style-3:nth-child(5) .team-images img, .team-style-3:nth-child(2) .team-images img {
    border-radius: 50%;
  }
}
.team-style-3:nth-child(6) .team-images img, .team-style-3:nth-child(3) .team-images img {
  border-radius: 0px 0px 200px 0px;
}
.team-style-3:nth-child(6) .team-images .team-header, .team-style-3:nth-child(3) .team-images .team-header {
  left: 0;
  right: auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-style-3:nth-child(6) .team-images img, .team-style-3:nth-child(3) .team-images img {
    border-radius: 50%;
  }
}
.team-style-3:hover {
  background-color: var(--tj-color-theme-bg-3);
}
.team-style-3:hover::before {
  opacity: 1;
  visibility: visible;
}
.team-style-3:hover .team-images img {
  border-radius: 50%;
}
.team-style-3:hover .team-images .team-header {
  opacity: 0;
  visibility: hidden;
}
.team-style-3:hover .team-content {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .team-style-3 .team-images {
    max-width: 355px;
  }
  .team-style-3 .team-images img {
    height: 355px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-style-3 .team-images {
    max-width: 300px;
  }
  .team-style-3 .team-images img {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-style-3 {
    max-width: 335px;
  }
  .team-style-3 .team-content {
    padding: 20px 15px 50px;
  }
  .team-style-3 .team-images {
    max-width: 355px;
  }
  .team-style-3 .team-images img {
    height: 355px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-style-3 {
    margin: 0 auto;
  }
  .team-style-3::before {
    opacity: 1;
    visibility: visible;
  }
  .team-style-3 .team-images .team-header {
    opacity: 0;
    visibility: hidden;
  }
  .team-style-3 .team-images img {
    border-radius: 50%;
  }
  .team-style-3 .team-content {
    padding: 20px 15px 50px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@media (max-width: 575px) {
  .team-style-3 .team-images {
    max-width: 350px;
  }
  .team-style-3 .team-images img {
    height: 350px;
  }
  .team-style-3 .team-images .team-header {
    max-width: 275px;
  }
}

/* !END: Team CSS */
/**----------------------------------------
START: Team CSS
----------------------------------------*/
.team-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 90px;
}
.team-content-area .team-style-3 {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 250px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 1;
}
.team-content-area .team-style-3 .team-shapes {
  position: absolute;
  bottom: 25%;
  right: -80px;
  z-index: -1;
}
.team-content-area .team-style-3::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/shapes/team-11.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 250px;
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.team-content-area .team-style-3 .team-images {
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.team-content-area .team-style-3 .team-images img {
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.team-content-area .team-style-3 .team-content {
  position: relative;
  padding: 20px 40px 70px;
  overflow: hidden;
  border-radius: 250px;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 2;
}
.team-content-area .team-style-3 .team-content .team-social {
  margin-bottom: 25px;
}
.team-content-area .team-style-3 .team-content .team-social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.team-content-area .team-style-3 .team-content .team-social ul li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-content-area .team-style-3 .team-content .team-social 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: 40px;
  height: 40px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.team-content-area .team-style-3 .team-content .team-social ul li a i {
  -webkit-transition: all ease 0.31s;
  transition: all ease 0.31s;
}
.team-content-area .team-style-3 .team-content .team-social ul li a:hover {
  background-color: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
}
.team-content-area .team-style-3 .team-content .team-social ul li a:hover i {
  -webkit-animation: toBottomFromTop 0.5s forwards;
          animation: toBottomFromTop 0.5s forwards;
}
.team-content-area .team-style-3 .team-content .team-social ul li:first-child, .team-content-area .team-style-3 .team-content .team-social ul li:last-child {
  margin-top: -20px;
}
.team-content-area .team-style-3 .team-content .team-social ul li:first-child a, .team-content-area .team-style-3 .team-content .team-social ul li:last-child a {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.team-content-area .team-style-3:hover {
  background-color: var(--tj-color-theme-bg-3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-content-area {
    gap: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .team-content-area .team-style-3 .team-images {
    max-width: 360px;
  }
  .team-content-area .team-style-3 .team-images img {
    height: 360px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 575px) {
  .team-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
  .team-content-area .team-style-3 .team-images {
    max-width: 350px;
  }
  .team-content-area .team-style-3 .team-images img {
    height: 350px;
  }
}

.team-information {
  max-width: 550px;
}
.team-information .title {
  margin-bottom: 20px;
}
.team-information .desc {
  line-height: 1.7;
  margin-bottom: 35px;
}
.team-information .desc p:last-child {
  margin-bottom: 0;
}
.team-information .team-check {
  margin-bottom: 30px;
}
.team-information .team-check ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.team-information .team-check ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 15px;
}
.team-information .team-check ul li:last-child {
  margin-bottom: 0;
}
.team-information .team-check ul li i {
  color: var(--tj-color-theme-primary);
}
.team-information .team-infos ul {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2;
}
.team-information .team-infos ul li {
  font-weight: var(--tj-fw-medium);
  margin-bottom: 10px;
}
.team-information .team-infos ul li span {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-theme-primary);
}
@media (max-width: 575px) {
  .team-information .team-infos ul {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
  }
}
.team-information .tj-progress-bar {
  margin-top: 40px;
}
.team-information .tj-progress-bar .title {
  margin-bottom: 15px;
}
.team-information .tj-progress-bar .progress-item {
  position: relative;
  background: var(--tj-color-common-white);
  margin-bottom: 25px;
  padding: 0px;
  border-radius: 150px;
  z-index: 1;
}
.team-information .tj-progress-bar .progress-item .item_value {
  max-width: 45px;
  width: 100%;
  position: absolute;
  top: -30px;
  right: 0px;
  font-size: 12px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  padding: 4px 12px;
  border-radius: 0px;
}
.team-information .tj-progress-bar .progress-item .item_value::before {
  position: absolute;
  content: "";
  bottom: -6px;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 8px solid var(--tj-color-theme-primary);
  border-right: 8px solid transparent;
}
.team-information .tj-progress-bar .progress-item .item_bar {
  position: relative;
  height: 6px;
  width: 100%;
  background-color: var(--tj-color-theme-bg-3);
  margin-left: 0px;
  border-radius: 150px;
}
.team-information .tj-progress-bar .progress-item .item_bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  margin: 0;
  border-radius: 0px;
  overflow: visible;
  background: var(--tj-color-theme-primary);
  -webkit-transition: width 100ms ease;
  transition: width 100ms ease;
}
.team-information .tj-progress-bar .progress-item .item_bar .progress::before {
  display: none;
}
.team-information .team-button {
  margin-top: 60px;
}
.team-information .team-button .tj-button {
  background: transparent;
}
.team-information .team-button .tj-button.btn-6 {
  border-radius: 10px;
}
.team-information .team-button .tj-button.btn-6:before {
  background: var(--tj-color-theme-primary);
}
.team-information .team-button .tj-button.btn-6:after {
  background: var(--tj-color-theme-bg-3);
}
.team-information .team-button .tj-button.btn-6 .tj-primary-btn span {
  color: var(--tj-color-common-white);
}
.team-information .team-button .tj-button.btn-6 .tj-primary-btn span:first-child {
  color: var(--tj-color-theme-primary);
}
.team-information .team-button .tj-button.btn-6 .tj-primary-btn span:last-child {
  color: var(--tj-color-common-white);
}

/* !END: Team CSS */
/**----------------------------------------
Price CSS
----------------------------------------*/
.tj-price-section {
  padding-top: 120px;
  padding-bottom: 150px;
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
.tj-price-section .price-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 95%;
  background-size: cover;
  background-position: top center;
  -webkit-mask-image: url(../images/shapes/price-mask.svg);
          mask-image: url(../images/shapes/price-mask.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--tj-color-theme-primary);
  overflow: hidden;
  z-index: 2;
}
.tj-price-section .shapes-1 {
  position: absolute;
  top: -120px;
  max-width: 345px;
  width: 100%;
  right: 0;
  z-index: 1;
}
.tj-price-section .shapes-1 img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-price-section .shapes-1 {
    top: -50px;
    max-width: 280px;
  }
}
.tj-price-section .shapes-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  max-width: 215px;
  width: 100%;
  opacity: 0.2;
}
.tj-price-section .shapes-2 img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-price-section .shapes-2 img {
    height: 350px;
  }
}
.tj-price-section .tj-heading-area {
  margin-bottom: 65px;
}
.tj-price-section .tj-heading-area .sub-title {
  color: var(--tj-color-theme-secondary);
}
.tj-price-section .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-price-section .tj-heading-area .desc {
  color: var(--tj-color-text-body-2);
  line-height: 1.7;
}
.tj-price-section .tj-heading-area .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-price-section {
    padding-bottom: 120px;
  }
  .tj-price-section .price-bg {
    -webkit-mask-image: unset;
            mask-image: unset;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-price-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-price-section .price-bg {
    -webkit-mask-image: unset;
            mask-image: unset;
    width: 100%;
    height: 100%;
  }
}

.tj-price-section-two {
  padding-top: 120px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
}
.tj-price-section-two.price-page {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-price-section-two.price-page {
    padding-bottom: 110px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-price-section-two.price-page {
    padding-bottom: 50px;
  }
}
.tj-price-section-two .price-shapes {
  max-width: 180px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -80px;
  z-index: -1;
}
.tj-price-section-two .price-shapes img {
  width: 100%;
}
.tj-price-section-two .price-shapes2 {
  position: absolute;
  right: 0;
  top: -70px;
  max-width: 240px;
  width: 100%;
  z-index: -1;
}
.tj-price-section-two .price-shapes2 img {
  width: 100%;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-price-section-two .price-shapes2 {
    max-width: 150px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-price-section-two .price-shapes2 {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-price-section-two .price-shapes {
    max-width: 150px;
    bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-price-section-two {
    padding-top: 80px;
    padding-bottom: 110px;
  }
  .tj-price-section-two .price-shapes {
    max-width: 100px;
    bottom: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-price-section-two {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px) {
  .tj-price-section-two {
    padding-top: 80px;
  }
  .tj-price-section-two .price-shapes {
    max-width: 80px;
    bottom: 0px;
  }
}

.price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 25px;
}
.price-wrapper .price-inner {
  max-width: 425px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@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) {
  .price-wrapper .price-item {
    top: 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) {
  .price-wrapper {
    -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;
  }
}

.contact-item {
  background: var(--tj-color-common-white);
  padding: 40px 50px;
}
.contact-item .contact-list {
  border-bottom: 2px solid var(--tj-color-grey-5);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-item .contact-list:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.contact-item .contact-list span {
  display: block;
}
.contact-item .contact-list .link {
  font-size: 24px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-item {
    margin-top: 45px;
    padding: 35px 15px;
  }
}

.contact-style-3 {
  position: relative;
  max-width: 415px;
  width: 100%;
  padding: 30px 50px;
  border: 1px solid var(--tj-color-border-6);
  border-radius: 0px 0px 100px 0px;
  background: var(--tj-color-common-white);
  z-index: 1;
}
.contact-style-3 .contact-list {
  border-bottom: 2px solid var(--tj-color-border-3);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.contact-style-3 .contact-list:last-child {
  border: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
}
.contact-style-3 .contact-list span {
  display: block;
}
.contact-style-3 .contact-list .link {
  font-size: 24px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-style-3 {
    padding: 30px 15px;
  }
  .contact-style-3 .contact-list .link {
    font-size: 20px;
  }
}

.price-item {
  background-color: var(--tj-color-common-white);
  padding: 45px 50px;
  max-width: 425px;
  width: 100%;
  position: relative;
  top: 150px;
  -webkit-clip-path: polygon(45% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
          clip-path: polygon(45% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
  z-index: 2;
}
.price-item.left_item {
  -webkit-clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
          clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
  -webkit-clip-path: polygon(0% 0%, 100% 0, 0% 0%, 0%, 0% 0%, 0% 0%);
          clip-path: polygon(0% 0%, 100% 0, 0% 0%, 0%, 0% 0%, 0% 0%);
}
.price-item.left_item .top-content {
  text-align: start;
}
.price-item.left_item .top-content .percent {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.price-item .top-content {
  text-align: end;
  position: relative;
  z-index: 1;
}
.price-item .top-content .percent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  font-size: 25px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  line-height: 1;
  margin-bottom: 15px;
}
.price-item .top-content .percent span {
  font-size: 60px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-heading-primary);
  line-height: 1;
}
.price-item .top-content .sub-title {
  display: block;
  margin-bottom: 10px;
}
.price-item .top-content .title {
  margin-bottom: 0;
}
.price-item .price-images {
  width: 100%;
  height: 70px;
  margin-top: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.price-item .price-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
.price-item .price-list {
  position: relative;
  z-index: 1;
}
.price-item .price-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-item .price-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  color: var(--tj-color-text-body);
  z-index: 1;
}
.price-item .price-list ul li::before {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--tj-color-grey-27);
}
.price-item .price-list ul li:last-child {
  margin-bottom: 0;
}
.price-item .price-list ul li.active {
  color: inherit;
}
.price-item .price-list ul li.active::before {
  content: "\f00c";
  color: var(--tj-color-theme-primary);
}
.price-item .price-button {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}
.price-item .price-button .tj-button {
  margin: 0 auto;
}
.price-item .price_shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.1;
  animation: slide 60s linear infinite;
  -webkit-animation: slide 60s linear infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .price-item {
    padding: 45px 40px;
  }
}
@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) {
  .price-item {
    padding: 35px 15px;
  }
  .price-item .top-content .percent span {
    font-size: 45px;
  }
}

.price-item-two {
  max-width: 415px;
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}
.price-item-two .price-item-shapes {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.price-item-two .price-header {
  position: relative;
  text-align: center;
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-6);
  padding: 20px 25px;
  border-radius: 150px;
  z-index: 1;
}
.price-item-two .price-header span {
  display: block;
  margin-bottom: 10px;
}
.price-item-two .price-header .title {
  margin-bottom: 0;
}
.price-item-two .price-content {
  position: relative;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid var(--tj-color-theme-primary);
  padding: 60px 35px 160px;
  border-radius: 0px 0px 200px 200px;
  margin-top: -15px;
  background: transparent;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.price-item-two .price-content .price_shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.5;
  z-index: -1;
}
.price-item-two .price-content .price_shapes img {
  width: 100%;
}
.price-item-two .price-content .price-list {
  position: relative;
  z-index: 1;
}
.price-item-two .price-content .price-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-item-two .price-content .price-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 10px;
  position: relative;
  color: var(--tj-color-text-body);
  z-index: 1;
}
.price-item-two .price-content .price-list ul li::before {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--tj-color-grey-27);
}
.price-item-two .price-content .price-list ul li:last-child {
  margin-bottom: 0;
}
.price-item-two .price-content .price-list ul li.active {
  color: inherit;
}
.price-item-two .price-content .price-list ul li.active::before {
  content: "\f00c";
  color: var(--tj-color-theme-primary);
}
.price-item-two .price-content .price-button {
  position: relative;
  text-align: center;
  margin-top: 45px;
  z-index: 2;
}
.price-item-two .price-content .price-button .tj-button {
  margin: 0 auto;
}
.price-item-two .price-percent {
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  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: 5px;
  width: 160px;
  height: 160px;
  font-size: 30px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  background: var(--tj-color-theme-secondary);
  border-radius: 50%;
  z-index: 2;
}
.price-item-two .price-percent .number {
  font-size: 60px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
}
.price-item-two.active .price-content {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.price-item-two.active .price-content .price-list ul li {
  color: var(--tj-color-grey-27);
}
.price-item-two.active .price-content .price-list ul li.active {
  color: var(--tj-color-grey-27);
}
.price-item-two.active .price-content .price-list ul li.active::before {
  content: "\f00c";
  color: var(--tj-color-grey-27);
}
.price-item-two.active .tj-button {
  background: var(--tj-color-theme-primary);
  border: 2px solid rgba(255, 255, 255, 0.1);
}
.price-item-two.active .tj-button:before {
  background: var(--tj-color-common-white);
}
.price-item-two.active .tj-button:after {
  background: var(--tj-color-grey-25);
}
.price-item-two.active .tj-button .tj-primary-btn span {
  color: var(--tj-color-common-white);
}
.price-item-two.active .tj-button .tj-primary-btn span:first-child {
  color: var(--tj-color-theme-primary);
}
.price-item-two.active .tj-button .tj-primary-btn span:last-child {
  color: var(--tj-color-common-white);
}
.price-item-two.active .tj-button:hover {
  background: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .price-item-two .price-content {
    padding: 50px 15px 140px;
  }
  .price-item-two .price-percent {
    width: 120px;
    height: 120px;
  }
  .price-item-two .price-percent .number {
    font-size: 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) {
  .price-item-two .price-content {
    padding: 50px 15px 100px;
  }
  .price-item-two .price-percent {
    width: 120px;
    height: 120px;
  }
  .price-item-two .price-percent .number {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .price-item-two {
    margin: 0 auto 90px;
  }
}

.price-left-content {
  margin-top: 50px;
  margin-bottom: 30px;
}
.price-left-content .desc {
  margin-bottom: 50px;
  line-height: 1.7;
}
.price-left-content .desc p {
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .price-left-content {
    margin-top: 0px;
  }
}

/* !END: Price CSS */
/**----------------------------------------
Counter CSS
----------------------------------------*/
.tj-counter-section {
  padding-top: 220px;
  position: relative;
  z-index: 2;
}
.tj-counter-section .fun-shapes {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}
.tj-counter-section .fun-image {
  position: absolute;
  right: 15px;
  bottom: 0;
  max-width: 710px;
  width: 100%;
}
.tj-counter-section .fun-image .line-4,
.tj-counter-section .fun-image .line-3,
.tj-counter-section .fun-image .line-2,
.tj-counter-section .fun-image .line-1 {
  display: block;
  width: 200px;
  height: 200px;
  border: 1px solid var(--tj-color-border-4);
  border-radius: 50%;
  position: absolute;
  top: 140px;
  left: 45%;
  z-index: -1;
  -webkit-animation: loader 18s linear infinite;
          animation: loader 18s linear infinite;
}
.tj-counter-section .fun-image .line-2 {
  width: 285px;
  height: 285px;
  left: 39%;
  top: 100px;
}
.tj-counter-section .fun-image .line-3 {
  width: 410px;
  height: 410px;
  left: 30%;
  top: 35px;
}
.tj-counter-section .fun-image .line-4 {
  width: 520px;
  height: 520px;
  left: 22%;
  top: -20px;
}
.tj-counter-section .tj-heading-area {
  width: calc(66% - 30px);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-section {
    padding-top: 120px;
  }
  .tj-counter-section .fun-image {
    max-width: 450px;
  }
  .tj-counter-section .fun-image .line-1 {
    width: 100px;
    height: 100px;
    top: 140px;
    left: 50%;
  }
  .tj-counter-section .fun-image .line-2 {
    width: 200px;
    height: 200px;
    left: 44%;
    top: 100px;
  }
  .tj-counter-section .fun-image .line-3 {
    width: 250px;
    height: 250px;
    left: 38%;
    top: 75px;
  }
  .tj-counter-section .fun-image .line-4 {
    width: 300px;
    height: 300px;
    left: 32%;
    top: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-counter-section .fun-image {
    max-width: 365px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-counter-section .fun-image {
    max-width: 330px;
  }
}
@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-counter-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-counter-section .fun-image {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-section .tj-heading-area {
    width: 100%;
    margin-bottom: 40px;
  }
}

.tj-counter-section-two {
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.tj-counter-section-two .counter-inner {
  position: absolute;
  width: 585px;
  height: 585px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
.tj-counter-section-two .counter-inner .counter-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 500px;
  height: 500px;
  width: 100%;
  -webkit-mask-image: url(../images/shapes/counter-circle.svg);
          mask-image: url(../images/shapes/counter-circle.svg);
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.tj-counter-section-two .counter-inner .counter-bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.tj-counter-section-three {
    position: relative;
    max-width: 100%;
    width: 100%;
    /* margin: -100px auto 120px; */
    background: #0071ba;
    padding: 40px 0px 0 0px;
    /* border-radius: 300px; */
    overflow: hidden;
    z-index: 2;
}
.tj-counter-section-three.tj-counter-page {
  margin: 30px auto 120px;
  padding: 50px 35px 0px 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-counter-section-three.tj-counter-page {
    margin: 0px auto 80px;
  }
}
.tj-counter-section-three.counter-page {
  margin: 0px auto 120px;
  padding: 60px 35px 0 35px;
}
.tj-counter-section-three .counter-shapes {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 200px;
  width: 100%;
  z-index: -1;
}
.tj-counter-section-three .counter-shapes img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-counter-section-three .counter-shapes {
    max-width: 120px;
  }
}
.tj-counter-section-three .counter-shapes2 {
  position: absolute;
  bottom: 0;
  right: 0;
  max-width: 200px;
  width: 100%;
  z-index: -1;
}
.tj-counter-section-three .counter-shapes2 img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-counter-section-three .counter-shapes2 {
    max-width: 90px;
  }
}
.tj-counter-section-three .counter-wrapper-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*border-bottom: 2px solid var(--tj-color-theme-primary);*/
  padding-bottom: 30px;
}
/*@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-counter-section-three {
    border-radius: 50px;
  }
}*/
/*@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) {
  .tj-counter-section-three {
    border-radius: 50px;
    padding: 150px 20px 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) {
  .tj-counter-section-three {
    margin: -100px auto 80px;
    border-radius: 150px;
  }
  .tj-counter-section-three .counter-wrapper-two {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
*/
.fun-fact-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 2;
}
.fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
  border-right: none;
}
.fun-fact-wrapper .fun-fact-item-two:nth-child(4) {
  border-right: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
    border-right: 1px solid var(--tj-color-theme-primary);
    border-bottom: none;
  }
}
@media (max-width: 575px) {
  .fun-fact-wrapper .fun-fact-item-two:nth-child(3) {
    border-right: 1px solid var(--tj-color-theme-primary);
    border-bottom: none;
  }
  .fun-fact-wrapper .fun-fact-item-two:nth-child(4) {
    border-right: 1px solid var(--tj-color-theme-primary);
    border-bottom: none;
  }
}

.fun-fact-item-two {
  border: 1px solid var(--tj-color-theme-primary);
  padding: 35px;
  width: 33.334%;
  position: relative;
  z-index: 1;
}
.fun-fact-item-two.style_2 {
  max-width: 322px;
  width: 100%;
  border-top: 1px solid var(--tj-color-theme-primary);
  border-left: 1px solid var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(70% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
          clip-path: polygon(70% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
}
.fun-fact-item-two.style_2 .fun-icon {
  background: var(--tj-color-theme-secondary);
}
.fun-fact-item-two.style_2 .number {
  color: var(--tj-color-grey-7);
}
.fun-fact-item-two.style_2 .tj-count {
  color: var(--tj-color-common-white);
}
.fun-fact-item-two.style_2 .tj-count span {
  color: var(--tj-color-common-white);
}
.fun-fact-item-two.style_2 .sub-title {
  color: var(--tj-color-grey-8);
}
.fun-fact-item-two .fun-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: 115px;
  height: 130px;
  line-height: 1;
  font-size: 60px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  margin-bottom: 15px;
}
.fun-fact-item-two .number {
  position: absolute;
  top: 10px;
  right: 25px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 150px;
  line-height: 1;
  color: var(--tj-color-grey-6);
  font-family: var(--tj-ff-heading);
}
.fun-fact-item-two .tj-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 45px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.fun-fact-item-two .tj-count span {
  font-size: 45px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.fun-fact-item-two .sub-title {
  display: block;
  font-family: var(--tj-ff-heading);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .fun-fact-item-two .number {
    font-size: 110px;
  }
  .fun-fact-item-two.style_2 {
    max-width: 277px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .fun-fact-item-two.style_2 {
    max-width: 232px;
  }
}
@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) {
  .fun-fact-item-two {
    padding: 30px 15px;
  }
  .fun-fact-item-two .number {
    font-size: 80px;
    top: 10px;
    right: 15px;
  }
  .fun-fact-item-two .fun-icon {
    width: 100px;
    height: 115px;
    font-size: 50px;
  }
  .fun-fact-item-two .tj-count {
    font-size: 30px;
  }
  .fun-fact-item-two .tj-count span {
    font-size: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .fun-fact-item-two {
    width: 50%;
  }
  .fun-fact-item-two.style_2 {
    max-width: 258px;
  }
}
@media (max-width: 575px) {
  .fun-fact-item-two {
    max-width: 265px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .fun-fact-item-two.style_2 {
    max-width: 265px;
  }
}

.counter-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;
  max-width: 1620px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .counter-wrapper {
    max-width: 1340px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-wrapper {
    max-width: 1140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-wrapper {
    max-width: 900px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-wrapper {
    max-width: 715px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.counter-wrapper .counter-box .counter-item:nth-child(2) {
  margin-left: 200px;
}
.counter-wrapper .counter-box .counter-item:nth-child(2) .counter-icon {
  background: var(--tj-color-theme-secondary);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-wrapper .counter-box .counter-item:nth-child(2) {
    margin-left: 50px;
  }
}
@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) {
  .counter-wrapper .counter-box .counter-item:nth-child(2) {
    margin-left: 0px;
  }
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) {
  margin-left: 300px;
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-icon {
  background: var(--tj-color-theme-secondary);
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-icon {
  background: var(--tj-color-theme-bg-3);
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1), .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-left: 220px;
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1)::before, .counter-wrapper .counter-box:last-child .counter-item:nth-child(2)::before {
  left: -50px;
  -webkit-transform: skew(-34deg);
      -ms-transform: skew(-34deg);
          transform: skew(-34deg);
  border-width: 0px 0px 1px 1px;
  border-radius: 0px 0px 0px 10px;
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-icon, .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-icon {
  border-radius: 150px 0px 0px 150px;
  left: 16px;
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-text, .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-text {
  text-align: end;
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(1) .counter-text .tj-count, .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) .counter-text .tj-count {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(1), .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(1), .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 0px;
  }
}
@media (max-width: 575px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(1), .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 0px;
  }
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(1)::before, .counter-wrapper .counter-box:last-child .counter-item:nth-child(2)::before {
    left: -23px;
  }
}
.counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
  margin-left: 350px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 270px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-wrapper .counter-box:last-child .counter-item:nth-child(2) {
    margin-left: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-wrapper .counter-box {
    margin-bottom: 300px;
  }
  .counter-wrapper .counter-box:last-child {
    margin-bottom: 0px;
  }
}

.counter-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border: 1px solid var(--tj-color-theme-primary);
  max-width: 405px;
  width: 100%;
  border-radius: 10px;
  padding: 30px 15px 30px 0px;
  margin-bottom: 120px;
  background: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
}
.counter-item::before {
  position: absolute;
  content: "";
  width: calc(25% - 2px);
  right: -50px;
  height: 40%;
  bottom: -1px;
  border: 1px solid var(--tj-color-theme-primary);
  border-width: 0px 1px 1px 0px;
  -webkit-transform: skew(34deg);
      -ms-transform: skew(34deg);
          transform: skew(34deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  background: var(--tj-color-common-white);
  border-radius: 0px 0px 10px 0px;
  z-index: -1;
}
.counter-item .counter-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: 140px;
  height: 120px;
  font-size: 65px;
  line-height: 1;
  position: relative;
  right: 1px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg-3);
  border-radius: 0px 150px 150px 0;
}
.counter-item .counter-text {
  max-width: 220px;
  width: 100%;
}
.counter-item .counter-text .tj-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 45px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 10px;
  line-height: 1;
}
.counter-item .counter-text .tj-count span {
  font-size: 45px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
}
.counter-item .counter-text .desc {
  font-family: var(--tj-ff-heading);
}
.counter-item .counter-text .desc p {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item {
    gap: 15px;
    max-width: 295px;
    margin-bottom: 30px;
  }
  .counter-item .counter-text .tj-count {
    font-size: 35px;
  }
  .counter-item .counter-text .tj-count span {
    font-size: 35px;
  }
  .counter-item .counter-text .desc {
    font-size: 14px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .counter-item {
    gap: 15px;
    max-width: 290px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 15px 20px 0px;
  }
  .counter-item::before {
    right: -23px;
    height: 20%;
  }
  .counter-item .counter-text .tj-count {
    font-size: 30px;
  }
  .counter-item .counter-text .tj-count span {
    font-size: 30px;
  }
  .counter-item .counter-text .desc {
    font-size: 14px;
  }
}

.counter-item-two {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border: 2px solid var(--tj-color-border-6);
  padding: 15px 20px 15px 20px;
  /*border-radius: 150px 150px 150px 0px;*/
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.counter-item-two .counter-icon {
    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;
    /* width: 110px; */
    /* height: 120px; */
    line-height: 1;
    font-size: 44px;
    color: var(--tj-color-theme-primary);
    background: var(--tj-color-common-white);
    border-radius: 50%;
    padding: 15px;
}
.counter-item-two .counter-content .tj-count {
    display: block;
    font-size: 30px;
    color: #ffffff;
    /* font-family: var(--tj-ff-heading); */
    /* font-weight: var(--tj-fw-medium); */
    margin-bottom: 10px;
    font-weight: 600;
    /*line-height: 1;*/
}
.counter-item-two .counter-content .tj-count span {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
}
.counter-item-two .counter-content .sub-title {
    display: block;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    /* font-family: var(--tj-ff-heading); */
    /* font-weight: var(--tj-fw-regular); */
}
/*@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .counter-item-two {
    padding: 25px 20px 25px 20px;
    border-radius: 150px 150px 150px 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item-two {
    gap: 20px;
    padding: 25px 20px 25px 20px;
    border-radius: 150px 150px 150px 0px;
  }
  .counter-item-two .counter-content .tj-count {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .counter-item-two {
    padding: 25px 20px 25px 20px;
    border-radius: 150px 150px 150px 0px;
  }
  .counter-item-two .counter-content .tj-count {
    font-size: 30px;
  }
  .counter-item-two .counter-icon {
    width: 85px;
    height: 95px;
    font-size: 50px;
  }
}*/

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* !END: Counter CSS */
/**----------------------------------------
Project CSS
----------------------------------------*/
.tj-project-section {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 120px;
}
.tj-project-section::before {
  position: absolute;
  content: "";
  width: 50.2%;
  height: 60%;
  top: 0;
  right: 0;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.tj-project-section .project-shapes {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.tj-project-section .tj-heading-area {
  margin-bottom: 60px;
}
.tj-project-section .tj-heading-area .sub-title {
  color: var(--tj-color-theme-secondary);
}
.tj-project-section .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-project-section .project-pagination {
  text-align: center;
  margin-bottom: 10px;
  margin-top: 50px;
}
.tj-project-section .project-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: var(--tj-color-grey-5);
  opacity: 1;
  margin: 0px 10px;
  display: inline-block;
}
.tj-project-section .project-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.tj-project-section .project-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(31, 99, 6, 0.3);
  border-radius: 50%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .tj-project-section::before {
    width: 100%;
  }
}

.tj-project-section-two {
  padding-top: 120px;
  background: var(--tj-color-theme-bg-3);
  border-radius: 0px 0px 0px 350px;
  position: relative;
  z-index: 1;
}
.tj-project-section-two::before {
  position: absolute;
  content: "";
  width: 260px;
  height: 520px;
  right: 16%;
  bottom: 136px;
  background: rgba(11, 61, 44, 0.9);
  border-radius: 150px 150px 0px 0px;
  z-index: 2;
}
.tj-project-section-two .project-shapes {
  position: absolute;
  top: 30px;
  right: 0;
  max-width: 300px;
  width: 100%;
  z-index: -1;
}
.tj-project-section-two .project-shapes img {
  width: 100%;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section-two .project-shapes {
    max-width: 200px;
    top: 95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-section-two .project-shapes {
    max-width: 120px;
    top: 10%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section-two .project-shapes {
    display: none;
  }
}
.tj-project-section-two .tj-heading-area {
  margin-bottom: 60px;
}
.tj-project-section-two .project-wrapper {
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 700px;
  z-index: 1;
  border-radius: 0px 0px 0px 350px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-section-two .project-wrapper {
    border-radius: 0px 0px 0px 150px;
  }
}
.tj-project-section-two .project-navigation {
  position: absolute;
  top: 40%;
  right: 20.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  z-index: 2;
}
.tj-project-section-two .project-navigation .slider-prev,
.tj-project-section-two .project-navigation .slider-next {
  font-size: 40px;
  color: var(--tj-color-common-white);
}
.tj-project-section-two .swiper-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  left: auto;
  right: 18.8%;
  bottom: 22%;
  width: auto;
  font-weight: var(--tj-fw-medium);
  font-family: var(--tj-ff-heading);
  font-size: 22px;
  color: var(--tj-color-grey-29);
}
.tj-project-section-two .swiper-pagination span {
  position: relative;
  top: 2px;
  font-size: 75px;
  color: var(--tj-color-common-white);
  line-height: 1;
  font-family: var(--tj-ff-heading);
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-project-section-two::before {
    right: 10%;
  }
  .tj-project-section-two .project-navigation {
    right: 15.5%;
  }
  .tj-project-section-two .swiper-pagination {
    right: 15%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-project-section-two::before {
    right: 5%;
  }
  .tj-project-section-two .project-navigation {
    right: 11.5%;
  }
  .tj-project-section-two .swiper-pagination {
    right: 8%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-section-two::before {
    right: 5%;
  }
  .tj-project-section-two .project-navigation {
    right: 12.5%;
  }
  .tj-project-section-two .swiper-pagination {
    right: 9%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-project-section-two::before {
    right: 3%;
    bottom: 132px;
  }
  .tj-project-section-two .project-navigation {
    right: 12.5%;
  }
  .tj-project-section-two .swiper-pagination {
    right: 8%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-section-two {
    padding-top: 80px;
  }
  .tj-project-section-two .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-project-section-two::before {
    right: 3%;
    bottom: 131px;
    width: 200px;
    height: 350px;
  }
  .tj-project-section-two .project-navigation {
    right: 10.5%;
    top: 50%;
  }
  .tj-project-section-two .swiper-pagination {
    right: 8%;
  }
  .tj-project-section-two .swiper-pagination span {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-section-two {
    padding-top: 80px;
  }
  .tj-project-section-two .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-project-section-two .project-wrapper {
    height: 540px;
  }
  .tj-project-section-two::before {
    right: 3%;
    bottom: 131px;
    width: 165px;
    height: 300px;
  }
  .tj-project-section-two .project-navigation {
    top: 45%;
    right: 11.5%;
  }
  .tj-project-section-two .project-navigation .slider-prev,
  .tj-project-section-two .project-navigation .slider-next {
    font-size: 35px;
  }
  .tj-project-section-two .swiper-pagination {
    right: 8%;
  }
  .tj-project-section-two .swiper-pagination span {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .tj-project-section-two {
    padding-top: 80px;
    border-radius: 0px 0px 0px 150px;
  }
  .tj-project-section-two .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-project-section-two .project-wrapper {
    height: 500px;
    border-radius: 0px 0px 0px 50px;
  }
  .tj-project-section-two::before {
    right: 3%;
    bottom: 122px;
    width: 140px;
    height: 195px;
  }
  .tj-project-section-two .project-navigation {
    top: 62%;
    right: 12.5%;
  }
  .tj-project-section-two .project-navigation .slider-prev,
  .tj-project-section-two .project-navigation .slider-next {
    font-size: 28px;
  }
  .tj-project-section-two .swiper-pagination {
    right: 9%;
  }
  .tj-project-section-two .swiper-pagination span {
    font-size: 35px;
  }
}

.tj-project-section-three {
  padding-top: 120px;
  padding-bottom: 120px;
  background-color: var(--tj-color-theme-primary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.tj-project-section-three.project-style-5 {
  padding-top: 0px;
  background-color: var(--tj-color-common-white);
}
.tj-project-section-three.project-style-5 .tj-heading-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;
  gap: 35px;
  margin-bottom: 25px;
}
.tj-project-section-three.project-style-5 .tj-heading-area .heading-text {
  max-width: 600px;
  width: 100%;
}
.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .sub-title {
  color: var(--tj-color-theme-primary);
}
.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .sec-title {
  color: var(--tj-color-theme-primary);
}
.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc {
  color: var(--tj-color-text-body);
  margin-top: 40px;
  line-height: 1.7;
}
.tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section-three.project-style-5 .tj-heading-area .heading-text .desc {
    margin-top: 25px;
  }
}
.tj-project-section-three .tj-heading-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;
  gap: 35px;
  margin-bottom: 25px;
}
.tj-project-section-three .tj-heading-area .heading-text {
  max-width: 600px;
  width: 100%;
}
.tj-project-section-three .tj-heading-area .heading-text .sub-title {
  color: var(--tj-color-common-white);
}
.tj-project-section-three .tj-heading-area .heading-text .sec-title {
  color: var(--tj-color-common-white);
}
.tj-project-section-three .tj-heading-area .heading-text .desc {
  color: var(--tj-color-common-white);
  line-height: 1.7;
}
.tj-project-section-three .tj-heading-area .heading-text .desc p:last-child {
  margin-bottom: 0;
}
.tj-project-section-three .tj-heading-area .project-images {
  max-width: 650px;
  width: 100%;
}
.tj-project-section-three .tj-heading-area .project-images img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 150px 0px 0px 0px;
}
.tj-project-section-three .tj-project-slider3 {
  position: relative;
  border-radius: 0px 0px 200px 200px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 2;
}
.tj-project-section-three .tj-project-slider3 .swiper-slide-active.project-style-3 .project-content {
  opacity: 1;
  visibility: visible;
  bottom: 0px;
}
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 85px;
  color: var(--tj-color-text-body-3);
  font-size: 22px;
  background: var(--tj-color-theme-secondary);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next i,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev i {
  color: var(--tj-color-text-body-3);
}
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next:hover,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next:hover i,
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-prev:hover i {
  color: var(--tj-color-common-white);
}
.tj-project-section-three .tj-project-slider3 .project_navigation .slider-next {
  left: auto;
  right: 85px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section-three .tj-project-slider3 .project_navigation {
    display: none;
  }
}
.tj-project-section-three .tj-project-slider3:hover .project_navigation .slider-prev {
  opacity: 1;
  visibility: visible;
  left: 15px;
}
.tj-project-section-three .tj-project-slider3:hover .project_navigation .slider-next {
  right: 15px;
  opacity: 1;
  visibility: visible;
}
.tj-project-section-three .project-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.tj-project-section-three .project-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: var(--tj-color-theme-secondary);
  opacity: 1;
  margin: 0px;
  display: inline-block;
}
.tj-project-section-three .project-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.tj-project-section-three .project-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(241, 210, 169, 0.4);
  border-radius: 50%;
  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-project-section-three {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .tj-project-section-three .tj-heading-area .project-images {
    display: none;
  }
  .tj-project-section-three .tj-heading-area .heading-text .desc {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-project-section-three .tj-project-slider3 {
    border-radius: 0px 0px 50px 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-section-three .tj-project-slider3 {
    border-radius: 0px;
  }
}

.tj-project-page {
  padding-bottom: 120px;
}
.tj-project-page .tj-project-slider4 {
  padding-top: 45px;
  z-index: 3;
}
.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(3n) {
  margin-top: -45px;
}
.tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(4n) {
  margin-top: -45px;
}
.tj-project-page .tj-project-slider4 .project-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  position: relative;
  text-align: center;
  margin-top: 60px;
  z-index: 2;
}
.tj-project-page .tj-project-slider4 .project-navigation .slider-next,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  height: 56px;
  line-height: 1;
  font-size: 25px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-grey-23);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-project-page .tj-project-slider4 .project-navigation .slider-next i,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev i {
  color: var(--tj-color-theme-primary);
}
.tj-project-page .tj-project-slider4 .project-navigation .slider-next:hover,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.tj-project-page .tj-project-slider4 .project-navigation .slider-next:hover i,
.tj-project-page .tj-project-slider4 .project-navigation .slider-prev:hover i {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-page {
    padding-bottom: 80px;
  }
  .tj-project-page .tj-project-slider4 {
    padding-top: 0px;
  }
  .tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(3n) {
    margin-top: 0px;
  }
  .tj-project-page .tj-project-slider4 .swiper-wrapper .swiper-slide:nth-child(4n) {
    margin-top: 0px;
  }
  .tj-project-page .tj-project-slider4 .project-navigation {
    margin-top: 40px;
  }
}

.tj-slider-page {
  padding-bottom: 120px;
}
.tj-slider-page .tj-project-slider5 {
  z-index: 2;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 {
  position: relative;
  z-index: 2;
  max-width: 370px;
  width: 100%;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images {
  position: relative;
  z-index: 2;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(11, 61, 44)), color-stop(74%, rgba(11, 61, 44, 0.01)));
  background: linear-gradient(0deg, rgb(11, 61, 44) 0%, rgba(11, 61, 44, 0.01) 74%);
  opacity: 0;
  visibility: hidden;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images img {
  width: 100%;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 30px 10px 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .sub-title {
  display: block;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .title {
  margin-bottom: 0;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 .project-images .project-content .title a {
  color: var(--tj-color-common-white);
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5:hover .project-images::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5:hover .project-images .project-content {
  bottom: 40px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 575px) {
  .tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide.project-style-5 {
    max-width: 330px;
    margin: 0 auto;
  }
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide:nth-child(odd).project-style-5 .project-images {
  height: 360px;
}
.tj-slider-page .tj-project-slider5 .swiper-wrapper .swiper-slide:nth-child(odd).project-style-5 .project-images img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-page {
    padding-bottom: 80px;
  }
}

.tj-project-item {
  position: relative;
  z-index: 1;
}
.tj-project-item .project-images {
  -webkit-clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0 100%, 0% 55%, 0% 12%);
          clip-path: polygon(20% 0%, 100% 0, 100% 100%, 0 100%, 0% 55%, 0% 12%);
  position: relative;
  z-index: 1;
}
.tj-project-item .project-images::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50px;
  bottom: 0;
  left: 0;
  -webkit-transform: translateY(50px);
      -ms-transform: translateY(50px);
          transform: translateY(50px);
  background-color: var(--tj-color-theme-primary);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-project-item .project-images::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: 50px;
  right: 0;
  border-bottom: 100px solid var(--tj-color-theme-primary);
  border-left: 100px solid transparent;
  -webkit-transform: translateY(150px);
      -ms-transform: translateY(150px);
          transform: translateY(150px);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-project-item .project-images img {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-project-item .project-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 50px;
  right: 0;
  background-color: var(--tj-color-common-white);
  max-width: 445px;
  width: 100%;
  padding: 30px 15px 30px 40px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-project-item .project-content .project-icon {
  position: absolute;
  left: -25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.tj-project-item .project-content .project-icon 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: 50px;
  height: 50px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-secondary);
  border-radius: 50%;
}
.tj-project-item .project-content .project-icon a i {
  color: var(--tj-color-theme-primary);
}
.tj-project-item .project-content .project-icon a:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--tj-color-theme-primary);
}
.tj-project-item .project-content .project-icon a:hover i {
  color: var(--tj-color-common-white);
}
.tj-project-item .project-content .project-text {
  max-width: 315px;
  width: 100%;
}
.tj-project-item .project-content .project-text .sub-title {
  display: block;
  color: var(--tj-color-theme-primary);
  margin-bottom: 5px;
}
.tj-project-item .project-content .project-text .title {
  margin-bottom: 0;
}
.tj-project-item:hover .project-images::before {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.tj-project-item:hover .project-images::after {
  -webkit-transform: translateY(0px);
      -ms-transform: translateY(0px);
          transform: translateY(0px);
}
.tj-project-item:hover .project-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-project-item .project-images img {
    height: 500px;
  }
  .tj-project-item .project-content {
    max-width: 410px;
  }
  .tj-project-item .project-content .project-icon {
    width: 45px;
    height: 45px;
    left: -20px;
  }
  .tj-project-item .project-content .project-text .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-item .project-images::after {
    bottom: 35px;
    border-bottom: 50px solid var(--tj-color-theme-primary);
    border-left: 50px solid transparent;
  }
  .tj-project-item .project-images img {
    height: 430px;
  }
  .tj-project-item .project-content {
    max-width: 345px;
  }
  .tj-project-item .project-content .project-icon {
    width: 45px;
    height: 45px;
    left: -20px;
  }
  .tj-project-item .project-content .project-text .title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-project-item .project-images::after {
    bottom: 35px;
    border-bottom: 50px solid var(--tj-color-theme-primary);
    border-left: 50px solid transparent;
  }
  .tj-project-item .project-images img {
    height: 430px;
  }
  .tj-project-item .project-content {
    max-width: 345px;
  }
  .tj-project-item .project-content .project-icon {
    width: 45px;
    height: 45px;
    left: -20px;
  }
  .tj-project-item .project-content .project-text .title {
    font-size: 22px;
  }
}
@media (max-width: 575px) {
  .tj-project-item .project-images::before {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .tj-project-item .project-images::after {
    bottom: 35px;
    border-bottom: 50px solid var(--tj-color-theme-primary);
    border-left: 50px solid transparent;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }
  .tj-project-item .project-images img {
    height: 340px;
  }
  .tj-project-item .project-content {
    max-width: 315px;
    padding: 25px 15px 25px 40px;
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleX(1);
        -ms-transform: scaleX(1);
            transform: scaleX(1);
  }
  .tj-project-item .project-content .project-icon {
    width: 45px;
    height: 45px;
    left: -20px;
  }
  .tj-project-item .project-content .project-text .title {
    font-size: 22px;
  }
}

.project-style-2 {
  position: absolute;
  bottom: 0;
  right: 16%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  background: var(--tj-color-common-white);
  padding: 34px 15px 40px 50px;
  max-width: 430px;
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 2;
}
.project-style-2 .project-icon {
  position: absolute;
  top: 40px;
  left: -25px;
}
.project-style-2 .project-icon 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: 50px;
  height: 50px;
  line-height: 1;
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.project-style-2 .project-icon a i {
  color: var(--tj-color-theme-primary);
}
.project-style-2 .project-icon a:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--tj-color-theme-primary);
}
.project-style-2 .project-icon a:hover i {
  color: var(--tj-color-common-white);
}
.project-style-2 .project-text .sub-title {
  display: block;
  color: var(--tj-color-theme-primary);
  margin-bottom: 8px;
}
.project-style-2 .project-text .title {
  margin-bottom: 0;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .project-style-2 {
    right: 10%;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-style-2 {
    right: 5%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-style-2 {
    right: 3%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .project-style-2 {
    max-width: 350px;
    right: 3%;
  }
}
@media (max-width: 575px) {
  .project-style-2 {
    max-width: 300px;
    right: 3%;
    padding: 20px 15px 20px 50px;
  }
}

.project-style-3 {
  max-width: 530px;
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.project-style-3 .project-images img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-style-3 .project-content {
  max-width: 350px;
  width: 100%;
  background: var(--tj-color-common-white);
  padding: 30px 120px 30px 40px;
  position: absolute;
  bottom: -155px;
  left: 0;
  border-radius: 0px 150px 0px 0px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
}
.project-style-3 .project-content .sub-title {
  color: var(--tj-color-theme-primary);
  margin-bottom: 5px;
}
.project-style-3 .project-content .title {
  margin-bottom: 0;
  line-height: 1.4;
}
.project-style-3 .project-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.project-style-3 .project-content .title a:hover {
  color: var(--tj-color-theme-primary);
  background-size: 100% 2px;
}
.project-style-3 .project-content .project-icon {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.project-style-3 .project-content .project-icon 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: 50px;
  height: 50px;
  line-height: 1;
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.project-style-3 .project-content .project-icon a i {
  color: var(--tj-color-theme-primary);
}
.project-style-3 .project-content .project-icon a:hover {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: var(--tj-color-theme-primary);
}
.project-style-3 .project-content .project-icon a:hover i {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-style-3 .project-content {
    max-width: 280px;
    padding: 30px 120px 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-style-3 .project-content {
    max-width: 310px;
    padding: 30px 120px 30px 15px;
  }
}
@media (max-width: 575px) {
  .project-style-3 .project-content {
    max-width: 280px;
    padding: 25px 85px 30px 15px;
  }
}

.project-style-4 {
  position: relative;
  max-width: 310px;
  width: 100%;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.project-style-4 .project-images {
  position: relative;
  z-index: 1;
}
.project-style-4 .project-images img {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.project-style-4 .project-images .project-title {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  left: -165px;
  max-width: 250px;
  width: 100%;
  text-align: center;
  background: var(--tj-color-theme-primary);
  padding: 25px 15px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
          clip-path: polygon(0 0, 100% 0, 94% 100%, 6% 100%);
}
.project-style-4 .project-images .project-title .title {
  font-size: 20px;
  color: var(--tj-color-common-white);
  margin-bottom: 0;
}
.project-style-4:hover .project-title {
  left: -90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-style-4 {
    max-width: 100%;
  }
}

/* !END: Project CSS */
/**----------------------------------------
START: Project CSS
----------------------------------------*/
.tj-project-details {
  padding-bottom: 120px;
}
.tj-project-details .tj-main-sidebar {
  padding-left: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-details .tj-main-sidebar {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-details .tj-main-sidebar {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-details {
    padding-bottom: 80px;
  }
  .tj-project-details .tj-main-sidebar {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-details .service-feture {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .tj-project-details .service-feture .project-images img {
    width: 100%;
  }
}

.tj-project-widget {
  background: var(--tj-color-grey-14);
  margin-bottom: 40px;
  padding: 40px 30px;
}
.tj-project-widget:last-child {
  margin-bottom: 0;
}
.tj-project-widget .side-title {
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-project-widget {
    padding: 40px 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-project-widget {
    padding: 35px 15px;
  }
}

.project-details-item .project_wrapper {
  margin-bottom: 40px;
}
.project-details-item .project_wrapper .project-images {
  margin-bottom: 35px;
}
.project-details-item .project_wrapper .title {
  margin-bottom: 15px;
}
.project-details-item .project_wrapper .desc {
  line-height: 1.7;
}
.project-details-item .project_wrapper .desc p:last-child {
  margin-bottom: 0;
}
.project-details-item .service-feture .project-images img {
  border-radius: 0px;
}
.project-details-item .service-feture .feature-content .title {
  margin-bottom: 10px;
}

.project_catagory .catagory-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.project_catagory .catagory-list ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: var(--tj-fw-medium);
  padding: 19px 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  background: var(--tj-color-common-white);
}
.project_catagory .catagory-list ul li:last-child {
  margin-bottom: 0;
}
.project_catagory .catagory-list ul li span {
  color: var(--tj-color-text-body);
}
.project_catagory .catagory-list ul li span.first-child {
  min-width: 100px;
  position: relative;
  z-index: 1;
}
.project_catagory .catagory-list ul li span.first-child::before {
  position: absolute;
  content: ":";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
.project_catagory .catagory-list ul li .share-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.project_catagory .catagory-list ul li .share-socials li {
  border: none;
  padding: 0;
  margin-bottom: 0;
  background: transparent;
  color: var(--tj-color-text-body);
  -webkit-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
.project_catagory .catagory-list ul li .share-socials li::before {
  display: none;
}
.project_catagory .catagory-list ul li .share-socials li a:hover {
  color: var(--tj-color-theme-secondary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project_catagory .catagory-list ul li span.first-child {
    min-width: 80px;
  }
}

.check-list-two {
  margin-top: 20px;
}
.check-list-two ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.check-list-two ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.check-list-two ul li:last-child {
  margin-bottom: 0;
}
.check-list-two ul li i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 40px;
  width: 100%;
  height: 40px;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid rgba(135, 140, 143, 0.2);
}

/* !END: Project CSS */
/**----------------------------------------
Partner CSS
----------------------------------------*/
.tj-partner-section {
  padding-bottom: 120px;
}
.tj-partner-section .tj-heading-area {
  margin-bottom: 60px;
}
.tj-partner-section .tj-heading-area .partner-button {
  margin-top: 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) {
  .tj-partner-section {
    padding-bottom: 80px;
  }
  .tj-partner-section .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-partner-section .tj-heading-area .partner-button {
    margin-top: 25px;
  }
}

.partner-wrapper .partner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.partner-wrapper .partner-box:nth-child(1) {
  margin-bottom: 25px;
}
.partner-wrapper .partner-box:nth-child(2) {
  margin-bottom: 25px;
}
.partner-wrapper .partner-box:nth-child(3) {
  margin-left: -200px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .partner-wrapper .partner-box:nth-child(1) .partner-item {
    width: 200px;
  }
  .partner-wrapper .partner-box:nth-child(3) {
    margin-left: -100px;
  }
  .partner-wrapper .partner-box:nth-child(3) .partner-item {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .partner-wrapper .partner-box .partner-item {
    height: 120px;
  }
  .partner-wrapper .partner-box:nth-child(3) {
    margin-left: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .partner-wrapper .partner-box .partner-item {
    width: 218px;
  }
  .partner-wrapper .partner-box:nth-child(3) {
    margin-left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .partner-wrapper .partner-box .partner-item {
    height: 100px;
    width: 158px;
  }
  .partner-wrapper .partner-box:nth-child(3) {
    margin-left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .partner-wrapper .partner-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partner-wrapper .partner-box:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partner-wrapper .partner-box:nth-child(3) {
    margin-left: 0px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.partner-group {
  position: relative;
  z-index: 1;
}
.partner-group::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--tj-color-theme-secondary);
  -webkit-clip-path: polygon(85% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
          clip-path: polygon(85% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
}
.partner-group .partner-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 235px;
  height: 130px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-left: 1px solid var(--tj-color-border-3);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.partner-group .partner-item::after, .partner-group .partner-item::before {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  left: 0px;
  z-index: -1;
}
.partner-group .partner-item:before {
  height: 23%;
  top: 0px;
  border: 1px solid var(--tj-color-border-3);
  border-width: 1px 1px 0px 0px;
  -webkit-transform: skew(50deg);
      -ms-transform: skew(50deg);
          transform: skew(50deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.partner-group .partner-item:after {
  height: calc(80% - 4px);
  bottom: 0px;
  border: 1px solid var(--tj-color-border-3);
  border-width: 0px 1px 1px 0px;
}
.partner-group .partner-item:hover {
  border-color: var(--tj-color-theme-secondary);
}
.partner-group .partner-item:hover:after, .partner-group .partner-item:hover:before {
  border-color: var(--tj-color-theme-secondary);
}
.partner-group:hover::before {
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .partner-group .partner-item {
    width: 200px;
    height: 115px;
  }
}

/* !END: Partner CSS */
/**----------------------------------------
Testimonial CSS
----------------------------------------*/
.tj-testimonial-section {
  padding-top: 60px;
  position: relative;
  background: var(--tj-color-common-white);
  margin-top: 60px;
}
.tj-testimonial-section .testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%;
  background-size: cover;
  background-position: top center;
  -webkit-mask-image: url(../img/icon/mask.png);
          mask-image: url(../img/icon/mask.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color:#142f74;
  overflow: hidden;
  z-index: 3;
}
.tj-testimonial-section .testimonial-shapes {
  max-width: 20%;
  width: 100%;
  position: absolute;
  top: -32%;
  right: -110px;
  z-index: 1;
}
.tj-testimonial-section .testimonial-shapes2 {
    position: absolute;
    top: -50px;
    left: -39px;
    z-index: 3;
    opacity: 0.05;
}
/*.tj-testimonial-section .testimonial-shapes2 img {
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-testimonial-section .testimonial-shapes2 img {
    height: 350px;
  }
}
.tj-testimonial-section .tj-heading-area {
  max-width: 595px;
  width: 100%;
  margin-bottom: 40px;
  position: relative;
  z-index: 4;
}
.tj-testimonial-section .tj-heading-area .sub-title {
  color: #fff;
}
.tj-testimonial-section .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-testimonial-section .tj-testimonial-slider {
  padding-bottom: 45px;
  padding-left: 45px;
  position: relative;
  z-index: 3;
}
.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
  padding: 13px 0;
  margin-top: 35px;
}
.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #0070bb;
  opacity: 1;
  margin: 0px;
  display: inline-block;
}
.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active {
  position: relative;
}
.tj-testimonial-section .tj-testimonial-slider .testimonial-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgb(196 196 196 / 30%);
  border-radius: 50%;
}
@media (max-width: 575px) {
  .tj-testimonial-section .tj-testimonial-slider .testimonial-pagination {
    margin-top: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-testimonial-section .tj-testimonial-slider {
    padding-left: 24px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section .tj-testimonial-slider {
    padding-left: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-section {
    padding-top: 80px;
    background: var(--tj-color-theme-primary);
  }
  .tj-testimonial-section .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-testimonial-section .testimonial-bg {
    display: none;
  }
  .tj-testimonial-section .testimonial-shapes {
    top: -15%;
  }
  .tj-testimonial-section .tj-testimonial-slider {
    padding-left: 0px;
    padding-bottom: 25px;
  }
}

.tj-testimonial-section-two {
  padding-top: 120px;
  padding-bottom: 110px;
  background-color: var(--tj-color-theme-primary);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 0px 0px 800px 800px;
}
.tj-testimonial-section-two .tj-heading-area {
  max-width: 585px;
  width: 100%;
  margin: 0 auto 60px;
}
.tj-testimonial-section-two .tj-heading-area .sub-title {
  color: var(--tj-color-theme-secondary);
}
.tj-testimonial-section-two .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-testimonial-section-two .tj-testimonial-slider2 {
  border-radius: 200px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-testimonial-section-two .tj-testimonial-slider2 {
    border-radius: 50px;
  }
}
.tj-testimonial-section-two .testimonial-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 75px;
  margin-bottom: 20px;
  z-index: 3;
}
.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--tj-color-common-white);
  opacity: 1;
  margin: 0px;
  display: inline-block;
}
.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet-active {
  position: relative;
  background: var(--tj-color-theme-secondary);
}
.tj-testimonial-section-two .testimonial-pagination .swiper-pagination-bullet-active::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(241, 210, 169, 0.2);
  border-radius: 50%;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-testimonial-section-two {
    border-radius: 0px 0px 650px 650px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-testimonial-section-two {
    border-radius: 0px 0px 450px 450px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-testimonial-section-two {
    border-radius: 0px 0px 400px 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section-two {
    border-radius: 0px 0px 50px 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-testimonial-section-two {
    padding-top: 80px;
    padding-bottom: 70px;
    border-radius: 0px 0px 50px 50px;
  }
  .tj-testimonial-section-two .tj-heading-area {
    margin: 0 auto 40px;
  }
  .tj-testimonial-section-two .testimonial-pagination {
    margin-top: 60px;
  }
}
@media (max-width: 575px) {
  .tj-testimonial-section-two {
    border-radius: 0px;
  }
  .tj-testimonial-section-two .tj-testimonial-slider2 {
    border-radius: 50px;
  }
}

.tj-testimonial-section-three {
  padding-top: 120px;
  position: relative;
  z-index: 1;
}
.tj-testimonial-section-three .testimoial-shapes {
  position: absolute;
  top: 110px;
  right: 16%;
  max-width: 750px;
  width: 100%;
  z-index: 1;
}
.tj-testimonial-section-three .testimoial-shapes img {
  width: 100%;
}
.tj-testimonial-section-three::before {
  position: absolute;
  content: "";
  width: 40%;
  height: 90%;
  top: 18%;
  right: 16.2%;
  background: var(--tj-color-theme-secondary);
  border-radius: 0px 300px 0px 0px;
}
.tj-testimonial-section-three .tj-heading-area {
  max-width: 500px;
  width: 100%;
  margin-bottom: 60px;
}
.tj-testimonial-section-three .testimonial-thumb-slider {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.tj-testimonial-section-three .thumb-slider-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 995px;
  width: 100%;
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 10px;
  height: 210px;
  width: 100px;
  border: 1px solid rgba(143, 177, 130, 0.5);
  border-radius: 150px;
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
          box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.08);
  background: var(--tj-color-common-white);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img {
  position: relative;
  top: 15px;
  max-width: 65px;
  width: 100%;
  height: 65px;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: var(--tj-color-theme-secondary);
  border-radius: 50%;
  z-index: 1;
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img img,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 12px;
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-24);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left i,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left i {
  line-height: 1;
  color: var(--tj-color-text-body);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-left span,
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .arrow-left span {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next {
  position: relative;
  z-index: 2;
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 12px;
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-24);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i {
  line-height: 1;
  color: var(--tj-color-text-body);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-testimonial-section-three .thumb-slider-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -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;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
    height: 185px;
    width: 75px;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 125px;
    margin-top: -40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-testimonial-section-three .thumb-slider-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -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;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
    height: 185px;
    width: 75px;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 125px;
    margin-top: -40px;
  }
}
@media (max-width: 575px) {
  .tj-testimonial-section-three .thumb-slider-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 25px;
    -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;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev {
    height: 160px;
    width: 65px;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-prev .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-prev .thumb_img {
    max-width: 50px;
    height: 50px;
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .thumb_img,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .thumb_img {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right span,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right span {
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-next .slider-next .arrow-right i,
  .tj-testimonial-section-three .thumb-slider-area .tj-thumb-prev .slider-next .arrow-right i {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .tj-testimonial-section-three .thumb-slider-area .mobile-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 110px;
    margin-top: -40px;
  }
}
.tj-testimonial-section-three .testimonial-inner {
  position: relative;
  max-width: 765px;
  width: 100%;
  z-index: 2;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-testimonial-section-three::before {
    width: 50%;
    right: 4%;
  }
  .tj-testimonial-section-three .testimoial-shapes {
    max-width: 650px;
    top: 190px;
    right: 10%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-testimonial-section-three::before {
    width: 50%;
    right: 4%;
  }
  .tj-testimonial-section-three .testimoial-shapes {
    max-width: 650px;
    top: 190px;
    right: 4%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-testimonial-section-three::before {
    width: 42%;
    right: 3%;
  }
  .tj-testimonial-section-three .testimoial-shapes {
    max-width: 550px;
    top: 215px;
    right: 0;
  }
  .tj-testimonial-section-three .thumb-slider-area {
    max-width: 700px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-testimonial-section-three {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  .tj-testimonial-section-three .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-testimonial-section-three::before {
    display: none;
  }
  .tj-testimonial-section-three .testimoial-shapes {
    display: none;
  }
}

.testimonial-item {
  position: relative;
  z-index: 4;
}
.testimonial-item .testimonial-content {
  position: relative;
  max-width: 345px;
  width: 100%;
  background: var(--tj-color-common-white);
  padding: 22px 15px 16px 12px;
  -webkit-clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
          clip-path: polygon(60% 0, 100% 25%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0 0);
  border: 1px solid var(--tj-color-border-3);
  z-index: 2;
}
.testimonial-item .testimonial-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: url(../img/icon/test.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: -1;
  opacity: 0.2;
}
.testimonial-item .testimonial-content .test-quote {
    font-size: 35px;
    color: #0070bc;
    margin-bottom: 10px;
    line-height: 1;
}
.testimonial-item .testimonial-content .desc {
  font-style: italic;
  line-height: 1.7;
}
.testimonial-item .testimonial-content .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-item .testimonial-content .testimonial-rating {
    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;
    background: #cfecff;
    max-width: 235px;
    width: 100%;
    margin: 15px auto 0px;
    border-radius: 50px;
    padding: 8px 8px;
}
.testimonial-item .testimonial-content .testimonial-rating .rating-number {
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
}
.testimonial-item .testimonial-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-3);
  border-radius: 150px;
  max-width: 380px;
  width: 100%;
  position: relative;
  top: -5px;
  z-index: 3;
  padding: 12px 8px 12px 125px;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.testimonial-item .testimonial-auother .auother-images {
  position: absolute;
  top: 50%;
  left: -25px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  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: 80px;
  line-height: 1;
  background: var(--tj-color-theme-secondary);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  padding: 12px;
}
.testimonial-item .testimonial-auother .auother-images img {
  height: 125px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.testimonial-item .testimonial-auother .auother-name .sub-title {
  display: block;
  margin-bottom: 4px;
}
.testimonial-item .testimonial-auother .auother-name .title {
  margin-bottom: 0;
}
.testimonial-item:hover .testimonial-auother {
  background-color: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item .testimonial-auother {
    max-width: 340px;
    padding: 25px 15px 25px 100px;
    top: -20px;
  }
  .testimonial-item .testimonial-auother .auother-images {
    width: 100px;
    height: 120px;
    left: -15px;
  }
  .testimonial-item .testimonial-auother .auother-images img {
    height: 100px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item .testimonial-content {
    padding: 30px 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .testimonial-item .testimonial-content {
    padding: 30px 15px;
    max-width: 295px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-item .testimonial-auother {
    top: -10px;
  }
  .testimonial-item .testimonial-auother .auother-images {
    width: 100px;
    height: 120px;
    left: -1px;
  }
  .testimonial-item .testimonial-auother .auother-images img {
    height: 100px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item .testimonial-content {
    max-width: 335px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-item .testimonial-auother {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .testimonial-item .testimonial-content {
    max-width: 310px;
    margin-left: auto;
    margin-right: auto;
  }
  .testimonial-item .testimonial-auother {
    margin-left: auto;
    margin-right: auto;
  }
}

.testimonial-item-two {
  background: var(--tj-color-theme-secondary);
  padding: 25px 35px;
}
.testimonial-item-two .test-shapes {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 95px;
  width: 100%;
  z-index: -1;
}
.testimonial-item-two .test-shapes img {
  width: 100%;
}
.testimonial-item-two .test-shapes2 {
  position: absolute;
  left: 25%;
  bottom: 25px;
  max-width: 180px;
  width: 100%;
  z-index: -1;
}
.testimonial-item-two .test-shapes2 img {
  width: 100%;
}
.testimonial-item-two .testimonial-rating {
  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;
  margin-bottom: 20px;
}
.testimonial-item-two .testimonial-rating .star-ratings .empty-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item-two .testimonial-rating .rating-number {
  color: var(--tj-color-theme-primary);
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
}
.testimonial-item-two .auother-images {
  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;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 170px;
  height: 200px;
  background-color: var(--tj-color-theme-secondary);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  z-index: 2;
}
.testimonial-item-two .auother-images img {
  max-width: 140px;
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.testimonial-item-two .auother-text {
  background: var(--tj-color-common-white);
  border-radius: 150px;
  margin-bottom: 15px;
  padding: 35px 25px 35px 185px;
  position: relative;
  z-index: 1;
}
.testimonial-item-two .auother-text .title {
  margin-bottom: 20px;
}
.testimonial-item-two .auother-text .desc {
  line-height: 1.7;
}
.testimonial-item-two .auother-text .desc p {
  margin-bottom: 0;
}
.testimonial-item-two .auother-text .testimonial-quote {
  max-width: 95px;
  width: 100%;
  position: absolute;
  top: -35px;
  right: 35px;
  z-index: -1;
}
.testimonial-item-two .auother-text .testimonial-quote img {
  width: 100%;
}
.testimonial-item-two .sub-title {
  display: block;
  font-size: 18px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-sbold);
  text-align: center;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .testimonial-item-two .auother-text {
    padding: 35px 25px 35px 140px;
  }
  .testimonial-item-two .auother-text .title {
    margin-bottom: 10px;
  }
  .testimonial-item-two .auother-text .testimonial-quote {
    max-width: 80px;
    top: -25px;
    right: 20px;
  }
  .testimonial-item-two .auother-images {
    width: 130px;
    height: 160px;
  }
  .testimonial-item-two .auother-images img {
    max-width: 110px;
    height: 140px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item-two .auother-text {
    padding: 35px 25px 35px 100px;
  }
  .testimonial-item-two .auother-text .title {
    margin-bottom: 10px;
  }
  .testimonial-item-two .auother-text .testimonial-quote {
    max-width: 65px;
    top: -15px;
    right: 20px;
  }
  .testimonial-item-two .auother-images {
    width: 100px;
    height: 130px;
  }
  .testimonial-item-two .auother-images img {
    max-width: 80px;
    height: 110px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item-two {
    border-radius: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item-two {
    border-radius: 50px;
    padding: 25px 20px;
  }
  .testimonial-item-two .auother-text {
    padding: 25px 25px 25px 100px;
  }
  .testimonial-item-two .auother-text .title {
    margin-bottom: 10px;
  }
  .testimonial-item-two .auother-text .testimonial-quote {
    max-width: 65px;
    top: -20px;
    right: 20px;
  }
  .testimonial-item-two .auother-images {
    width: 100px;
    height: 130px;
  }
  .testimonial-item-two .auother-images img {
    max-width: 80px;
    height: 110px;
  }
}
@media (max-width: 575px) {
  .testimonial-item-two {
    border-radius: 50px;
    padding: 25px 15px;
  }
  .testimonial-item-two .auother-text {
    padding: 75px 15px 25px;
    border-radius: 50px;
  }
  .testimonial-item-two .auother-text .title {
    margin-bottom: 10px;
  }
  .testimonial-item-two .auother-text .testimonial-quote {
    max-width: 50px;
    top: -15px;
    right: 5px;
  }
  .testimonial-item-two .auother-images {
    width: 85px;
    height: 100px;
    top: 85px;
    left: 25px;
  }
  .testimonial-item-two .auother-images img {
    max-width: 70px;
    height: 80px;
  }
}

.testimonial-item-three {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  max-width: 765px;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}
.testimonial-item-three .tj-testimonial-2-thumb {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 185px;
  width: 100%;
}
.testimonial-item-three .tj-testimonial-2-thumb img {
  position: relative;
  z-index: 2;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0px 0px 150px 0px;
}
.testimonial-item-three .tj-testimonial-2-thumb .line-3,
.testimonial-item-three .tj-testimonial-2-thumb .line-1 {
  position: absolute;
  width: 2px;
  height: 45%;
  left: 100px;
  bottom: -45px;
  background: var(--tj-color-theme-primary);
}
.testimonial-item-three .tj-testimonial-2-thumb .line-2 {
  position: absolute;
  width: 2px;
  height: 85%;
  left: 90px;
  bottom: -65px;
  background: var(--tj-color-theme-primary);
}
.testimonial-item-three .tj-testimonial-2-thumb .line-3 {
  left: 80px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item-three .tj-testimonial-2-thumb {
    max-width: 110px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb img {
    height: 125px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb .line-3,
  .testimonial-item-three .tj-testimonial-2-thumb .line-1 {
    height: 40%;
    left: 40px;
    bottom: -20px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb .line-2 {
    width: 2px;
    height: 60%;
    left: 55px;
    bottom: -50px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb .line-3 {
    left: 70px;
  }
}
@media (max-width: 575px) {
  .testimonial-item-three .tj-testimonial-2-thumb {
    max-width: 65px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb img {
    height: 60px;
  }
  .testimonial-item-three .tj-testimonial-2-thumb .line-2,
  .testimonial-item-three .tj-testimonial-2-thumb .line-3,
  .testimonial-item-three .tj-testimonial-2-thumb .line-1 {
    display: none;
  }
}
.testimonial-item-three .testimonial-content {
  position: relative;
  padding: 45px 25px 85px 220px;
  z-index: 2;
}
.testimonial-item-three .testimonial-content .testimonial-auother .sub-title {
  display: block;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  margin-bottom: 10px;
}
.testimonial-item-three .testimonial-content .testimonial-auother .title {
  margin-bottom: 30px;
}
.testimonial-item-three .testimonial-content .desc {
  max-width: 410px;
  width: 100%;
  line-height: 1.7;
}
.testimonial-item-three .testimonial-content .desc p:last-child {
  margin-bottom: 0;
}
.testimonial-item-three .testimonial-content .testimonial-rating {
  position: absolute;
  right: 85px;
  bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
}
.testimonial-item-three .testimonial-content .testimonial-rating .star-ratings .empty-ratings {
  color: var(--tj-color-theme-primary);
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.testimonial-item-three .testimonial-quote {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 65px;
  height: 65px;
  line-height: 1;
  position: absolute;
  bottom: 30px;
  left: 60px;
  font-size: 40px;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-border-3);
  border-radius: 50%;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.testimonial-item-three .testimonial-rating {
  position: relative;
}
.testimonial-item-three .testimonial-rating .star-ratings .fill-ratings {
  position: absolute;
}
.testimonial-item-three .testimonial-rating .star-ratings .empty-ratings {
  position: absolute;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-item-three {
    max-width: 720px;
  }
  .testimonial-item-three .testimonial-content {
    padding: 35px 15px 75px 200px;
  }
  .testimonial-item-three .testimonial-content .testimonial-rating {
    bottom: 65px;
  }
  .testimonial-item-three .test-thumb .line-2 {
    bottom: -50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-item-three {
    margin-left: 0px;
  }
  .testimonial-item-three .testimonial-content {
    padding: 35px 25px 70px 220px;
  }
  .testimonial-item-three .testimonial-content .testimonial-rating {
    right: 100px;
    bottom: 60px;
  }
  .testimonial-item-three .testimonial-content .testimonial-auother .title {
    margin-bottom: 20px;
  }
  .testimonial-item-three .test-thumb .line-3,
  .testimonial-item-three .test-thumb .line-1 {
    height: 35%;
    bottom: -20px;
  }
  .testimonial-item-three .test-thumb .line-2 {
    height: 65%;
    bottom: -35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-item-three {
    margin-left: 0px;
  }
  .testimonial-item-three .testimonial-content {
    padding: 25px 25px 65px 125px;
  }
  .testimonial-item-three .testimonial-content .testimonial-rating {
    right: 100px;
    bottom: 40px;
  }
  .testimonial-item-three .testimonial-content .testimonial-auother .title {
    margin-bottom: 15px;
  }
  .testimonial-item-three .test-thumb {
    max-width: 100px;
  }
  .testimonial-item-three .test-thumb img {
    height: 100px;
  }
  .testimonial-item-three .test-thumb .line-3,
  .testimonial-item-three .test-thumb .line-1 {
    height: 35%;
    bottom: -15px;
    left: 55px;
  }
  .testimonial-item-three .test-thumb .line-3 {
    left: 25px;
  }
  .testimonial-item-three .test-thumb .line-2 {
    height: 65%;
    bottom: -35px;
    left: 40px;
  }
  .testimonial-item-three .testimonial-quote {
    left: 30px;
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  .testimonial-item-three {
    margin-left: 0px;
  }
  .testimonial-item-three .testimonial-content {
    padding: 25px 25px 65px 75px;
  }
  .testimonial-item-three .testimonial-content .testimonial-rating {
    right: 15px;
    bottom: 75px;
  }
  .testimonial-item-three .testimonial-content .testimonial-auother .title {
    margin-bottom: 10px;
  }
  .testimonial-item-three .testimonial-content .desc {
    margin-bottom: 50px;
  }
  .testimonial-item-three .test-thumb {
    max-width: 60px;
  }
  .testimonial-item-three .test-thumb img {
    height: 60px;
  }
  .testimonial-item-three .test-thumb .line-3,
  .testimonial-item-three .test-thumb .line-1 {
    height: 35%;
    bottom: -5px;
    left: 35px;
  }
  .testimonial-item-three .test-thumb .line-3 {
    left: 15px;
  }
  .testimonial-item-three .test-thumb .line-2 {
    height: 65%;
    bottom: -25px;
    left: 25px;
  }
  .testimonial-item-three .testimonial-quote {
    width: 45px;
    height: 45px;
    left: 15px;
    font-size: 30px;
  }
}

.star-ratings {
  unicode-bidi: bidi-override;
  color: var(--tj-color-theme-primary);
  font-size: 16px;
  letter-spacing: 5px;
  line-height: 1;
  position: relative;
  margin: 0;
  padding: 0;
  -webkit-text-stroke: 1px var(--tj-color-theme-primary);
}
.star-ratings .fill-ratings {
  color: var(--tj-color-theme-primary);
  padding: 0;
  position: absolute;
  z-index: 1;
  display: block;
  top: 0;
  left: 0;
  overflow: hidden;
}
.star-ratings .fill-ratings span {
  display: inline-block;
}
.star-ratings .fill-ratings span:nth-child(1) {
  position: relative;
  top: 20px;
}
.star-ratings .fill-ratings span:nth-child(2) {
  margin-right: 20px;
}
.star-ratings .empty-ratings {
  padding: 0;
  display: block;
  z-index: 0;
  color: orange;
  -webkit-text-stroke: 1px #ffa500;
}

.swiper-button-next {
  width: 150px;
  height: 110px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.swiper-button-next .test-thumb img {
  border-radius: 50%;
  max-width: 65px;
  height: 65px;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 1;
}

/* !END: Testimonial CSS */
/**----------------------------------------
Blog CSS
----------------------------------------*/
.tj-blog-section {
  padding-top: 120px;
  padding-bottom: 70px;
}
.tj-blog-section.blog-style-two {
  padding-top: 0px;
}
.tj-blog-section .tj-heading-area {
  max-width: 565px;
  margin: 0 auto 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .tj-blog-section .tj-heading-area {
    margin: 0 auto 40px;
  }
}

.tj-blog-section-two {
  /*padding-top: 60px;*/
  /*padding-bottom: 30px;*/
}
.tj-blog-section-two.blog-style-three {
  padding-top: 0px;
}
.tj-blog-section-two .tj-heading-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;
  margin-bottom: 60px;
}
.tj-blog-section-two .tj-heading-area .heading-left {
  max-width: 540px;
  width: 100%;
}
.tj-blog-section-two .tj-heading-area .blog-button {
  max-width: 210px;
  width: 100%;
}
/*@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  .tj-blog-section-two .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-blog-section-two .tj-heading-area .heading-left {
    max-width: 465px;
  }
  .tj-blog-section-two .tj-heading-area .blog-button .tj-secondary-btn {
    padding: 23px 25px;
  }
}*/
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  /*.tj-blog-section-two {
    padding-bottom: 80px;
  }*/
  .tj-blog-section-two .tj-heading-area {
    -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;
  }
  .tj-blog-section-two .blog-button .tj-button {
    margin: 0 auto;
  }
}

.tj-blog-section-three {
  padding-top: 175px;
  padding-bottom: 90px;
}
.tj-blog-section-three.blog-style-one {
  padding-top: 0px;
}
.tj-blog-section-three .tj-heading-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;
  margin-bottom: 60px;
}
.tj-blog-section-three .tj-heading-area .heading-text {
  max-width: 550px;
  width: 100%;
}
.tj-blog-section-three .blog-button {
  max-width: 210px;
  width: 100%;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section-three {
    padding-top: 3%;
    padding-bottom: 50px;
  }
  .tj-blog-section-three .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-blog-section-three .tj-heading-area .heading-text {
    max-width: 450px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-section-three {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .tj-blog-section-three .blog-button {
    margin: 0 auto;
  }
}

.blog-item {
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.blog-item::after, .blog-item::before {
  position: absolute;
  content: "";
  width: calc(90% - 2px);
  left: 45px;
  z-index: -1;
}
.blog-item::before {
  top: 74px;
  border: 2px solid var(--tj-color-grey-5);
  border-width: 2px 3px 0px 0px;
  -webkit-transform: skew(45deg);
      -ms-transform: skew(45deg);
          transform: skew(45deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.blog-item::after {
  height: calc(90% - 4px);
  bottom: -25px;
  border: 2px solid var(--tj-color-grey-5);
  border-width: 0px 2px 2px 0px;
}
.blog-item .blog-content-box {
  position: relative;
  z-index: 1;
}
.blog-item .blog-content-box:before {
  position: absolute;
  content: "";
  width: calc(25% - 2px);
  right: 82px;
  bottom: -25px;
  height: 25%;
  border: 2px solid var(--tj-color-theme-primary);
  border-width: 0px 2px 0px 0px;
  -webkit-transform: skew(-45deg);
      -ms-transform: skew(-45deg);
          transform: skew(-45deg);
  -webkit-transform-origin: left bottom;
      -ms-transform-origin: left bottom;
          transform-origin: left bottom;
  z-index: -1;
}
.blog-item .blog-content-box::after {
  position: absolute;
  content: "";
  right: -43px;
  bottom: -25px;
  width: 0;
  height: 0;
  border-bottom: 125px solid var(--tj-color-common-white);
  border-left: 125px solid transparent;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: -1;
}
.blog-item .blog-inner {
  max-width: 385px;
  width: 100%;
}
.blog-item .blog-inner::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 35%;
  left: 45px;
  bottom: 40%;
  background: var(--tj-color-grey-5);
  z-index: -1;
}
.blog-item .blog-inner::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 10%;
  left: 45px;
  bottom: -25px;
  background: var(--tj-color-grey-5);
  z-index: -1;
}
.blog-item .blog-inner .blog-images {
  position: relative;
  overflow: hidden;
  z-index: 1;
  -webkit-clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
          clip-path: polygon(35% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
}
.blog-item .blog-inner .blog-images a {
  display: inline-block;
}
.blog-item .blog-inner .blog-images a img {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  width: 100%;
}
.blog-item .blog-inner .blog-images .date {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 0;
  font-size: 14px;
  padding: 5px 20px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-common-white);
}
.blog-item .blog-inner .blog-content {
  background: var(--tj-color-common-white);
  padding-left: 30px;
}
.blog-item .blog-inner .blog-content .title {
  margin-bottom: 0;
  line-height: 1.5;
}
.blog-item .blog-inner .blog-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-item .blog-inner .blog-content .title a:hover {
  color: var(--tj-color-theme-primary);
  background-size: 100% 2px;
}
.blog-item .blog-inner .blog-button {
  margin-top: 20px;
}
.blog-item .blog-inner .blog-button .read-more {
  padding: 11px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  background: var(--tj-color-theme-bg);
  position: relative;
  z-index: 1;
}
.blog-item .blog-inner .blog-button .read-more::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
  z-index: -1;
}
.blog-item .blog-inner .blog-button .read-more:hover::before {
  width: 100%;
}
.blog-item .blog-inner .blog-meta {
  margin-top: 30px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item::before {
    top: 72px;
  }
  .blog-item .blog-inner {
    max-width: 340px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .blog-item .blog-inner {
    max-width: 420px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-item::before {
    top: 69px;
  }
  .blog-item .blog-inner {
    max-width: 320px;
  }
  .blog-item .blog-inner .blog-content-box::before {
    height: 27%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-item::before {
    top: 79px;
  }
  .blog-item .blog-inner {
    max-width: 475px;
  }
  .blog-item .blog-inner::before {
    bottom: 35%;
  }
  .blog-item .blog-inner .blog-content-box::before {
    height: 23%;
    right: 83px;
  }
}
@media (max-width: 575px) {
  .blog-item::before {
    top: 69px;
  }
  .blog-item .blog-inner {
    max-width: 340px;
  }
}
.blog-item:hover .blog-inner .blog-images a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-item-two {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  margin-bottom: 60px;
}
.blog-item-two .blog-images {
  position: relative;
  /*max-width: 760px;*/
  overflow: hidden;
  /*border-radius: 0px 0px 0px 265px;*/
  width: 100%;
  z-index: 1;
}
.blog-item-two .blog-images a {
  width: 100%;
  display: inline-block;
}
.blog-item-two .blog-images a img {
  /*height: 420px;*/
  /*-o-object-fit: cover;
     object-fit: cover;*/
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.blog-item-two .blog-images .date {
  position: absolute;
  top: 0;
  left: 0;
}
.blog-item-two .blog-images .date .line-1 {
  display: block;
  max-width: 95px;
  width: 100%;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-common-white);
  padding: 8px 20px;
  text-align: center;
}
.blog-item-two .blog-images .date .line-2 {
  display: block;
  font-size: 24px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  padding: 2px 20px;
  text-align: center;
}
.blog-item-two .blog-content {
  background: var(--tj-color-theme-bg-3);
  padding: 50px;
}
.blog-item-two .blog-content .blog-auother {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background: var(--tj-color-common-white);
  max-width: 275px;
  width: 100%;
  border-radius: 40px;
  padding: 10px;
  margin-bottom: 35px;
}
.blog-item-two .blog-content .blog-auother .auother-images {
  max-width: 65px;
  width: 100%;
}
.blog-item-two .blog-content .blog-auother .auother-images a {
  display: inline-block;
}
.blog-item-two .blog-content .blog-auother .auother-images a img {
  height: 65px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.blog-item-two .blog-content .blog-auother .auother-text .sub-title {
  display: block;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.blog-item-two .blog-content .blog-auother .auother-text .title {
  margin-bottom: 0;
}
.blog-item-two .blog-content .blog-meta {
  margin-bottom: 20px;
}
.blog-item-two .blog-content .title {
  margin-bottom: 0;
  line-height: 1.4;
}
.blog-item-two .blog-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-item-two .blog-content .title a:hover {
  color: #fff;
  background-size: 100% 2px;
}
.blog-item-two .blog-content .blog-button {
  margin-top: 45px;
}
.blog-item-two .blog-content .blog-button .read-more {
  padding: 11px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  background: var(--tj-color-theme-secondary);
  position: relative;
  z-index: 1;
}
.blog-item-two .blog-content .blog-button .read-more i {
  color: var(--tj-color-theme-primary);
}
.blog-item-two .blog-content .blog-button .read-more::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.blog-item-two .blog-content .blog-button .read-more:hover {
  color: var(--tj-color-common-white);
}
.blog-item-two .blog-content .blog-button .read-more:hover::before {
  width: 100%;
}
.blog-item-two .blog-content .blog-button .read-more:hover i {
  color: var(--tj-color-common-white);
}
.blog-item-two.style-2 {
  /*-webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;*/
  margin-bottom: 30px;
}
.blog-item-two.style-2 .blog-images {
  /*max-width: 135px;*/
  /*border-radius: 0px 0px 0px 65px;*/
  width: 100%;
}
.blog-item-two.style-2 .blog-images a {
  display: inline-block;
  width: 100%;
}
.blog-item-two.style-2 .blog-images a img {
  width: 100%;
  height: 169px;
/*  -o-object-fit: cover;
     object-fit: cover;*/
}
.blog-item-two.style-2 .blog-content {
  background: transparent;
  padding: 0px;
}
.blog-item-two.style-2 .blog-content .date {
  display: inline-block;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg-3);
  padding: 5px 20px;
  margin-bottom: 25px;
}
.blog-item-two.style-2 .blog-content .title {
    font-size: 22px;
    line-height: 1.6;
    color: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-item-two .blog-content {
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-item-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    gap: 0px;
  }
  .blog-item-two.style-2 {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    gap: 30px;
  }
  /*.blog-item-two .blog-images {
    border-radius: 0px 65px 0px 0px;
  }*/
  .blog-item-two .blog-content .blog-auother {
    gap: 10px;
    margin-bottom: 25px;
  }
  .blog-item-two .blog-content .blog-button {
    margin-top: 25px;
  }
}
@media (max-width: 575px) {
  /*.blog-item-two {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 30px;
    gap: 0px;
  }
  .blog-item-two.style-2 {
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    gap: 12px;
  }*/
 /* .blog-item-two .blog-images {
    border-radius: 0px 65px 0px 0px;
  }*/
}
.blog-item-two:hover .blog-images a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.blog-item-three {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 2;
}
.blog-item-three .blog-images {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.blog-item-three .blog-images a {
  width: 100%;
  display: inline-block;
}
.blog-item-three .blog-images a img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
  transition: all 5s cubic-bezier(0.23, 1, 0.32, 1) 0s;
}
.blog-item-three .blog-images .date {
  position: absolute;
  top: 0;
  left: -125px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}
.blog-item-three .blog-images .date .line-1 {
  display: block;
  max-width: 95px;
  width: 100%;
  font-size: 14px;
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-common-white);
  padding: 8px 20px;
  text-align: center;
}
.blog-item-three .blog-images .date .line-2 {
  display: block;
  font-size: 24px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  padding: 2px 20px;
  text-align: center;
}
.blog-item-three .blog-inner {
  position: relative;
  background: var(--tj-color-common-white);
  border: 1px solid transparent;
  padding: 35px 15px 0px 0px;
  z-index: 1;
  margin-top: -85px;
  border-radius: 0px 100px 0px 0px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.blog-item-three .blog-inner .blog-content {
  background: var(--tj-color-common-white);
  padding-left: 30px;
  border-radius: 0px 50px 0px 0px;
}
.blog-item-three .blog-inner .blog-content .title {
  margin-bottom: 0;
  line-height: 1.5;
}
.blog-item-three .blog-inner .blog-content .title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-item-three .blog-inner .blog-content .title a:hover {
  color: var(--tj-color-theme-primary);
  background-size: 100% 2px;
}
.blog-item-three .blog-inner .blog-button {
  max-width: 370px;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 40px;
}
.blog-item-three .blog-inner .blog-button .read-more {
  padding: 14px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 12px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  background: var(--tj-color-theme-bg);
  line-height: 1;
  position: relative;
  z-index: 1;
}
.blog-item-three .blog-inner .blog-button .read-more::before {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--tj-color-theme-secondary);
  z-index: -1;
}
.blog-item-three .blog-inner .blog-button .read-more:hover::before {
  width: 100%;
}
.blog-item-three .blog-inner .blog-meta {
  margin-bottom: 10px;
}
.blog-item-three:hover .blog-inner {
  border-color: 1px solid var(--tj-color-theme-primary);
}
.blog-item-three:hover .blog-images a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.blog-item-three:hover .blog-images .date {
  left: 0px;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .blog-item-three .blog-inner .blog-content {
    padding-left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .blog-item-three .blog-inner .blog-content {
    padding-left: 15px;
  }
}

.tj-blog-standard {
  padding-bottom: 120px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-blog-standard {
    padding-bottom: 40px;
  }
  .tj-blog-standard .blog-pagination {
    margin-top: 30px;
  }
}

.blog-standard-item {
  margin-bottom: 50px;
}
.blog-standard-item .post-thumb-image {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 2;
}
.blog-standard-item .post-thumb-image a {
  display: inline-block;
  width: 100%;
}
.blog-standard-item .post-thumb-image a img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.blog-standard-item .post-thumb-image .date {
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 14px;
  padding: 9px 25px;
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
  background: var(--tj-color-theme-secondary);
}
.blog-standard-item .post-thumb-image .blog_video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-standard-item .post-thumb-image .blog_video .video-popup {
  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: 70px;
  height: 55px;
  line-height: 1;
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  position: relative;
  z-index: 1;
  -webkit-animation: animate-pulse 2.5s linear infinite;
          animation: animate-pulse 2.5s linear infinite;
  border-radius: 50%;
}
.blog-standard-item .post-thumb-image .blog_video .video-popup::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 110px;
  height: 110px;
  z-index: 1;
  border-radius: 50%;
  background: var(--tj-color-theme-primary);
}
.blog-standard-item .post-thumb-image .blog_video .video-popup span {
  position: relative;
  font-size: 25px;
  z-index: 2;
}
.blog-standard-item .blog-meta {
  margin-top: 35px;
  margin-bottom: 20px;
}
.blog-standard-item .details-title {
  margin-bottom: 20px;
}
.blog-standard-item .details-title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog-standard-item .details-title a:hover {
  color: var(--tj-color-theme-primary);
  background-size: 100% 2px;
}
.blog-standard-item .desc {
  max-width: 790px;
  width: 100%;
}
.blog-standard-item .desc p {
  line-height: 1.8;
  margin-bottom: 20px;
}
.blog-standard-item .desc p:last-child {
  margin-bottom: 0;
}
.blog-standard-item .standard-button {
  margin-top: 25px;
}
.blog-standard-item .standard-button .tj-button {
  max-width: 175px;
  height: 56px;
  border-radius: 0px;
}
.blog-standard-item .standard-button .tj-button .tj-secondary-btn {
  font-size: 16px;
  text-transform: capitalize;
}
.blog-standard-item .blog-wrapper-slider {
  position: relative;
  z-index: 1;
}
.blog-standard-item .blog-wrapper-slider .post-thumb-image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.blog-standard-item .blog-wrapper-slider .post-thumb-image img {
  width: 100%;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev {
  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;
  width: 65px;
  height: 65px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  font-size: 25px;
  color: var(--tj-color-text-body-3);
  background: rgba(241, 210, 169, 0.8);
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next i,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev i {
  color: var(--tj-color-text-body-3);
}
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next:hover,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
}
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next:hover i,
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev:hover i {
  color: var(--tj-color-common-white);
}
.blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next {
  left: auto;
  right: 30px;
}
.blog-standard-item:hover .post-thumb-image a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-standard-item .post-thumb-image .blog_video .video-popup::before {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 575px) {
  .blog-standard-item .details-title {
    margin-bottom: 15px;
  }
  .blog-standard-item .post-thumb-image .blog_video .video-popup::before {
    width: 80px;
    height: 80px;
  }
  .blog-standard-item .post-thumb-image .blog_video::before {
    width: 70px;
    height: 70px;
  }
  .blog-standard-item .post-thumb-image .date {
    padding: 7px 15px;
  }
  .blog-standard-item .blog-meta {
    margin-top: 25px;
  }
  .blog-standard-item .blog-meta ul {
    gap: 13px;
  }
  .blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next,
  .blog-standard-item .blog-wrapper-slider .slider-navigation .slider-prev {
    width: 45px;
    height: 45px;
    font-size: 18px;
    left: 20px;
  }
  .blog-standard-item .blog-wrapper-slider .slider-navigation .slider-next {
    left: auto;
    right: 20px;
  }
}

.blog-pagination {
  position: relative;
  background-color: var(--tj-color-common-white);
  margin-top: 65px;
  z-index: 2;
}
.blog-pagination ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.blog-pagination ul li .page-numbers {
  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;
  width: 60px;
  height: 60px;
  line-height: 1;
  font-size: 18px;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  border: 1px solid var(--tj-color-border-6);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.blog-pagination ul li .page-numbers i {
  line-height: 1;
  font-size: 18px;
}
.blog-pagination ul li .page-numbers:hover, .blog-pagination ul li .page-numbers.current {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.blog-pagination ul li .page-numbers:hover i, .blog-pagination ul li .page-numbers.current i {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-pagination ul li .page-numbers {
    width: 50px;
    height: 50px;
  }
}

.blog-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 25px;
}
.blog-meta ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-weight: var(--tj-fw-medium);
}
.blog-meta ul li i {
  color: var(--tj-color-theme-primary);
}
.blog-meta ul li a:hover {
  color: var(--tj-color-theme-primary);
}

/* !END: Blog CSS */
/**----------------------------------------
Blog Details CSS
----------------------------------------*/
.tj-sidebar-widget {
  position: relative;
  padding-left: 15px;
  z-index: 3;
}
.tj-sidebar-widget .widget-title {
  color: var(--tj-color-heading-primary);
  position: relative;
  margin-bottom: 35px;
  font-weight: var(--tj-fw-bold);
  z-index: 1;
}
.tj-sidebar-widget .widget-title::before {
  position: absolute;
  content: "";
  width: 40px;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-primary)), to(var(--tj-color-theme-secondary)));
  background: linear-gradient(90deg, var(--tj-color-theme-primary) 0%, var(--tj-color-theme-secondary) 100%);
}
.tj-sidebar-widget .tj-blog-widget {
  margin-bottom: 65px;
}
.tj-sidebar-widget .tj-blog-widget .side-title {
  font-weight: var(--tj-fw-regular);
  margin-bottom: 25px;
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form {
  position: relative;
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text] {
  padding: 18px 50px 18px 25px;
  font-weight: var(--tj-fw-medium);
  background: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-6);
  width: 100%;
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-moz-placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-grey-11);
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form :focus {
  outline: none;
  border: none;
  -webkit-box-shadow: 0 0 0;
  box-shadow: 0 0 0;
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 25px;
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i {
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i:hover {
  color: var(--tj-color-theme-secondary);
}
.tj-sidebar-widget .tj-blog-widget.widget_search .search_box form button i:hover i {
  color: var(--tj-color-theme-secondary);
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li {
  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;
  position: relative;
  font-size: 20px;
  font-family: var(--tj-ff-heading);
  border: 1px solid var(--tj-color-border-6);
  color: var(--tj-color-theme-primary);
  padding: 15px 25px;
  margin-bottom: 20px;
  background: transparent;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:last-child {
  margin-bottom: 0;
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: var(--tj-color-heading-primary);
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-heading-primary);
  border-color: var(--tj-color-theme-primary);
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover a {
  color: var(--tj-color-common-white);
}
.tj-sidebar-widget .tj-blog-widget.widget_categories ul li:hover a span {
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-sidebar-widget .tj-blog-widget.widget_categories ul li {
    padding: 20px 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-sidebar-widget {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-sidebar-widget {
    margin-top: 60px;
  }
  .tj-sidebar-widget .tj-blog-widget {
    margin-bottom: 40px;
  }
}

.tj_recent_posts .port_item {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--tj-color-border-6);
  padding: 20px 25px;
}
.tj_recent_posts .port_item li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.tj_recent_posts .port_item li:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj_recent_posts .port_item {
    padding: 25px 15px;
  }
}
.tj_recent_posts .post-thumb {
  position: relative;
  max-width: 90px;
  overflow: hidden;
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  z-index: 1;
}
.tj_recent_posts .post-thumb a {
  display: inline-block;
  width: 100%;
}
.tj_recent_posts .post-thumb a img {
  width: 100%;
  height: 90px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.tj_recent_posts .post-thumb a:hover img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.tj_recent_posts .post-content .post-title {
  font-size: 16px;
  font-weight: var(--tj-fw-regular);
  line-height: 1.4;
  margin-bottom: 5px;
}
.tj_recent_posts .post-content .post-title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.tj_recent_posts .post-content .post-title a:hover {
  color: var(--tj-color-theme-primary);
  background-size: 100% 1px;
}
.tj_recent_posts .post-content .post-date {
  display: block;
  font-size: 14px;
}

.blog-details-item {
  margin-bottom: 40px;
}
.blog-details-item .post-thumb-image {
  margin-bottom: 35px;
}
.blog-details-item .details-title {
  margin-bottom: 20px;
  font-weight: var(--tj-fw-regular);
}
.blog-details-item .desc {
  max-width: 790px;
  width: 100%;
  line-height: 1.7;
}
.blog-details-item .desc p:last-child {
  margin-bottom: 0;
}
.blog-details-item .blog-meta {
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .blog-details-item .post-thumb-image {
    margin-bottom: 25px;
  }
  .blog-details-item .blog-meta ul {
    gap: 15px;
  }
}

.tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  border: 1px solid var(--tj-color-border-6);
  background-color: var(--tj-color-common-white);
  padding: 25px;
}
.tagcloud a {
  position: relative;
  padding: 10px 10px;
  font-size: 16px;
  border: 1px solid var(--tj-color-border-6);
  background: transparent;
  line-height: 1;
  z-index: 1;
}
.tagcloud a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tagcloud {
    padding: 25px 15px;
  }
}

blockquote {
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
  border: 1px solid var(--tj-color-border-6);
  padding: 20px 25px;
  z-index: 2;
}
blockquote::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Pro";
  display: inline-block;
  font-size: 35px;
  color: var(--tj-color-heading-primary);
  margin-bottom: 15px;
  line-height: 1;
}
blockquote p {
  margin-bottom: 10px;
  line-height: 1.7;
}
blockquote cite {
  color: var(--tj-color-heading-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  font-size: 18px;
  position: relative;
  padding-left: 65px;
}
blockquote cite::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--tj-color-theme-primary);
}

.tj-tags-post .details-check {
  margin-bottom: 30px;
}
.tj-tags-post .details-check ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-tags-post .details-check ul li {
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  padding-left: 20px;
}
.tj-tags-post .details-check ul li:last-child {
  margin-bottom: 0;
}
.tj-tags-post .details-check ul li::before {
  position: absolute;
  content: "";
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tj-color-grey-12);
}
.tj-tags-post p {
  line-height: 1.7;
  margin-bottom: 0;
}
.tj-tags-post .post-share {
  margin: 40px 0;
}
.tj-tags-post .post-share ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 23px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.tj-tags-post .post-share ul li span {
  font-size: 22px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-text-body-3);
  font-family: var(--tj-ff-heading);
  margin-right: 5px;
}
.tj-tags-post .post-share ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  line-height: 1;
  background: transparent;
  border: 1px solid var(--tj-color-border-6);
  color: var(--tj-color-text-body-3);
}
.tj-tags-post .post-share ul li a i {
  color: var(--tj-color-text-body-3);
}
.tj-tags-post .post-share ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: 1px solid var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.tj-tags-post .post-share ul li a:hover i {
  color: var(--tj-color-common-white);
}

.tj-comments-wrap .comments-title .title {
  font-weight: var(--tj-fw-regular);
  margin-bottom: 40px;
}
@media (max-width: 575px) {
  .tj-comments-wrap .comments-title .title {
    margin-bottom: 30px;
  }
}

.tj-latest-comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tj-latest-comments ul .tj-comment .comment-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
  max-width: 100px;
  width: 100%;
}
.tj-latest-comments ul .tj-comment .comment-content .comment-avatar img {
  width: 100%;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--tj-color-border-6);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: var(--tj-fw-regular);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .avatar-name .title a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply {
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-secondary);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text .reply:hover {
  color: var(--tj-color-theme-primary);
}
.tj-latest-comments ul .tj-comment .comment-content .comments-header .comment-text span {
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-medium);
}
@media (max-width: 575px) {
  .tj-latest-comments ul .tj-comment .comment-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .tj-latest-comments ul .tj-comment .comment-content .comment-avatar {
    margin-right: auto;
  }
}
.tj-latest-comments ul .tj-comment .desc {
  margin-bottom: 10px;
  line-height: 1.7;
}
.tj-latest-comments ul .tj-comment .desc p:last-child {
  margin-bottom: 0;
}
.tj-latest-comments ul .tj-comment > .children {
  padding-left: 75px;
}
.tj-latest-comments ul .tj-comment > .children > .tj-comment {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 1px solid var(--tj-color-border-6);
}
.tj-latest-comments ul .tj-comment:last-child .comment-content .comments-header {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
@media (max-width: 575px) {
  .tj-latest-comments ul li .children {
    padding-left: 35px;
  }
}

.tj-comments__container {
  margin-top: 50px;
}

.comment-respond .comment-reply-title {
  font-weight: var(--tj-fw-regular);
  margin-bottom: 35px;
}
.comment-respond .form-input {
  margin-bottom: 20px;
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.comment-respond .form-input textarea,
.comment-respond .form-input input[type=email],
.comment-respond .form-input input[type=text] {
  font-weight: var(--tj-fw-medium);
  background: transparent;
  padding: 18px 25px;
  border: 1px solid var(--tj-color-border-6);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .comment-respond .form-input textarea::-webkit-input-placeholder, .comment-respond .form-input input[type=email]::-webkit-input-placeholder, .comment-respond .form-input input[type=text]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .comment-respond .form-input textarea::-moz-placeholder, .comment-respond .form-input input[type=email]::-moz-placeholder, .comment-respond .form-input input[type=text]::-moz-placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .comment-respond .form-input textarea:-ms-input-placeholder, .comment-respond .form-input input[type=email]:-ms-input-placeholder, .comment-respond .form-input input[type=text]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .comment-respond .form-input textarea::-ms-input-placeholder, .comment-respond .form-input input[type=email]::-ms-input-placeholder, .comment-respond .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.comment-respond .form-input textarea::placeholder,
.comment-respond .form-input input[type=email]::placeholder,
.comment-respond .form-input input[type=text]::placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.comment-respond .form-input textarea::-ms-input-placeholder,
.comment-respond .form-input input[type=email]::-ms-input-placeholder,
.comment-respond .form-input input[type=text]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-weight: var(--tj-fw-medium);
}
.comment-respond .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.comment-respond .form-input textarea:focus,
.comment-respond .form-input input[type=email]:focus,
.comment-respond .form-input input[type=text]:focus {
  border-color: var(--tj-color-theme-primary);
}
.comment-respond .form-input textarea {
  min-height: 150px;
  resize: none;
}
.comment-respond .blog-details-button {
  position: relative;
  z-index: 2;
}
.comment-respond .blog-details-button .tj-button {
  border-radius: 0px;
}

/* !END: Blog Details CSS */
/**----------------------------------------
Process CSS
----------------------------------------*/
.tj-process-section {
  background: var(--tj-color-theme-bg);
  padding-top: 440px;
  padding-bottom: 120px;
  margin-top: -350px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.tj-process-section .process-shapes {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.tj-process-section .tj-heading-area {
  max-width: 520px;
  width: 100%;
  margin: 0 auto 60px;
  position: relative;
  z-index: 1;
}
.tj-process-section .process-wrapper {
  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;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-process-section {
    padding-top: 520px;
    margin-top: -435px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-section {
    padding-top: 620px;
    margin-top: -550px;
    padding-bottom: 100px;
  }
  .tj-process-section .tj-heading-area {
    margin: 0 auto 60px;
  }
  .tj-process-section .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-section {
    padding-top: 330px;
    padding-bottom: 80px;
    margin-top: -250px;
  }
  .tj-process-section .tj-heading-area {
    margin: 0 auto 10px;
  }
  .tj-process-section .process-content-inner {
    margin-top: 50px;
  }
  .tj-process-section .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-process-section {
    padding-top: 330px;
    padding-bottom: 60px;
    margin-top: -250px;
  }
  .tj-process-section .tj-heading-area {
    margin: 0 auto 20px;
  }
  .tj-process-section .process-content-inner {
    margin-top: 30px;
  }
  .tj-process-section .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0px;
  }
}
@media (max-width: 575px) {
  .tj-process-section {
    padding-top: 330px;
    padding-bottom: 60px;
    margin-top: -250px;
  }
  .tj-process-section .tj-heading-area {
    margin: 0 auto 20px;
  }
  .tj-process-section .process-content-inner {
    margin-top: 20px;
  }
  .tj-process-section .process-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 0px;
  }
}

.tj-process-section-two {
  padding-top: 120px;
  padding-bottom: 90px;
  background: var(--tj-color-theme-primary);
  border-radius: 550px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.tj-process-section-two .tj-heading-area {
  max-width: 520px;
  width: 100%;
  margin: 0 auto 60px;
}
.tj-process-section-two .tj-heading-area .sub-title {
  color: var(--tj-color-theme-secondary);
}
.tj-process-section-two .tj-heading-area .sec-title {
  color: var(--tj-color-common-white);
}
.tj-process-section-two .process-style-2 {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: center;
  gap: 30px;
  padding-top: 180px;
  position: relative;
  z-index: 1;
}
.tj-process-section-two .process-style-2::before {
  position: absolute;
  content: "";
  width: 76.5%;
  height: 2px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border-top: 2px dashed var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-section-two .process-style-2 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 0px;
  }
  .tj-process-section-two .process-style-2::before {
    display: none;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-process-section-two {
    border-radius: 400px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-process-section-two {
    border-radius: 230px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-section-two {
    border-radius: 50px;
  }
  .tj-process-section-two .process-style-2 {
    padding-top: 0px;
  }
  .tj-process-section-two .process-style-2::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two {
    margin-top: 0;
  }
  .tj-process-section-two .process-style-2 .process-item-two::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two::after {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two:nth-child(4), .tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
    margin-top: 0px;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .number {
    color: rgba(43, 81, 65, 0.4);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
    border-radius: 0px;
  }
  .tj-process-section-two .process-style-2 {
    padding-top: 0px;
  }
  .tj-process-section-two .process-style-2::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two {
    margin-top: 0;
  }
  .tj-process-section-two .process-style-2 .process-item-two::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two::after {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two:nth-child(4), .tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
    margin-top: 0px;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .number {
    color: rgba(43, 81, 65, 0.4);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-process-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
    border-radius: 0px;
  }
  .tj-process-section-two .process-style-2 {
    padding-top: 0px;
  }
  .tj-process-section-two .process-style-2::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two {
    margin-top: 0;
  }
  .tj-process-section-two .process-style-2 .process-item-two::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two::after {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two:nth-child(4), .tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
    margin-top: 0px;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
    width: 100%;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .number {
    color: rgba(43, 81, 65, 0.4);
  }
}
@media (max-width: 575px) {
  .tj-process-section-two {
    padding-top: 80px;
    padding-bottom: 50px;
    border-radius: 0px;
  }
  .tj-process-section-two .process-style-2 {
    padding-top: 0px;
  }
  .tj-process-section-two .process-style-2::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two {
    margin-top: 0;
  }
  .tj-process-section-two .process-style-2 .process-item-two::before {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two::after {
    display: none;
  }
  .tj-process-section-two .process-style-2 .process-item-two:nth-child(4), .tj-process-section-two .process-style-2 .process-item-two:nth-child(2) {
    margin-top: 0px;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-inner::after {
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: visible;
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .title {
    color: var(--tj-color-theme-primary);
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .desc {
    color: var(--tj-color-theme-primary);
  }
  .tj-process-section-two .process-style-2 .process-item-two .process-content .number {
    color: rgba(43, 81, 65, 0.4);
  }
}

.tj-process-section-three {
  padding-bottom: 120px;
  background: var(--tj-color-theme-bg-3);
  border-radius: 0px 0px 0px 400px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.tj-process-section-three.tj-process-page {
  padding-bottom: 0px;
  background: var(--tj-color-common-white);
}
.tj-process-section-three.process-page-one {
  padding-bottom: 0px;
  background: var(--tj-color-common-white);
  border-radius: 0px;
}
.tj-process-section-three .process-shapes {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 220px;
  width: 100%;
  z-index: -1;
}
.tj-process-section-three .process-shapes img {
  width: 100%;
}
.tj-process-section-three .process-shapes2 {
  position: absolute;
  bottom: 50px;
  right: 0;
  max-width: 380px;
  width: 100%;
  z-index: -1;
}
.tj-process-section-three .process-shapes2 img {
  width: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-process-section-three .process-shapes2 {
    max-width: 300px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-process-section-three .process-shapes2 {
    max-width: 250px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-process-section-three .process-shapes2 {
    max-width: 180px;
    bottom: 20px;
  }
}
@media (max-width: 575px) {
  .tj-process-section-three .process-shapes2 {
    max-width: 150px;
    bottom: 10px;
  }
}
.tj-process-section-three .tj-heading-area {
  max-width: 530px;
  width: 100%;
  margin-bottom: 50px;
}
.tj-process-section-three .process-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}
.tj-process-section-three .process-wrapper .process-line {
  position: absolute;
  top: -38%;
  left: 0;
  -webkit-mask-image: url(../images/shapes/line-1.svg);
          mask-image: url(../images/shapes/line-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-section-three .process-wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-process-section-three {
    border-radius: 0px 0px 0px 250px;
  }
  .tj-process-section-three .process-wrapper .process-line {
    top: -35%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-process-section-three {
    border-radius: 0px 0px 0px 250px;
  }
  .tj-process-section-three .process-wrapper .process-line {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-process-section-three {
    padding-bottom: 80px;
    border-radius: 0px 0px 0px 250px;
  }
  .tj-process-section-three .process-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tj-process-section-three .process-wrapper .process-line {
    display: none;
  }
  .tj-process-section-three .tj-heading-area {
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .tj-process-section-three {
    border-radius: 0px;
  }
}

.images-wrapper {
  position: relative;
  max-width: 665px;
  width: 100%;
  height: 620px;
  right: 15px;
  background: var(--tj-color-theme-secondary);
  -webkit-clip-path: circle(67% at 35% 30%);
          clip-path: circle(67% at 35% 30%);
  padding: 0px 30px 30px 0px;
}
.images-wrapper .process-image-inner {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--tj-color-theme-primary);
  -webkit-clip-path: circle(67% at 35% 30%);
          clip-path: circle(67% at 35% 30%);
}
.images-wrapper .process-image-inner img {
  max-width: 100%;
  width: 100%;
  position: absolute;
  bottom: -20px;
  left: 0;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .images-wrapper {
    max-width: 565px;
    -webkit-clip-path: circle(62% at 35% 30%);
            clip-path: circle(62% at 35% 30%);
    padding: 0px 25px 25px 0px;
  }
  .images-wrapper .process-image-inner {
    -webkit-clip-path: circle(61% at 35% 30%);
            clip-path: circle(61% at 35% 30%);
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .images-wrapper {
    max-width: 500px;
    -webkit-clip-path: circle(50% at 35% 30%);
            clip-path: circle(50% at 35% 30%);
    padding: 0px 25px 25px 0px;
    height: 535px;
  }
  .images-wrapper .process-image-inner {
    -webkit-clip-path: circle(48% at 35% 30%);
            clip-path: circle(48% at 35% 30%);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .images-wrapper {
    max-width: 520px;
    -webkit-clip-path: circle(60% at 35% 30%);
            clip-path: circle(60% at 35% 30%);
    height: 510px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 110px;
  }
  .images-wrapper .process-image-inner {
    -webkit-clip-path: circle(60% at 35% 30%);
            clip-path: circle(60% at 35% 30%);
  }
  .images-wrapper .process-image-inner img {
    bottom: -95px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .images-wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    height: 510px;
    margin-top: 100px;
  }
  .images-wrapper .process-image-inner img {
    bottom: -95px;
    max-width: 90%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .images-wrapper {
    max-width: 550px;
    -webkit-clip-path: circle(60% at 35% 30%);
            clip-path: circle(60% at 35% 30%);
    margin-left: auto;
    margin-right: auto;
    height: 510px;
    right: -25px;
    padding: 0px 15px 30px 0px;
    margin-top: 100px;
  }
  .images-wrapper .process-image-inner {
    -webkit-clip-path: circle(60% at 35% 30%);
            clip-path: circle(60% at 35% 30%);
  }
  .images-wrapper .process-image-inner img {
    bottom: -95px;
    max-width: 90%;
  }
}
@media (max-width: 575px) {
  .images-wrapper {
    max-width: 360px;
    -webkit-clip-path: circle(50% at 35% 30%);
            clip-path: circle(50% at 35% 30%);
    height: 250px;
    left: 12%;
    margin-top: 110px;
  }
  .images-wrapper .process-image-inner {
    -webkit-clip-path: circle(50% at 35% 30%);
            clip-path: circle(50% at 35% 30%);
  }
  .images-wrapper .process-image-inner img {
    bottom: -120px;
  }
}

.process-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.process-item:last-child {
  margin-bottom: 0;
}
.process-item:nth-child(2) {
  margin-left: 100px;
}
.process-item:nth-child(2) .process-icon {
  right: -70px;
}
.process-item:nth-child(3) {
  margin-left: 200px;
}
.process-item:nth-child(3) .process-icon {
  right: -70px;
}
.process-item .process-number {
  margin-right: 15px;
}
.process-item .process-number .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 130px;
  height: 130px;
  line-height: 1;
  color: var(--tj-color-grey-10);
  font-size: 75px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item .process-number .number {
    width: 85px;
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .process-item .process-number .number {
    width: 85px;
    height: 80px;
    font-size: 50px;
  }
}
.process-item .process-content {
  max-width: 600px;
  width: 100%;
  padding: 30px 85px 30px 50px;
  position: relative;
  z-index: 2;
  background: var(--tj-color-theme-bg);
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.process-item .process-content::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--tj-color-common-white);
  -webkit-clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
          clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
  z-index: -1;
}
.process-item .process-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  background-color: var(--tj-color-theme-primary);
  -webkit-clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
          clip-path: polygon(13% 0%, 100% 0, 100% 100%, 0 100%, 0% 75%, 0% 25%);
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: -1;
}
.process-item .process-content .title {
  margin-bottom: 20px;
}
.process-item .process-content .desc {
  max-width: 450px;
  width: 100%;
}
.process-item .process-content .desc p:last-child {
  margin-bottom: 0;
}
.process-item .process-content .process-icon {
  position: absolute;
  right: -75px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--tj-color-theme-bg);
  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;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-size: 60px;
  width: 150px;
  height: 170px;
  color: var(--tj-color-theme-primary);
  z-index: 2;
}
.process-item .process-content .process-icon::before {
  position: absolute;
  content: "";
  width: 130px;
  height: 150px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  background-color: var(--tj-color-common-white);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .process-item .process-content {
    max-width: 500px;
  }
  .process-item .process-content .process-icon {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .process-item .process-content {
    max-width: 560px;
  }
  .process-item .process-content .process-icon {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-item .process-content {
    max-width: 500px;
  }
  .process-item .process-content .process-icon {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-item .process-content {
    max-width: 550px;
  }
  .process-item .process-content .process-icon {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .process-item .process-content {
    max-width: 385px;
    padding: 30px 85px 30px 30px;
  }
  .process-item .process-content .process-icon {
    font-size: 50px;
    width: 130px;
    height: 150px;
  }
  .process-item .process-content .process-icon::before {
    width: 110px;
    height: 130px;
  }
}
@media (max-width: 575px) {
  .process-item .process-content {
    max-width: 320px;
    padding: 30px 85px 30px 30px;
  }
  .process-item .process-content .title {
    margin-bottom: 15px;
  }
  .process-item .process-content .process-icon {
    font-size: 40px;
    width: 90px;
    height: 90px;
    right: -20px;
  }
  .process-item .process-content .process-icon::before {
    width: 75px;
    height: 75px;
  }
}
.process-item:hover .process-content::before {
  background-color: var(--tj-color-theme-primary);
}
.process-item:hover .process-content::after {
  opacity: 1;
  visibility: visible;
}
.process-item:hover .process-content .title {
  color: var(--tj-color-common-white);
}
.process-item:hover .process-content .process-icon::before {
  background-color: var(--tj-color-theme-secondary);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .process-item:nth-child(2) {
    margin-left: 0px;
  }
  .process-item:nth-child(3) {
    margin-left: 0px;
  }
}
@media (max-width: 575px) {
  .process-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.process-item-two {
  max-width: 300px;
  width: 100%;
  border-radius: 150px 150px 0 0;
  position: relative;
  margin-bottom: 30px;
  margin-top: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: transparent;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 1;
}
.process-item-two .process-inner {
  position: relative;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
  z-index: 1;
}
.process-item-two .process-inner::before {
  position: absolute;
  content: "";
  width: 115%;
  height: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--tj-color-theme-secondary);
  border-radius: 150px 150px 0 0;
  opacity: 0;
  visibility: hidden;
}
.process-item-two .process-inner::after {
  position: absolute;
  content: "";
  width: 115%;
  height: 0;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(../images/shapes/process-2.png);
  border-radius: 150px 150px 0 0;
  opacity: 0;
  visibility: hidden;
}
.process-item-two::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
}
.process-item-two:nth-child(3)::before, .process-item-two:nth-child(1)::before {
  height: 40%;
  top: -205px;
}
.process-item-two:nth-child(3)::after, .process-item-two:nth-child(1)::after {
  top: -55px;
}
.process-item-two:nth-child(4), .process-item-two:nth-child(2) {
  margin-top: -70px;
}
.process-item-two:nth-child(4)::before, .process-item-two:nth-child(2)::before {
  height: 25%;
  top: -155px;
}
.process-item-two:nth-child(4)::after, .process-item-two:nth-child(2)::after {
  top: -60px;
}
.process-item-two::before {
  position: absolute;
  content: "";
  width: 2px;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 40%;
  border-left: 2px dashed var(--tj-color-common-white);
}
.process-item-two::after {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 14px solid var(--tj-color-common-white);
}
.process-item-two .process-icon {
  position: relative;
  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: 65px;
  width: 160px;
  height: 175px;
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-grey-19);
  z-index: 2;
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  margin-bottom: 30px;
  margin-top: -25px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.process-item-two .process-icon::before {
  position: absolute;
  content: "";
  width: 130px;
  height: 145px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: -1;
  background-color: var(--tj-color-common-white);
  -webkit-clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
          clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
}
.process-item-two .process-content {
  position: relative;
  z-index: 1;
  padding: 0px 20px 50px;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s;
}
.process-item-two .process-content .title {
  color: var(--tj-color-common-white);
  margin-bottom: 20px;
}
.process-item-two .process-content .desc {
  color: var(--tj-color-grey-15);
  line-height: 1.7;
}
.process-item-two .process-content .desc p:last-child {
  margin-bottom: 0;
}
.process-item-two .process-content .number {
  position: absolute;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  left: 50%;
  font-size: 120px;
  color: var(--tj-color-grey-20);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  z-index: -1;
}
.process-item-two:hover .process-inner::before {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.process-item-two:hover .process-inner::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.process-item-two:hover .process-icon {
  background-color: var(--tj-color-theme-primary);
}
.process-item-two:hover .process-content .title {
  color: var(--tj-color-theme-primary);
}
.process-item-two:hover .process-content .desc {
  color: var(--tj-color-theme-primary);
}
.process-item-two:hover .process-content .number {
  color: rgba(43, 81, 65, 0.2);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-item-two {
    max-width: 255px;
  }
  .process-item-two .process-content {
    padding: 0px 15px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item-two:nth-child(3)::before, .process-item-two:nth-child(1)::before {
    height: 46%;
  }
  .process-item-two:nth-child(2)::before, .process-item-two:nth-child(4)::before {
    height: 29%;
  }
  .process-item-two .process-icon {
    font-size: 50px;
    margin-bottom: 20px;
    width: 120px;
    height: 135px;
  }
  .process-item-two .process-icon::before {
    width: 95px;
    height: 110px;
  }
  .process-item-two .process-content {
    padding: 0px 10px 30px;
  }
  .process-item-two .process-content .title {
    margin-bottom: 10px;
  }
  .process-item-two .process-content .number {
    font-size: 80px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .process-item-two:nth-child(1), .process-item-two:nth-child(2), .process-item-two:nth-child(3), .process-item-two:nth-child(4) {
    margin-top: 0px;
  }
  .process-item-two:nth-child(1)::after, .process-item-two:nth-child(1)::before, .process-item-two:nth-child(2)::after, .process-item-two:nth-child(2)::before, .process-item-two:nth-child(3)::after, .process-item-two:nth-child(3)::before, .process-item-two:nth-child(4)::after, .process-item-two:nth-child(4)::before {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item-two {
    max-width: 240px;
    margin-bottom: 20px;
  }
  .process-item-two:nth-child(1), .process-item-two:nth-child(2), .process-item-two:nth-child(3), .process-item-two:nth-child(4) {
    margin-top: 0px;
  }
  .process-item-two:nth-child(1)::after, .process-item-two:nth-child(1)::before, .process-item-two:nth-child(2)::after, .process-item-two:nth-child(2)::before, .process-item-two:nth-child(3)::after, .process-item-two:nth-child(3)::before, .process-item-two:nth-child(4)::after, .process-item-two:nth-child(4)::before {
    display: none;
  }
  .process-item-two .process-icon {
    font-size: 50px;
    margin-bottom: 20px;
    width: 120px;
    height: 135px;
  }
  .process-item-two .process-icon::before {
    width: 95px;
    height: 110px;
  }
  .process-item-two .process-content {
    padding: 0px 10px 30px;
  }
  .process-item-two .process-content .title {
    margin-bottom: 10px;
  }
  .process-item-two .process-content .number {
    font-size: 80px;
  }
}

.process-item-three {
  max-width: 410px;
  width: 100%;
  position: relative;
  padding: 0px 35px 120px;
  border-radius: 0px 300px 300px 300px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  z-index: 1;
}
.process-item-three:nth-child(2) {
  margin-top: -40px;
}
.process-item-three:nth-child(3) {
  margin-top: -365px;
}
.process-item-three::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background: rgba(11, 64, 44, 0.8);
  border-radius: 250px 300px 300px 300px;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.process-item-three::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../images/process/process-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0px 300px 300px 300px;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.process-item-three .process-icon {
  position: relative;
  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;
  width: 120px;
  height: 130px;
  line-height: 1;
  font-size: 65px;
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-secondary);
  border-radius: 0px 0px 150px 150px;
  margin-bottom: 35px;
  z-index: 2;
}
.process-item-three .title {
  position: relative;
  margin-bottom: 25px;
  z-index: 2;
}
.process-item-three .desc {
  position: relative;
  line-height: 1.7;
  z-index: 2;
}
.process-item-three .desc p:last-child {
  margin-bottom: 0;
}
.process-item-three .number {
  position: absolute;
  top: 28%;
  right: 90px;
  font-size: 120px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-grey-21);
  line-height: 1;
  z-index: 1;
}
.process-item-three:hover::before {
  width: 96%;
  height: 99%;
}
.process-item-three:hover::after, .process-item-three:hover::before {
  opacity: 1;
  visibility: visible;
}
.process-item-three:hover .title {
  color: var(--tj-color-common-white);
}
.process-item-three:hover .desc {
  color: var(--tj-color-grey-22);
}
.process-item-three:hover .number {
  color: rgba(226, 230, 229, 0.3);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-item-three {
    max-width: 350px;
    padding: 0px 30px 100px;
  }
  .process-item-three .number {
    top: 25%;
    right: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-item-three {
    padding: 0px 25px 80px;
  }
  .process-item-three:nth-child(2), .process-item-three:nth-child(3) {
    margin-top: 0px;
  }
  .process-item-three .number {
    font-size: 100px;
    top: 20%;
    right: 50px;
  }
  .process-item-three .title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item-three {
    padding: 0px 25px 80px;
    max-width: 330px;
    margin: 0 auto;
  }
  .process-item-three:nth-child(2), .process-item-three:nth-child(3) {
    margin-top: 0px;
  }
  .process-item-three .number {
    font-size: 80px;
    top: 20%;
    right: 50px;
  }
  .process-item-three .title {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .process-item-three .process-icon {
    width: 90px;
    height: 100px;
    font-size: 50px;
    margin-bottom: 30px;
  }
}

/* !END: Process CSS */
/**----------------------------------------
Cta CSS
----------------------------------------*/
.tj-cta-section {
  position: relative;
  z-index: 2;
}
.tj-cta-section .cta_shapes {
  max-width: 22%;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: -65px;
  z-index: -1;
}

.tj-after-before-section {
  position: relative;
  z-index: 3;
}
.tj-after-before-section .tj-before-after-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 0px 250px 0px 250px;
}
.tj-after-before-section .tj-before-after-wrapper .after,
.tj-after-before-section .tj-before-after-wrapper .before {
  max-width: inherit;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-after-before-section .tj-before-after-wrapper images-box {
  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;
  background-color: var(--tj-color-theme-secondary) !important;
  border: none;
  width: 250px;
  height: 110px;
  line-height: 1px;
  border-radius: 150px;
  cursor: ew-resize;
}
.tj-after-before-section .tj-before-after-wrapper images-box::before {
  position: absolute;
  content: "";
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
  width: 1px;
  height: 100%;
  background: var(--tj-color-theme-primary);
}
.tj-after-before-section images-role {
  background-color: transparent !important;
}
.tj-after-before-section wrapper-1 {
  position: relative;
  z-index: 1;
}
.tj-after-before-section wrapper-1::before {
  position: absolute;
  content: "Before";
  right: 40px;
  top: 0;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.tj-after-before-section wrapper-2 {
  position: relative;
  z-index: 1;
}
.tj-after-before-section wrapper-2::before {
  position: absolute;
  content: "After";
  left: 50px;
  top: 0;
  color: var(--tj-color-theme-primary);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-regular);
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-after-before-section .tj-before-after-wrapper .after,
  .tj-after-before-section .tj-before-after-wrapper .before {
    height: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-after-before-section .tj-before-after-wrapper .after,
  .tj-after-before-section .tj-before-after-wrapper .before {
    height: 400px;
  }
  .tj-after-before-section .tj-before-after-wrapper images-box {
    width: 180px;
    height: 80px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
    right: 10px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
    left: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-after-before-section .tj-before-after-wrapper {
    border-radius: 0px 150px 0px 150px;
  }
  .tj-after-before-section .tj-before-after-wrapper .after,
  .tj-after-before-section .tj-before-after-wrapper .before {
    height: 320px;
  }
  .tj-after-before-section .tj-before-after-wrapper images-box {
    width: 180px;
    height: 80px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
    right: 10px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
    left: 20px;
  }
}
@media (max-width: 575px) {
  .tj-after-before-section .tj-before-after-wrapper {
    border-radius: 0px 150px 0px 150px;
  }
  .tj-after-before-section .tj-before-after-wrapper .after,
  .tj-after-before-section .tj-before-after-wrapper .before {
    height: 320px;
  }
  .tj-after-before-section .tj-before-after-wrapper images-box {
    width: 135px;
    height: 70px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-1::before {
    right: 0px;
    font-size: 14px;
  }
  .tj-after-before-section .tj-before-after-wrapper wrapper-2::before {
    left: 0px;
    font-size: 14px;
  }
}

.cta-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 85px;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
  background: var(--tj-color-common-white);
  padding: 63px 65px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.cta-content-area::before {
  position: absolute;
  content: "";
  width: 35%;
  top: 0;
  right: 0;
  height: 100%;
  background: var(--tj-color-theme-secondary);
  z-index: -1;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 215%);
          clip-path: polygon(100% 0, 0 0, 100% 215%);
}
.cta-content-area .cta-logo {
  max-width: 175px;
  width: 100%;
}
.cta-content-area .cta-logo .logo {
  display: inline-block;
  width: 100%;
}
.cta-content-area .cta-logo .logo img {
  width: 100%;
}
.cta-content-area .cta-title {
  max-width: 525px;
  width: 100%;
  border-left: 5px solid rgba(187, 208, 180, 0.8);
  padding-left: 30px;
}
.cta-content-area .cta-title .title {
  margin-bottom: 0;
  line-height: 1.4;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cta-content-area .cta-title {
    border-left: none;
    padding-left: 0px;
  }
}
.cta-content-area .cta-form {
  position: relative;
  z-index: 1;
  max-width: 475px;
  width: 100%;
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.cta-content-area .cta-form input[type=email] {
  width: 100%;
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
  background: transparent;
  border: 2px solid rgba(11, 61, 44, 0.3);
  padding: 23px 230px 23px 25px;
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.cta-content-area .cta-form input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .cta-content-area .cta-form input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .cta-content-area .cta-form input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .cta-content-area .cta-form input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .cta-content-area .cta-form input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.cta-content-area .cta-form input[type=email]::placeholder {
  color: var(--tj-color-text-body);
  font-size: 16px;
  font-weight: var(--tj-fw-sbold);
}
.cta-content-area .cta-form .tj-button {
  background: var(--tj-color-common-white);
  border: none;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.cta-content-area .cta-form .tj-button:before {
  background: var(--tj-color-common-white);
}
.cta-content-area .cta-form .tj-button:after {
  background: var(--tj-color-theme-primary);
}
.cta-content-area .cta-form .tj-button .tj-primary-btn span {
  color: var(--tj-color-common-white);
}
.cta-content-area .cta-form .tj-button .tj-primary-btn span:first-child {
  color: var(--tj-color-theme-primary);
}
.cta-content-area .cta-form .tj-button .tj-primary-btn span:last-child {
  color: var(--tj-color-common-white);
}
.cta-content-area .cta-form .tj-button:hover {
  background: var(--tj-color-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .cta-content-area {
    gap: 50px;
    padding: 63px 65px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cta-content-area {
    gap: 30px;
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cta-content-area {
    gap: 15px;
    padding: 50px 15px;
  }
  .cta-content-area .cta-logo {
    max-width: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-content-area {
    gap: 30px;
    padding: 35px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  .cta-content-area {
    gap: 30px;
    padding: 35px 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cta-content-area .cta-title {
    padding-left: 20px;
  }
  .cta-content-area .cta-form {
    text-align: center;
  }
  .cta-content-area .cta-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
  .cta-content-area .cta-form input[type=email] {
    padding: 23px 215px 23px 15px;
  }
  .cta-content-area .cta-form .tj-button {
    position: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin-top: 30px;
    max-width: 100%;
  }
}

/* !END: Cta CSS */
/**----------------------------------------
Contact CSS
----------------------------------------*/
.tj-contact-section {
  padding-bottom: 200px;
  position: relative;
  z-index: 1;
}
.tj-contact-section .contact-shapes {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.tj-contact-section .contact-bg {
  position: absolute;
  right: 0;
  top: -75px;
  max-width: 660px;
  width: 100%;
  height: 885px;
  -webkit-mask-image: url(../images/shapes/contact-1.svg);
          mask-image: url(../images/shapes/contact-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}
.tj-contact-section .contact-bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.tj-contact-section .tj-heading-area {
  max-width: 550px;
  width: 100%;
  margin: 0 auto 60px;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-contact-section .contact-bg {
    max-width: 525px;
    height: 750px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-contact-section {
    padding-bottom: 120px;
  }
  .tj-contact-section .contact-bg {
    max-width: 420px;
    height: 600px;
    top: 0px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-contact-section {
    padding-bottom: 120px;
  }
  .tj-contact-section .contact_box {
    right: 160px;
  }
  .tj-contact-section .contact-bg {
    top: 0;
    max-width: 320px;
    height: 460px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-contact-section {
    padding-bottom: 120px;
  }
  .tj-contact-section .contact_box {
    right: 0px;
  }
  .tj-contact-section .contact-bg {
    top: 0;
    max-width: 320px;
    height: 460px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-contact-section {
    padding-bottom: 80px;
  }
  .tj-contact-section .tj-heading-area {
    margin: 0 auto 40px;
  }
  .tj-contact-section .contact_box {
    position: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin: 0 auto;
    padding: 35px 15px;
  }
  .tj-contact-section .contact-bg {
    top: 0;
    max-width: 200px;
    height: 285px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-contact-section .contact-bg {
    top: 0;
    max-width: 120px;
    height: 165px;
  }
}
@media (max-width: 575px) {
  .tj-contact-section {
    padding-bottom: 80px;
  }
  .tj-contact-section .tj-heading-area {
    margin: 0 auto 40px;
  }
  .tj-contact-section .contact_box {
    position: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin: 0 auto;
    padding: 35px 15px;
  }
  .tj-contact-section .contact-bg {
    display: none;
  }
  .tj-contact-section .contact-shapes {
    display: none;
  }
}
.tj-contact-section .contact-wrapper .contact-style-2 {
  padding: 0px;
  border-left: none;
  background: transparent;
}

.contact-top-area {
  position: relative;
  padding-bottom: 170px;
  z-index: 1;
}
.contact-top-area .tj-heading-area {
    /* max-width: 650px; */
    width: 100%;
    margin-bottom: 0;
}
.contact-top-area .contact-wrapper {
  /*padding: 0px 165px 0px 0px;*/
  /*background: var(--tj-color-common-white);*/
}
/*.contact-top-area .contact-wrapper .form-box {
  padding: 0px;
  background: var(--tj-color-common-white);
}*/
.contact-top-area .contact-wrapper .form-box form .form-input {
  max-width: 335px;
  margin-top: 30px;
}
.contact-top-area .contact-wrapper .form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.contact-top-area .contact-wrapper .form-box form .form-input textarea,
.contact-top-area .contact-wrapper .form-box form .form-input input[type=email] {
  border-radius: 0px;
  border: 1px solid var(--tj-color-border-6);
}
.contact-top-area .contact-wrapper .form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):focus,
.contact-top-area .contact-wrapper .form-box form .form-input textarea:focus,
.contact-top-area .contact-wrapper .form-box form .form-input input[type=email]:focus {
  border-color: var(--tj-color-theme-primary);
}
.contact-top-area .contact-wrapper .form-box form .form-input .nice-select {
  border: 1px solid var(--tj-color-border-6);
  border-radius: 0px;
}
.contact-top-area .contact-wrapper .form-box form .form-input .nice-select:focus {
  border-color: var(--tj-color-theme-primary);
}
.contact-top-area .contact-wrapper .form-box form .form-input.style-2 {
  max-width: 100%;
}
.contact-top-area .contact-wrapper .form-box form .contact-button .tj-primary-btn {
  border-radius: 0px;
}
.contact-top-area .contact-wrapper .nice-select .list {
  border-radius: 0px;
  border: 1px solid var(--tj-color-border-6);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-top-area .contact-wrapper {
    padding: 0px 80px 0px 0px;
  }
  .contact-top-area .contact-wrapper .form-box form .form-one .form-input {
    max-width: 318px;
  }
}
/*@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-top-area .contact-wrapper {
    padding: 0px 50px 0px 0px;
  }
  .contact-top-area .contact-wrapper .form-box form .form-one .form-input {
    max-width: 272px;
  }
}*/
.contact-top-area .google-map {
  position: absolute;
  right: 0;
  top: -3%;
  width: 50%;
}
.contact-top-area .google-map iframe {
  width: 100%;
  height: 600px;
}
/*@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-top-area .google-map {
    position: initial;
    width: 100%;
  }
  .contact-top-area .google-map iframe {
    height: 450px;
  }
}
@media (max-width: 575px) {
  .contact-top-area .google-map iframe {
    height: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-top-area {
    padding-bottom: 80px;
  }
  .contact-top-area .contact-wrapper {
    padding: 0px;
    margin-bottom: 60px;
  }
  .contact-top-area .contact-wrapper .form-box form .form-input {
    max-width: 338px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-top-area {
    padding-bottom: 80px;
  }
  .contact-top-area .contact-wrapper {
    padding: 0px;
    margin-bottom: 60px;
  }
  .contact-top-area .contact-wrapper .form-box form .form-input {
    max-width: 100%;
  }
}
*/
.contact-bottom-area {
  padding-bottom: 170px;
}
.contact-bottom-area .bottom-inner {
  position: relative;
  z-index: 1;
}
.contact-bottom-area .bottom-inner .contact-images {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-bottom-area {
    padding-bottom: 80px;
  }
  .contact-bottom-area .bottom-inner .contact-images {
    display: none;
  }
}

.contact-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  width: 100%;
  border: 1px solid var(--tj-color-border-6);
  margin-left: auto;
  padding: 40px 0;
  position: relative;
  background: var(--tj-color-common-white);
  z-index: 2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-content-box {
    max-width: 750px;
  }
  .contact-content-box .contact-style-2 {
    padding: 0px 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-content-box {
    padding: 30px 0;
  }
  .contact-content-box .contact-style-2 {
    padding: 0px 15px;
    border: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .contact-content-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 30px 0;
    gap: 35px;
  }
  .contact-content-box .contact-style-2 {
    border: none;
    padding-left: 15px;
  }
  .contact-content-box .contact-style-2 .contact-icon {
    margin-bottom: 20px;
  }
}

.form-box {
  /*max-width: 1075px;*/
  width: 100%;
  /*background: var(--tj-color-theme-bg-3);*/
  /*padding: 70px 275px 70px 115px;*/
  /*border-radius: 0px 0px 0px 250px;*/
}
.form-box .form-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-box form .form-input {
  max-width: 332px;
  width: 100%;
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.form-box form .form-input textarea,
.form-box form .form-input input[type=email] {
  border: 1px solid var(--tj-color-theme-primary);
  padding: 16px 20px;
  width: 100%;
  background: var(--tj-color-common-white);
  border-radius: 50px;
  resize: none;
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.form-box form .form-input textarea::-ms-input-placeholder,
.form-box form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .form-box form .form-input textarea::-webkit-input-placeholder, .form-box form .form-input input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .form-box form .form-input textarea::-moz-placeholder, .form-box form .form-input input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .form-box form .form-input textarea:-ms-input-placeholder, .form-box form .form-input input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .form-box form .form-input textarea::-ms-input-placeholder, .form-box form .form-input input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.form-box form .form-input textarea::placeholder,
.form-box form .form-input input[type=email]::placeholder {
  color: var(--tj-color-text-body);
}
.form-box form .form-input textarea {
  margin-top: 0px;
  min-height: 150px;
  border-radius: 100px;
  padding: 16px 20px 16px 20px;
}
.form-box .contact-button {
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
}
.form-box .form-input.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) {
  .form-box {
    max-width: 770px;
    padding: 70px 190px 70px 40px;
    border-radius: 0px 0px 0px 50px;
  }
  .form-box form .form-input {
    max-width: 260px;
  }
}*/
/*@media only screen and (min-width: 768px) and (max-width: 991px) {
  .form-box {
    max-width: 100%;
    padding: 35px 30px 35px 30px;
    border-radius: 0px 0px 0px 50px;
    margin-bottom: 40px;
  }
  .form-box form .form-input {
    max-width: 305px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .form-box {
    max-width: 100%;
    padding: 35px 15px;
    border-radius: 0px 0px 0px 50px;
    margin-bottom: 40px;
  }
  .form-box form .form-input {
    max-width: 230px;
  }
}
@media (max-width: 575px) {
  .form-box {
    max-width: 100%;
    padding: 35px 15px;
    border-radius: 0px 0px 0px 50px;
    margin-bottom: 40px;
  }
  .form-box form .form-input {
    max-width: 100%;
  }
  .form-box form .form-input.style-2 textarea {
    min-height: 120px;
  }
  .form-box .tj-button {
    max-width: 100%;
  }
}
*/
.nice-select {
  border: 1px solid var(--tj-color-theme-primary);
  padding: 9px 20px;
  background: var(--tj-color-common-white);
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
.nice-select::after {
  display: none;
}
.nice-select::before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  right: 20px;
  font-size: 18px;
  color: var(--tj-color-text-body);
}
.nice-select.open::before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.nice-select span.current {
  color: var(--tj-color-text-body);
}
.nice-select .list {
  width: 100%;
  margin-top: 0px;
  border-radius: 10px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--tj-color-theme-primary);
}
.nice-select .list .option {
  color: var(--tj-color-text-body);
}
.nice-select .list .option.selected {
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-regular);
  background-color: var(--tj-color-theme-secondary);
}
.nice-select .list:hover .option {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-secondary);
}
.nice-select:hover {
  border-color: 1px solid var(--tj-color-theme-primary);
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

.contact_box {
  position: absolute;
  top: 50%;
  right: 50px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 330px;
  width: 100%;
  background: var(--tj-color-theme-primary);
  border-radius: 30px;
  padding: 60px 35px 60px 35px;
}
.contact_box .contact-style-2 {
  margin-bottom: 30px;
}
.contact_box .contact-style-2:last-child {
  margin-bottom: 0;
}
.contact_box .contact-style-2 .sub-title {
  display: block;
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  margin-bottom: 5px;
}
.contact_box .contact-style-2 .text,
.contact_box .contact-style-2 .link {
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
}
.contact_box .contact-style-2 .link {
  position: relative;
  z-index: 1;
}
.contact_box .contact-style-2 .link::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-common-white);
}
.contact_box .contact-style-2:hover .link::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.contact-style-2 {
  position: relative;
  border-left: 1px solid var(--tj-color-border-6);
  padding: 0px 60px;
  background-color: var(--tj-color-common-white);
  z-index: 2;
}
.contact-style-2:nth-child(1) {
  border: none;
}
.contact-style-2 .contact-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: 60px;
  height: 60px;
  line-height: 1;
  font-size: 25px;
  color: var(--tj-color-common-white);
  background: var(--tj-color-theme-primary);
  margin-bottom: 35px;
}
.contact-style-2 .title {
  margin-bottom: 15px;
}
.contact-style-2 .contact-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-style-2 .contact-list ul li {
  line-height: 1.6;
}
.contact-style-2 .contact-list ul li a {
  position: relative;
  z-index: 2;
}
.contact-style-2 .contact-list ul li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  background: var(--tj-color-text-body);
}
.contact-style-2 .contact-list ul li a:hover::before {
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

/* !END: Contact CSS */
/**----------------------------------------
Faq CSS
----------------------------------------*/
.tj-faq-section {
  padding-top: 120px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.tj-faq-section .tj-heading-area {
  margin-bottom: 45px;
}
.tj-faq-section .faq-wrapper {
  position: absolute;
  top: 120px;
  left: 0;
  max-width: 925px;
  width: 100%;
  min-height: 700px;
}
.tj-faq-section .faq-wrapper .faq-inner {
  position: absolute;
  left: 0px;
  top: 110px;
  max-width: 60%;
  width: 100%;
  height: 495px;
  -webkit-mask-image: url(../images/shapes/faq-2.svg);
          mask-image: url(../images/shapes/faq-2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.tj-faq-section .faq-wrapper .faq-imges {
  position: absolute;
  left: 135px;
  top: 0px;
  max-width: 78%;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(../images/shapes/faq-1.svg);
          mask-image: url(../images/shapes/faq-1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: cover;
          mask-size: cover;
  z-index: -1;
}
.tj-faq-section .faq-wrapper .faq-imges img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-faq-section .faq-wrapper {
    max-width: 800px;
    min-height: 600px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-faq-section .faq-wrapper {
    max-width: 700px;
    min-height: 525px;
  }
  .tj-faq-section .faq-wrapper .faq-inner {
    height: 335px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-faq-section .faq-wrapper {
    max-width: 540px;
    min-height: 410px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .tj-faq-section .faq-wrapper .faq-inner {
    height: 245px;
    top: 80px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section .faq-wrapper {
    max-width: 410px;
    min-height: 310px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .tj-faq-section .faq-wrapper .faq-inner {
    height: 200px;
    top: 50px;
  }
}
.tj-faq-section .faq-content-inner {
  max-width: 610px;
  width: 100%;
  margin-left: auto;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px), only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-faq-section {
    padding-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-faq-section {
    padding-top: 80px;
    padding-bottom: 0px;
  }
  .tj-faq-section .tj-heading-area {
    margin-bottom: 40px;
  }
  .tj-faq-section .faq-wrapper {
    display: none;
  }
  .tj-faq-section .faq-content-inner {
    max-width: 100%;
  }
}

.accordion-item {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  border-radius: 150px;
  border: none;
}
.accordion-item .faq-content .faq-title {
  font-size: 18px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  padding: 20px 55px 20px 60px;
  background-color: transparent;
  position: relative;
  color: var(--tj-color-theme-primary);
  width: 100%;
  text-align: left;
  z-index: 1;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 150px;
}
.accordion-item .faq-content .faq-title:before {
  position: absolute;
  content: "\f107";
  font-family: "Font Awesome 6 Pro";
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(0deg);
      -ms-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  color: var(--tj-color-theme-primary);
  font-weight: var(--tj-fw-ebold);
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.accordion-item .faq-content .faq-title .number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 50px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 16px;
  font-family: var(--tj-ff-heading);
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  line-height: 1;
  -webkit-box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
          box-shadow: 0px 3px 7px 0px rgba(11, 61, 44, 0.35);
  border-radius: 50px;
  background: var(--tj-color-common-white);
}
.accordion-item .faq-content .faq-title:not(.collapsed) {
  background: var(--tj-color-theme-secondary);
  border-color: var(--tj-color-theme-secondary);
}
.accordion-item .faq-content .faq-title:not(.collapsed):before {
  -webkit-transform: translateY(-50%) rotate(-180deg);
      -ms-transform: translateY(-50%) rotate(-180deg);
          transform: translateY(-50%) rotate(-180deg);
}
.accordion-item .faq-content .faq-title:not(.collapsed) .number {
  color: var(--tj-color-common-white);
  background-color: var(--tj-color-theme-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-item .faq-text {
  padding: 50px 65px 25px 65px;
  background: var(--tj-color-theme-bg-3);
  border-radius: 150px;
  border: 1px solid var(--tj-color-theme-primary);
  margin-top: -25px;
}
.accordion-item .faq-text p {
  color: var(--tj-color-text-body);
  line-height: 1.8;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .accordion-item .faq-content .faq-title {
    padding: 20px 55px 20px 60px;
  }
  .accordion-item .faq-text {
    padding: 50px 50px 25px 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .accordion-item .faq-content .faq-title {
    padding: 20px 55px 20px 70px;
  }
  .accordion-item .faq-content .faq-title .number {
    left: -15px;
  }
  .accordion-item .faq-text {
    padding: 50px 40px 25px 40px;
  }
}
@media (max-width: 575px) {
  .accordion-item {
    padding-left: 10px;
  }
  .accordion-item .faq-content .faq-title {
    padding: 20px 55px 20px 70px;
  }
  .accordion-item .faq-content .faq-title .number {
    left: -15px;
  }
  .accordion-item .faq-text {
    padding: 50px 25px 25px 25px;
    border-radius: 60px;
  }
}

/* !END: Faq CSS */
/**----------------------------------------
START: Brand CSS
----------------------------------------*/
.tj-brand-section {
  padding: 95px 0;
  position: relative;
  z-index: 1;
}
.tj-brand-section .banner-shapes {
  position: absolute;
  top: -10%;
  left: -8%;
  max-width: 345px;
  width: 100%;
  z-index: -1;
}
.tj-brand-section .banner-shapes img {
  width: 100%;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .tj-brand-section .banner-shapes {
    max-width: 280px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), 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) {
  .tj-brand-section .banner-shapes {
    max-width: 180px;
    top: -65%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-brand-section .banner-shapes {
    max-width: 130px;
    top: -65%;
  }
}
@media (max-width: 575px) {
  .tj-brand-section .banner-shapes {
    display: none;
  }
}
.tj-brand-section .tj-brand-slider .swiper-wrapper {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-brand-section {
    padding: 60px 0;
  }
}
@media (max-width: 575px) {
  .tj-brand-section {
    padding: 40px 0 60px;
  }
  .tj-brand-section .tj-brand-slider {
    text-align: center;
  }
}

.brand-item {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 130px;
  line-height: 1;
  position: relative;
  border-left: 1px solid transparent;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}
.brand-item::after, .brand-item::before {
  position: absolute;
  content: "";
  width: calc(100% - 2px);
  left: 0px;
  z-index: -1;
}
.brand-item:before {
  height: 23%;
  top: 0px;
  border: 1px solid transparent;
  border-width: 1px 1px 0px 0px;
  -webkit-transform: skew(50deg);
      -ms-transform: skew(50deg);
          transform: skew(50deg);
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
}
.brand-item:after {
  height: calc(80% - 4px);
  bottom: 0px;
  border: 1px solid transparent;
  border-width: 0px 1px 1px 0px;
}
.brand-item a {
  display: inline-block;
  padding: 0px 20px;
}
.brand-item a img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  opacity: 0.6;
}
.brand-item:hover {
  border-color: var(--tj-color-theme-primary);
}
.brand-item:hover::after, .brand-item:hover::before {
  border-color: var(--tj-color-theme-primary);
}
.brand-item:hover a img {
  -webkit-filter: grayscale(0);
          filter: grayscale(0);
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .brand-item {
    width: 200px;
    height: 120px;
  }
}
@media (max-width: 575px) {
  .brand-item {
    width: auto;
    height: auto;
  }
  .brand-item::after, .brand-item::before {
    display: none;
  }
  .brand-item a {
    padding: 0;
  }
  .brand-item a img {
    max-width: 140px;
    width: 100%;
  }
}

/* !END: Brand CSS */
/**----------------------------------------
Slider CSS
----------------------------------------*/
.tj-slider-section {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 2;
}
.tj-slider-section .slider-navigation {
  position: absolute;
  bottom: 30px;
  right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  z-index: 2;
}
.tj-slider-section .slider-navigation .slider-next,
.tj-slider-section .slider-navigation .slider-prev {
  position: relative;
  z-index: 1;
  font-size: 32px;
  color: #000;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}
.tj-slider-section .slider-navigation .slider-next::before,
.tj-slider-section .slider-navigation .slider-prev::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  right: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 2px solid #8b8b8b;
  border-radius: 50%;
}
.tj-slider-section .slider-navigation .slider-next::after,
.tj-slider-section .slider-navigation .slider-prev::after {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  right: -4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: var(--tj-color-common-white);
  border-radius: 50%;
}
.tj-slider-section .slider-navigation .slider-next i,
.tj-slider-section .slider-navigation .slider-prev i {
  position: relative;
  right: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  z-index: 2;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.tj-slider-section .slider-navigation .slider-next:hover::before,
.tj-slider-section .slider-navigation .slider-prev:hover::before {
  border-color: #0070bc;
}
.tj-slider-section .slider-navigation .slider-next:hover .icon_1,
.tj-slider-section .slider-navigation .slider-prev:hover .icon_1 {
  right: 11px;
}
.tj-slider-section .slider-navigation .slider-next:hover .icon_2,
.tj-slider-section .slider-navigation .slider-prev:hover .icon_2 {
  right: -11px;
}
.tj-slider-section .slider-navigation .slider-prev::before {
  right: auto;
  left: -20px;
}
.tj-slider-section .slider-navigation .slider-next::after {
  right: 0px;
}
/*@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-section .slider-navigation {
    right: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-slider-section .slider-navigation {
    right: 30px;
    gap: 15px;
    bottom: 0;
  }
  .tj-slider-section .slider-navigation .slider-next,
  .tj-slider-section .slider-navigation .slider-prev {
    max-width: 50px;
  }
}
@media (max-width: 575px) {
  .tj-slider-section .slider-navigation {
    right: 15px;
    gap: 15px;
  }
  .tj-slider-section .slider-navigation .slider-next,
  .tj-slider-section .slider-navigation .slider-prev {
    max-width: 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) {
  .tj-slider-section .slider-navigation {
    right: 45px;
  }
}
@media (max-width: 575px) {
  .tj-slider-section .slider-navigation {
    bottom: 0;
  }
}
*/
.tj-slider-item .slider-content-area {
  background-repeat: no-repeat;
  /*background-position: right;*/
  background-size: cover;
  height: 500px;
  /*border-radius: 0px 0px 500px 0px;*/
  position: relative;
  z-index: 2;
  margin-top: 138px;
}
.tj-slider-item .slider-content-area .hero-shapes {
  max-width: 56%;
  width: 100%;
  height: 92%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.tj-slider-item .slider-content-area .hero-shapes img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-content-area .hero-shapes {
    max-width: 58%;
    height: 95%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-item .slider-content-area .hero-shapes {
    display: none;
  }
}
.tj-slider-item .slider-content-area .hero-shapes2 {
  position: absolute;
  top: -95px;
  left: -35px;
  max-width: 280px;
  width: 100%;
  z-index: 1;
}
.tj-slider-item .slider-content-area .hero-shapes2 img {
  width: 100%;
  -webkit-animation: bounceTopToBottom 4s infinite;
          animation: bounceTopToBottom 4s infinite;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px), only screen and (min-width: 1400px) and (max-width: 1600px), 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-area .hero-shapes2 {
    max-width: 150px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .tj-slider-item .slider-content-area .hero-shapes2 {
    display: none;
  }
}
.tj-slider-item .slider-content-area .slider-text {
  max-width: 730px;
  width: 100%;
  padding-top: 195px;
  position: relative;
  z-index: 2;
}
.tj-slider-item .slider-content-area .slider-text .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: 10px;
    /* border: 2px solid var(--tj-color-grey-17); */
    font-size: 16px;
    color: #000;
    font-weight: 400;
    border-radius: 50px;
    /* padding: 5px 20px; */
    /* margin-bottom: 25px; */
    opacity: 0;
    visibility: hidden;
    -webkit-transition-delay: 1000ms;
    transition-delay: 1000ms;
    -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}
.tj-slider-item .slider-content-area .slider-text .sub-title i {
  font-weight: var(--tj-fw-bold);
  color: var(--tj-color-theme-primary);
}
.tj-slider-item .slider-content-area .slider-text .slider-title {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
  margin-bottom: 0;
  z-index: 1;
}
.tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
  position: absolute;
  top: -60px;
  right: 9;
  max-width: 150px;
  width: 100%;
  -webkit-animation: pulse 1.5s ease-in-out infinite;
          animation: pulse 1.5s ease-in-out infinite;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
    top: -25px;
    right: -55%;
    max-width: 85px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
    top: -25px;
    right: -55%;
    max-width: 85px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
    top: -35px;
    right: -65%;
    max-width: 85px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
    top: -35px;
    right: -65%;
    max-width: 75px;
  }
}
@media (max-width: 575px) {
  .tj-slider-item .slider-content-area .slider-text .slider-title span .shapes-icon {
    top: -35px;
    right: -65%;
    max-width: 75px;
  }
}
.tj-slider-item .slider-content-area .slider-text .slider-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 45px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition-delay: 700ms;
  transition-delay: 700ms;
  -webkit-transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
  transition: opacity 1500ms ease, -webkit-transform 1500ms ease;
  transition: transform 1500ms ease, opacity 1500ms ease;
  transition: transform 1500ms ease, opacity 1500ms ease, -webkit-transform 1500ms ease;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    margin-top: 35px;
  }
}
@media (max-width: 575px) {
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    -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;
  }
}
/*@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj-slider-item .slider-content-area {
    height: 795px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj-slider-item .slider-content-area {
    height: 695px;
  }
}*/
/*@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-slider-item .slider-content-area {
    border-radius: 0px 0px 400px 0px;
    background-size: cover;
    background-position: top right;
  }
  .tj-slider-item .slider-content-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(11, 61, 44, 0.6);
    border-radius: 0px 0px 400px 0px;
  }
  .tj-slider-item .slider-content-area .slider-text {
    padding-top: 165px;
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title i {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-slider-item .slider-content-area {
    height: 590px;
    border-radius: 0px 0px 400px 0px;
    background-size: cover;
    background-position: top right;
  }
  .tj-slider-item .slider-content-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(11, 61, 44, 0.6);
    border-radius: 0px 0px 400px 0px;
  }
  .tj-slider-item .slider-content-area .hero-shapes {
    max-width: 580px;
  }
  .tj-slider-item .slider-content-area .slider-text {
    padding-top: 165px;
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title i {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-slider-item .slider-content-area {
    height: 565px;
    border-radius: 0px 0px 300px 0px;
    background-size: cover;
    background-position: top right;
  }
  .tj-slider-item .slider-content-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(11, 61, 44, 0.6);
    border-radius: 0px 0px 300px 0px;
  }
  .tj-slider-item .slider-content-area .hero-shapes {
    max-width: 580px;
  }
  .tj-slider-item .slider-content-area .slider-text {
    padding-top: 165px;
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title i {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .tj-slider-item .slider-content-area {
    height: 630px;
    border-radius: 0px 0px 300px 0px;
    background-size: cover;
    background-position: top right;
  }
  .tj-slider-item .slider-content-area::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(11, 61, 44, 0.6);
    border-radius: 0px 0px 300px 0px;
  }
  .tj-slider-item .slider-content-area .hero-shapes {
    max-width: 580px;
  }
  .tj-slider-item .slider-content-area .slider-text {
    padding-top: 165px;
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .sub-title i {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-title {
    color: var(--tj-color-common-white);
  }
  .tj-slider-item .slider-content-area .slider-text .slider-button {
    margin-top: 30px;
  }
  .tj-slider-item .slider-content-area .slider-text .slider-button .tj-button {
    max-width: 175px;
  }
}*/
.tj-slider-item .sub-title {
  -webkit-transform: translateX(125px);
      -ms-transform: translateX(125px);
          transform: translateX(125px);
}
.tj-slider-item .slider-title {
  -webkit-transform: translateY(-125px);
      -ms-transform: translateY(-125px);
          transform: translateY(-125px);
}
.tj-slider-item .slider-button {
  -webkit-transform: translateY(125px);
      -ms-transform: translateY(125px);
          transform: translateY(125px);
}
.tj-slider-item.swiper-slide.swiper-slide-active .slider-button,
.tj-slider-item.swiper-slide.swiper-slide-active .slider-title,
.tj-slider-item.swiper-slide.swiper-slide-active .sub-title {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
      -ms-transform: translateY(0) translateX(0);
          transform: translateY(0) translateX(0);
}

/* !END: Slider CSS */
/**----------------------------------------
Skill CSS
----------------------------------------*/
.tj-skill-section {
  background: var(--tj-color-theme-secondary);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tj-skill-section .skill-shapes {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 330px;
  width: 100%;
  z-index: -1;
}
.tj-skill-section .skill-shapes img {
  width: 100%;
}
.tj-skill-section .skill-shapes2 {
  position: absolute;
  bottom: 50px;
  right: 0;
  max-width: 170px;
  width: 100%;
  z-index: -1;
}
.tj-skill-section .skill-shapes2 img {
  width: 100%;
}

.skill-wrapper {
  max-width: 700px;
  width: 100%;
  position: absolute;
  left: 150px;
  bottom: 0;
}
.skill-wrapper::before {
  position: absolute;
  content: "";
  top: -20%;
  right: 45px;
  width: 270px;
  height: 260px;
  -webkit-mask-image: url(../images/shapes/skill-1.png);
          mask-image: url(../images/shapes/skill-1.png);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: var(--tj-color-theme-primary);
  z-index: -1;
}
.skill-wrapper::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 500px;
  height: 480px;
  background: var(--tj-color-theme-primary);
  border-radius: 0px 0px 350px 350px;
  z-index: -1;
}
.skill-wrapper img {
  width: 100%;
}
.skill-wrapper .line-4,
.skill-wrapper .line-3,
.skill-wrapper .line-2,
.skill-wrapper .line-1 {
  display: block;
  width: 200px;
  height: 200px;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: 50px;
  left: 35%;
  z-index: -1;
}
.skill-wrapper .line-2 {
  width: 285px;
  height: 285px;
  left: 30%;
  top: -20px;
}
.skill-wrapper .line-3 {
  width: 410px;
  height: 410px;
  left: 20%;
  top: -10%;
}
.skill-wrapper .line-4 {
  width: 520px;
  height: 520px;
  left: 12%;
  top: -18%;
}
@media only screen and (min-width: 1601px) and (max-width: 1750px) {
  .skill-wrapper {
    left: 50px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .skill-wrapper {
    max-width: 610px;
    left: 50px;
  }
  .skill-wrapper::before {
    top: -35%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill-wrapper {
    max-width: 610px;
    left: 50px;
  }
  .skill-wrapper::before {
    top: -35%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .skill-wrapper {
    max-width: 510px;
    left: 40px;
  }
  .skill-wrapper::before {
    top: -20%;
  }
  .skill-wrapper::after {
    width: 310px;
    height: 350px;
  }
  .skill-wrapper .line-4 {
    width: 365px;
    height: 375px;
    left: 12%;
    top: -10%;
  }
  .skill-wrapper .line-3 {
    width: 300px;
    height: 320px;
    left: 19%;
    top: -4%;
  }
  .skill-wrapper .line-2 {
    width: 215px;
    height: 240px;
    left: 28%;
    top: 15px;
  }
  .skill-wrapper .line-1 {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .skill-wrapper {
    max-width: 435px;
    left: 40px;
  }
  .skill-wrapper::before {
    top: -20%;
    width: 230px;
    height: 150px;
  }
  .skill-wrapper::after {
    width: 310px;
    height: 350px;
  }
  .skill-wrapper .line-4 {
    width: 320px;
    height: 320px;
    left: 6%;
    top: -10%;
  }
  .skill-wrapper .line-3 {
    width: 275px;
    height: 275px;
    left: 11%;
    top: -4%;
  }
  .skill-wrapper .line-2 {
    width: 150px;
    height: 150px;
    left: 20%;
    top: 15px;
  }
  .skill-wrapper .line-1 {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .skill-wrapper {
    display: none;
  }
}

.skill-content {
  padding-top: 120px;
  padding-bottom: 120px;
}
.skill-content .desc {
  color: var(--tj-color-text-body-4);
  line-height: 1.7;
}
.skill-content .desc p:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .skill-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.tj-progress-bar {
  margin-top: 45px;
}
.tj-progress-bar .progress-item {
  position: relative;
  background: var(--tj-color-common-white);
  margin-bottom: 25px;
  padding: 28px 15px;
  border-radius: 150px;
  z-index: 1;
}
.tj-progress-bar .progress-item .title {
  position: absolute;
  left: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 20px;
  margin-bottom: 0px;
}
.tj-progress-bar .progress-item .item_value {
  max-width: 75px;
  width: 100%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 10px;
  font-size: 18px;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-theme-primary);
  background: var(--tj-color-theme-bg-3);
  padding: 7px 20px;
  border-radius: 150px;
}
.tj-progress-bar .progress-item .item_bar {
  position: relative;
  height: 5px;
  width: 50%;
  background-color: var(--tj-color-theme-bg-3);
  margin-left: 185px;
  border-radius: 150px;
}
.tj-progress-bar .progress-item .item_bar .progress {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  height: 6px;
  margin: 0;
  border-radius: 0px;
  overflow: visible;
  background: -webkit-gradient(linear, right top, left top, from(rgb(11, 61, 44)), to(rgb(255, 255, 255)));
  background: linear-gradient(-90deg, rgb(11, 61, 44) 0%, rgb(255, 255, 255) 100%);
  -webkit-transition: width 100ms ease;
  transition: width 100ms ease;
}
.tj-progress-bar .progress-item .item_bar .progress::before {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -10px;
  border-top: 8px solid transparent;
  border-left: 15px solid var(--tj-color-theme-primary);
  border-bottom: 8px solid transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-progress-bar .progress-item .title {
    left: 20px;
  }
  .tj-progress-bar .progress-item .item_bar {
    width: 40%;
    margin-left: 165px;
  }
}
@media (max-width: 575px) {
  .tj-progress-bar .progress-item .title {
    left: 20px;
    font-size: 16px;
  }
  .tj-progress-bar .progress-item .item_value {
    max-width: 60px;
    font-size: 16px;
    padding: 5px 15px;
  }
  .tj-progress-bar .progress-item .item_bar {
    width: 40%;
    margin-left: 125px;
  }
}

/* !END: Skill CSS */
/**----------------------------------------
Newsletter CSS
----------------------------------------*/
.tj-newsletter-section {
  padding-bottom: 120px;
}
@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-newsletter-section {
    padding-bottom: 80px;
  }
}

.newsletter-content-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 48px 90px;
  border-radius: 150px;
}
.newsletter-content-area .newsletter-form {
  position: relative;
  max-width: 545px;
  width: 100%;
  z-index: 1;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
.newsletter-content-area .newsletter-form input[type=email] {
  font-size: 18px;
  background-color: rgb(255, 255, 255);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.1);
          box-shadow: 0px 0px 30px 0px rgba(11, 61, 44, 0.1);
  border-radius: 100px;
  padding: 23px 230px 23px 35px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder,
.newsletter-content-area .newsletter-form input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-webkit-input-placeholder, .newsletter-content-area .newsletter-form input[type=email]::-webkit-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-moz-placeholder, .newsletter-content-area .newsletter-form input[type=email]::-moz-placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]):-ms-input-placeholder, .newsletter-content-area .newsletter-form input[type=email]:-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::-ms-input-placeholder, .newsletter-content-area .newsletter-form input[type=email]::-ms-input-placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search])::placeholder,
.newsletter-content-area .newsletter-form input[type=email]::placeholder {
  color: var(--tj-color-text-body);
  font-size: 18px;
}
.newsletter-content-area .newsletter-form .tj-button {
  border: none;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 0px 150px 150px 0px;
  border-radius: 0px 150px 150px 0px;
}
.newsletter-content-area .newsletter-form .tj-button .tj-secondary-btn {
  top: 3px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .newsletter-content-area {
    padding: 48px 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .newsletter-content-area {
    padding: 48px 30px;
  }
  .newsletter-content-area .newsletter-form {
    max-width: 450px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .newsletter-content-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 35px 15px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .newsletter-content-area {
    border-radius: 100px;
  }
}
@media (max-width: 575px) {
  .newsletter-content-area {
    border-radius: 50px;
  }
  .newsletter-content-area .newsletter-form input:not([type=submit]):not([type=radio]):not([type=checkbox]):not([type=search]),
  .newsletter-content-area .newsletter-form input[type=email] {
    padding: 23px 120px 23px 35px;
  }
  .newsletter-content-area .newsletter-form form {
    text-align: center;
  }
  .newsletter-content-area .newsletter-form .tj-button {
    position: initial;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    margin-top: 25px;
    border-radius: 100px;
    max-width: 100%;
  }
  .newsletter-content-area .newsletter-form .tj-primary-btn {
    padding: 18px 25px;
    border-radius: 150px;
  }
}

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


@media(max-width: 1345px){
  .header-contact {
    min-width: 170px;
}
.mainmenu ul > li {
    padding-right: 0px;
}
}

@media(max-width: 1278px){
  .mainmenu ul > li > a {
    font-size: 15px;
}
}

@media(max-width: 1248px){
  .site-logo{
    max-width: 300px;
  }
}


.hedmen li a {
    color: #1b1b1b !important;
    font-size: 15px !important;
    border-bottom: 1px solid #c3c3c3 !important;
    font-weight: 500 !important;
}
.hedmen li{
  padding-left: 0!important;
  padding-right: 0!important;
}




.hsgp {
    /*padding: 60px 0;*/
    background: #142f74;
    margin: 60px 0;
}
.headlo{
  padding: 30px 0px;
}

/*.hsgp{
  padding: 60px 0;
}*/
.headlo h2 {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
    line-height: 32px;
    margin-bottom: 4px;
}
.headlo h3{
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
}
.headlo h4 {
    font-size: 17px;
    color: #fff;
    font-weight: 500;
    line-height: 25px;
    margin-bottom: 0;
    margin-bottom: 18px;
    border-bottom: 2px dotted #c2c2c2;
    padding-bottom: 15px;
}
.abotp p{
  font-size: 17px;
  color: #fff;
  line-height: 28px;
  /*text-align: justify;*/
  margin-bottom: 12px;
}
.kab{
  margin-top: 25px;
}
.jshko{
  text-align: center !important;
  padding-bottom: 40px;
}
.jshko h2{
  font-size: 40px;
  color: #000;
  font-weight: 600;
  margin-bottom: 0;
}
.eichf a {
    font-size: 25px;
    color: #ffffff;
}
.eichf{
  padding-bottom: 5px;
    background: #0070bc;
    text-align: center;
    margin-bottom: 6px;
}
.bloskj{
  border: 2px solid #c7c3c3;
}
.cjskk p {
    font-size: 15px;
    color: #000;
    padding: 10px 14px;
    margin-bottom: 0;
    line-height: 26px;
}
.jshko img{
  width: 5% !important;
}
.hsgp{
  position: relative;
}
.
.jskdk{
 
}
.jskdk img {
    width: 10%;
    position: absolute;
    bottom: 0%;
    right: 0%;
}
.fest p{
  color: #000;
  font-size: 16px;
  line-height: 28px;

}
.tesim{
  padding-right: 8px;
  width: 50px;
  height: 50px;
  padding-top: 3px;
}
.colsi{
  padding-bottom: 60px;
  position: relative;
  padding-top: 30px;
}
.cosis {
    position: absolute;
    top: 44%;
    left: 65%;
    right: 0%;
}
.last{
  margin-bottom: 0 !important;
}
.attsh h2{
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  line-height: 32px;
  padding-bottom: 15px;
}
.kiospsp h2{
  color: #000;
}
.attsh span{
  color: #000 !important;
}
.attsh img{
  width: 6%;
}
.attsh{
  margin-bottom: 40px;
}
.attak p{
  color: #000 !important;
  font-size: 15px !important;
  margin-bottom: 0;
}
.attak h4{
  color: #142f74 !important;
}
.attak p i{
  color: #142f74 !important;
  padding-right: 6px;
}
.attak h4 a{
  font-size: 22px !important;
}
.omet{
  position: relative;
}
.comets {
    position: absolute;
    top: 89%;
    bottom: 0;
    left: 90%;
    right: 0%;
}
.comets img{
  width: 100%;
}
.consul h4{
  padding-bottom: 6px;
}
.consul h4 a{
  font-size: 26px !important;
}
.consul p{
  font-size: 15px !important;
  display: flex;
  padding-bottom: 8px;
}
.consul p i{
  padding-top: 5px;
  padding-right: 8px;
}
.consul{
  text-align: inherit !important;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 18px;
}
.ppsp{
  text-align: center;
}
.conjijki{
  /*background: #0070bb;*/
  padding: 0px 0 30px 0;
}
.footer-title h4{
  color: #fff;
  margin-bottom: 8px;
}
.pdio{
  padding-top: 30px;
}
.testij img{
  width: 50px;
  height: 50px;
  padding-right: 10px;
}
.aeret{
  height: 2px;
  background: #fff;
  width: 10%;
  margin-bottom: 30px;
}
.docgfy p {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    text-align: justify;
    margin-bottom: 6px;
}
.fivr ul li{
  list-style: none;
  padding-bottom: 10px;
}
.fivr ul li a{
  color: #fff;
  font-size: 16px;
}
.fivr ul li a i{
  padding-right: 10px;
}
.feetcoj p i{
  color: #fff;
  padding-right: 10px;
}
.feetcoj p a{
  color: #fff;
  font-size: 16px;
}
.hsgu{
  font-size: 14px;
  color: #fff;
}
.jios li a{
  font-size: 14px;
}
.hsu img{
  width: 50px;
}
.jshi p{
  color: #000;
  font-size: 16px;

}



/*contact us code start*//*contact us code start*//*contact us code start*/
/*contact us code start*//*contact us code start*//*contact us code start*/
/*contact us code start*//*contact us code start*//*contact us code start*/
/*contact us code start*//*contact us code start*//*contact us code start*/

.conau{
  padding: 40px 0 60px 0;
}
.conaddp {
    background: #0070bc;
    box-shadow: 0px 0px 7px 2px #d3d3d3;
    padding: 23px 15px 23px 15px;
    margin-top: 10px;
}
.conaddp h4 {
    font-size: 24px;
    color: #fff;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 0;
    padding-bottom: 12px;
    margin-top: 0;
}
.conaddp p{
  font-size: 17px;
  color: #fff;
}
.conaddp p a{
  color: #fff;
}
.conaddp p i{
  color: #fff;
  padding-right: 8px;
}
.formgh {
    background: #c1c78e;
    box-shadow: 0px 0px 7px 2px #d3d3d3;
    padding: 20px 15px 15px 15px;
    margin-top: 20px;
}
.formgh h2 {
    font-size: 24px;
    color: #fff;
    font-weight: 400;
    text-align: center;
    padding-bottom: 0px;
    margin-bottom: 0;
}
.mapoi{
  margin-bottom: -11px;
}
.conaddp ul{
padding-top: 6px;
}
.majioo{
  margin-bottom: -10px;
}
/*contact us end*//*contact us end*//*contact us end*//*contact us end*/
/*contact us end*//*contact us end*//*contact us end*//*contact us end*/
/*contact us end*//*contact us end*//*contact us end*//*contact us end*/
/*contact us end*//*contact us end*//*contact us end*//*contact us end*/

.saalk{
  text-align: center;
}
.saalk h2{
  font-size: 26px;
  color: #000;
}
.uyey {
    background: #eee;
    padding: 27px 30px;
}
.ksjjs{
  margin-bottom: -10px;
}
.bhisj{
  padding-top: 60px;
}
.lsklls{
  padding-top: 60px;
}
.freeu{
  padding: 30px 0 30px 0;
}
.kksop{
  padding-top: 30px;
}
.jab{
  margin-top: 15px;
}

@media(max-width: 1315px){
  .footer-title h4 {
    font-size: 21px;
}
}

.yahihoy{
  /*background: #0070bc;*/
  background: url(../img/attachment/back2.jpg);
  background-size: cover;
  padding-top: 60px;
}
/*inner page service start*//*inner page service start*//*inner page service start*/
/*inner page service start*//*inner page service start*//*inner page service start*/
/*inner page service start*//*inner page service start*//*inner page service start*/
/*inner page service start*//*inner page service start*//*inner page service start*/
.inner{
  padding: 60px 0;
}
.inner p{
  text-align: justify;
}
.baar ul li{
  list-style: none;
  display: block;
}
.baar ul li a {
    background: #cacaca30;
    color: #000;
    padding: 11px 0;
    margin: 2px 0;
    display: block;
    padding-left: 15px;
    font-weight: 500;
    transition: 0.5s;
    font-size: 16px;
    text-transform: capitalize;
}
.baar ul{
  margin-bottom: 0;
}
.baar ul li a i{
  float: right;
  padding-right: 5px;
  padding-top: 9px;
  color: #000;
}
.baar ul li a:hover, .baar ul li a.active {
    background: #0070bc;
    color: #ffffff;
}
.ents {
    background: #1c3975;
    color: #fff;
    padding: 4px 0;
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 1px;
}
.action h2{
  font-size: 21px;
  text-transform: capitalize;
}
.action h2 {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    line-height: 28px;
    border-radius: 2px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 16px;
    background: #1c3975;
    padding-left: 12px;
}
.gapping{
  padding-top: 10px;
  padding-bottom: 10px;
}
.gapping p i {
    font-size: 17px;
    color: #293474;
}
.action img{
      margin: 0 auto;
    width: 100%;
    border: 4px solid #81868d3b;
}
.gapping ul{
  padding-left: 0;
  margin-bottom: 5px;
}
.gapping ul li {
    color: #1a1a1a;
    line-height: 25px;
    padding-bottom: 10px;
    list-style: none;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}
.gapping ul li i {
    color: #0070bc;
    padding-right: 8px;
    padding-top: 5px;
}
.gapping h5 {
    color: #1c3975;
    font-size: 21px;
    font-weight: 500;
    border-radius: 6px;
    padding-top: 8px;
    margin-bottom: 15px;
    text-transform: capitalize;
}
.satay{
  padding: 15px 20px;
  box-shadow: 0 0 30px rgb(0 0 0 / 10%);
}
.gapping p {
    margin-bottom: 10px;
    line-height: 29px;
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 400;
}
.gapping b{
  color: #000;
  font-size: 16px;
}
.sidecolgyb{
  padding-right: 0;
  padding-left: 0;
}
.hfive{
  padding-top: 12px;
}
.gapping{
  padding-top: 20px;
}
.hakj p{ 
   padding-bottom: 2px;
}
.hakj h2{
  padding-bottom: 5px;
}
.baar ul{
  padding-left: 0;
}
/*inner page service end*//*inner page service end*//*inner page service end*/
/*inner page service end*//*inner page service end*//*inner page service end*/
/*inner page service end*//*inner page service end*//*inner page service end*/
/*inner page service end*//*inner page service end*//*inner page service end*/
/*inner page service end*//*inner page service end*//*inner page service end*/

.loiuy{
  padding-top: 30px;
}
.nsrt{
  color: #000 !important;
}

/*/*gallery css start gallery css s*//*/*gallery css start gallery css s*/
/*/*gallery css start gallery css s*//*/*gallery css start gallery css s*/
/*/*gallery css start gallery css s*//*/*gallery css start gallery css s*/
/*/*gallery css start gallery css s*//*/*gallery css start gallery css s*/


.portfolio-menu{
  text-align:center;
}
.portfolio-menu ul li{
  display:inline-block;
  margin:0;
  list-style:none;
  padding:10px 15px;
  cursor:pointer;
  -webkit-transition:all 05s ease;
  -moz-transition:all 05s ease;
  -ms-transition:all 05s ease;
  -o-transition:all 05s ease;
  transition:all .5s ease;
}

.portfolio-item{
  /*width:100%;*/
}
.portfolio-item .item{
  /*width:303px;*/
  float:left;
  margin-bottom:10px;
}
.gaal{
  padding: 30px 0 60px 0;
}
.galled{
  padding-top: 30px;
}
.galled img {
    /* box-shadow: 0 0 5px 9px #ddd; */
    border: 2px solid #d7d7d7;
}

/*gallery css end gallery css end*//*gallery css end gallery css end*/
/*gallery css end gallery css end*//*gallery css end gallery css end*/
/*gallery css end gallery css end*//*gallery css end gallery css end*/
/*gallery css end gallery css end*//*gallery css end gallery css end*/

.imnfh img{
  width: 100%;
}


@media(max-width: 1200px){
  .jdhhf{
    display: none !important;
  }
  .mainmenu-inner {
    padding-left: 18px;
  }
  .tj-slider-item .slider-content-area {
    margin-top: 136px;
}
}

@media(max-width: 1385px){
  .tj-slider-item .slider-content-area {
    height: 488px;
}
}

@media(max-width: 1366px){
  .tj-slider-item .slider-content-area {
    height: 475px;
}
}

@media (max-width: 1323px) {
    .tj-slider-item .slider-content-area {
        height: 463px;
    }
}

@media (max-width: 1295px) {
    .tj-slider-item .slider-content-area {
        height: 450px;
    }
}

@media (max-width: 1246px) {
    .tj-slider-item .slider-content-area {
        height: 434px;
    }
}

@media (max-width: 1207px) {
    .tj-slider-item .slider-content-area {
        height: 422px;
    }
}

@media (max-width: 1186px) {
    .tj-slider-item .slider-content-area {
        height: 416px;
    }
}

@media (max-width: 1171px) {
    .tj-slider-item .slider-content-area {
        height: 413px;
    }
}

@media (max-width: 1145px) {
    .tj-slider-item .slider-content-area {
        height: 402px;
    }
}

@media (max-width: 1118px) {
    .tj-slider-item .slider-content-area {
        height: 392px;
    }
}


@media (max-width: 1094px) {
    .tj-slider-item .slider-content-area {
        height: 384px;
    }
}

@media (max-width: 1070px) {
    .tj-slider-item .slider-content-area {
        height: 377px;
    }
}

@media(max-width: 1321px){
  .mainmenu ul {
    gap: 25px;
}
}

@media(max-width: 1136px){
  .mainmenu ul {
    gap: 18px;
}
}

@media (max-width: 1085px) {
    .mainmenu ul > li > a {
        font-size: 14px;
    }
}

@media (max-width: 1058px) {
    .tj-slider-item .slider-content-area {
        height: 370px;
    }
    .mainmenu ul {
    gap: 13px;
}
}

@media(max-width: 1200px){
  .counter-item-two {
    padding: 12px 8px 12px 8px;
}
.counter-item-two .counter-content .tj-count span {
    font-size: 28px;
}
.counter-item-two .counter-icon{
  padding: 12px;
}
.counter-item-two .counter-content .tj-count{
  font-size: 24px;
}
}

@media (max-width: 1032px) {
    .tj-slider-item .slider-content-area {
        height: 358px;
    }
}

@media (max-width: 985px) {
    .tj-slider-item .slider-content-area {
        height: 342px;
    }
}

@media(max-width: 1278px){
  .tj-slider-item .slider-content-area {
    margin-top: 135px;
}
}

@media(max-width: 1050px){
  .linj{
    display: none;
  }
}

@media(max-width: 768px){
  .sertii{
    display: none !important;
  }
}

@media(max-width: 347px){
  .terte{
    display: none !important;
  }
}

@media (max-width: 991px) {
    .tj-slider-item .slider-content-area {
        margin-top: 115px;
    }
    .site-logo .logo img {
    padding: 6px 0;
}
}

@media (max-width: 939px) {
    .tj-slider-item .slider-content-area {
        height: 330px;
    }
}

@media (max-width: 892px) {
    .tj-slider-item .slider-content-area {
        height: 308px;
    }
}

@media (max-width: 837px) {
    .tj-slider-item .slider-content-area {
        height: 294px;
    }
}

@media (max-width: 801px) {
    .tj-slider-item .slider-content-area {
        height: 278px;
    }

}

@media (max-width: 754px) {
    .tj-slider-item .slider-content-area {
        height: 261px;
    }
}

@media(max-width: 761px){
  .tj-slider-section .slider-navigation .slider-next::before, .tj-slider-section .slider-navigation .slider-prev::before {
    width: 35px;
    height: 35px;
}
}

@media (max-width: 699px) {
    .tj-slider-item .slider-content-area {
        height: 246px;
    }
}

@media (max-width: 658px) {
    .tj-slider-item .slider-content-area {
        height: 231px;
    }
}

@media (max-width: 619px) {
    .tj-slider-item .slider-content-area {
        height: 219px;
    }

.tj-slider-section .slider-navigation{
  display: none;
}
}

@media (max-width: 586px) {
    .tj-slider-item .slider-content-area {
        height: 204px;
    }
}

@media (max-width: 542px) {
    .tj-slider-item .slider-content-area {
        height: 190px;
    }
}

@media (max-width: 503px) {
    .tj-slider-item .slider-content-area {
        height: 177px;
    }
}

@media (max-width: 451px) {
    .tj-slider-item .slider-content-area {
        height: 157px;
    }
}

@media (max-width: 402px) {
    .tj-slider-item .slider-content-area {
        height: 139px;
    }
}

@media (max-width: 369px) {
    .tj-slider-item .slider-content-area {
        height: 130px;
    }
}

@media (max-width: 342px) {
    .tj-slider-item .slider-content-area {
        height: 120px;
    }
}

@media (max-width: 307px) {
    .tj-slider-item .slider-content-area {
        height: 106px;
    }
}

@media(max-width: 575px){
  .hamburger_menu a {
    background-color: #1c3975;
    color: #fff;
}
.hamburger_menu a:hover {
    background-color: #1c3975;
    color: #fff;
}
    .mainmenu-inner .mainmenu-shape{
      display: none;
    }
    .site-logo a{
      width: 450px !important;
    }
}

@media (max-width: 575px) {
    .site-logo a {
        width: 400px !important;
    }
    .site-logo {
        max-width: 254px;
    }
    .hamburger_menu a {
    width: 35px;
    height: 35px;
    line-height: 18px;
    font-size: 19px;
}
}

@media(max-width: 325px){
      .tj-header-area .header-bottom-area .header-wrapper {
        padding-left: 2px;
    }
        .mainmenu-inner {
        padding-left: 5px;
    }
}

@media(max-width: 992px){
  .tj-counter-section-three .counter-wrapper-two {
    display: block !important;
  }
  .headlo {
    padding: 30px 30px;
}
.about-wrapper .about-img {
     max-width: inherit; 
}
.imnfh img {
    width: 40%;
    margin: 60px 0 25px 30px;
    border: 2px solid #f2f2f2;
}
}

@media(max-width: 768px){
  .abotp p {
    font-size: 16px;
    text-align: justify;
}
.imnfh img {
        width: 65%;
    }
}

@media (max-width: 426px) {
    .imnfh img {
        width: 100%;
        margin: 60px 15px 15px 15px;
    }
    .sfss{
      padding-right: 30px;
    }
    .headlo {
        padding: 30px 15px;
    }
    .headlo h2 {
    font-size: 30px;
    margin-bottom: 2pxs;
}
.headlo h3 {
    font-size: 15px;
    line-height: 22px;
}
.headlo h4 {
    font-size: 14px;
}
}

@media(max-width: 768px){
  .bahgs{
    max-width: 768px !important;
  }
}

@media(max-width: 993px){
  
  .heuyk{
    height: 40px !important;
    line-height: 40px !important;
  }
  .cosis {
    position: absolute;
    top: 39%;
    left: 63%;
    right: 0%;
}
.fsiy{
  font-size: 14px;
}
}

@media(max-width: 880px){
  .cosis {
    position: absolute;
    top: 38%;
    left: 62%;
    right: 0%;
}
}

@media(max-width: 701px){
  .blog-item-two.style-2{
    flex-direction: column !important;
  }
  .blog-item-two.style-2 .blog-images a img {
    width: 100%;
     height: inherit !important; 
}
}

@media(max-width: 1159px){
  .jshko img {
    display: none;
}
.attsh img {
    display: none;
}
}

@media(max-width: 992px){
  .maji iframe{
    height: 200px !important;
  }
  .kiaop{
    display: none !important;
  }
}

@media (max-width: 768px) {
    .headlo {
        padding: 30px 15px;
    }
}
@media (max-width: 525px) {
    .imnfh img {
        margin: 60px 0 25px 15px;
    }
}
@media(max-width: 768px){
  .poilps{
    display: none;
  }
  .conjijki {
    padding: 60px 0 30px 0;
}
}

@media(max-width: 992px){
  .baar{
    display: none;
  }
}

@media(max-width: 476px){
  .attsh h2 {
    font-size: 29px;
}
}

@media(max-width: 768px){
  .attsh h2 {
    padding-bottom: 0px;
}
}

@media(max-width: 1201px){
  .tj-breadcrumb-area {
    margin-top: 128px;
}
.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
    font-size: 24px;
}
.breadcrumb-content-area .breadcrumb-link{
  max-width: 250px;
  padding: 3px 7px;
}
.tj-breadcrumb-area {
    padding-top: 40px;
    padding-bottom: 40px;
}
.breadcrumb-content-area .breadcrumb-heading {
    max-width: 215px;
  }
}

@media(max-width: 332px){
  .breadcrumb-content-area {
    padding: 8px;
}
    .breadcrumb-content-area .breadcrumb-link {
        max-width: 236px;
        padding: 3px 3px;
    }
        .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {
        font-size: 21px;
    }
        .breadcrumb-content-area .breadcrumb-heading {
        max-width: 170px;
    }
}

@media (max-width: 629px) {
    .tj-breadcrumb-area {
        margin-top: 117px;
    }
}

@media(max-width: 1200px){
  .usilll{
    max-width: 1200px !important;
  }
}

@media(max-width: 992px){
  .contact-top-area .contact-wrapper .form-box form .form-input {
    max-width: 100%;
}
.diskj{
  margin-top: 60px;
}
}

@media(max-width: 360px){
  .uyey {
    padding: 27px 12px;
}
.saalk h2 {
    font-size: 23px;
}
}

@media(max-width: 401px){
  .conaddp {
    padding: 23px 8px 23px 8px;
}
.conaddp p {
    font-size: 15px;
    color: #fff;
}
}