@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;500;600&amp;family=Poppins:wght@400;500&amp;display=swap");

:root {

  /**

     @Font-Family Declaration

   */

  --tj-ff-body: 'Gilroy', sans-serif;

  --tj-ff-heading: 'Gilroy', sans-serif;

  --tj-ff-p: 'Gilroy', 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: 100px;

  --tj-fs-h2: 50px;

  --tj-fs-h3: 30px;

  --tj-fs-h4: 27px;

  --tj-fs-h5: 22px;

  --tj-fs-h6: 14px;

  /**

     @Color Declaration

   */

  --tj-color-common-white: #ffffff;

  --tj-color-common-black: #000000;

  --tj-color-heading-primary: #323c45;

  --tj-color-text-body: #717171;

  --tj-color-theme-primary: #179b6a;

  --tj-color-theme-secondary: #323c45;

  --tj-color-theme-bg: #fafafc;

  --tj-color-grey-1: #bdc5ca;

  --tj-color-grey-2: #f2f5f9;

  --tj-color-grey-3: #dcdee7;

  --tj-color-grey-4: #06080a;

  --tj-color-grey-5: #131a21;

  --tj-color-light-1: #fafafc;

  --tj-color-light-2: #ecfff3;

  --tj-color-light-3: #f0fff5;

  --tj-color-light-4: #7b7b7b;

  --tj-color-light-5: #aaeac1;

  --tj-color-light-6: #67c58a;

  --tj-color-light-7: #bec1c5;

  --tj-color-light-8: #fff61b;

  --tj-color-light-9: #FFD40B;

  --tj-color-border-1: #fafafc;

  --tj-color-border-2: #a1acb3;

  --tj-color-border-3: #aaeac1;

  --tj-color-border-4: #C5FDD9;

}



* {

  margin: 0;

  padding: 0;

  -webkit-box-sizing: border-box;

          box-sizing: border-box;

}



/**

  Typography CSS

*/

body {

  font-family: var(--tj-ff-body);

  font-size: var(--tj-fs-body);

  font-weight: normal;

  color: var(--tj-color-text-body);

  line-height: 1.7;

}



a {

  text-decoration: none;

}



h1,

h2,

h3,

h4,

h5,

h6 {

  font-family: var(--tj-ff-heading);

  color: var(--tj-color-heading-primary);

  margin-top: 0px;

  font-weight: var(--tj-fw-bold);

  line-height: 1.2;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}



h1 {

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

}



h2 {

  font-size: var(--tj-fs-h2);

}



h3 {

  font-size: var(--tj-fs-h3);

}



h4 {

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

}



h5 {

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

}



h6 {

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

}



h1 a,

h2 a,

h3 a,

h4 a,

h5 a,

h6 a {

  font-size: inherit;

  color: inherit;

  font-weight: inherit;

  line-height: inherit;

  display: block;

}



h1:hover a,

h2:hover a,

h3:hover a,

h4:hover a,

h5:hover a,

h6:hover a {

  font-size: inherit;

  color: inherit;

  font-weight: inherit;

}



ul {

  margin: 0px;

  padding: 0px;

}



a,

.btn,

button,

span,

p,

input,

select,

textarea,

li,

img,

svg path,

*::after,

*::before,

h1,

h2,

h3,

h4,

h5,

h6 {

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}



a:focus,

.button:focus {

  text-decoration: none;

  outline: none;

}



a:focus,

a:hover {

  color: inherit;

  text-decoration: none;

}



a,

button {

  color: inherit;

  outline: none;

  border: none;

  background: transparent;

}



button:hover {

  cursor: pointer;

}



button:focus,

button:focus:not(:focus-visible) {

  outline: 0;

  -webkit-box-shadow: 0 0 0;

          box-shadow: 0 0 0;

}



.uppercase {

  text-transform: uppercase;

}



.capitalize {

  text-transform: capitalize;

}



select,

.nice-select,

input:not([type=submit]):not([type=radio]):not([type=checkbox]),

textarea {

  outline: none;

  background-color: --tj-color-common-white;

  height: auto;

  width: 100%;

  border: 1px solid var(--tj-color-common-white);

  color: var(--tj-color-common-black);

}



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;

}



::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}



::-webkit-input-placeholder {

  color: var(--tj-color-grey-1);

}



::-moz-placeholder {

  color: var(--tj-color-grey-1);

}



:-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}



::placeholder {

  color: var(--tj-color-grey-1);

}



::-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;

}



.dot-style {

  margin: 0;

  padding: 0;

  list-style: none;

}



.site-main {

  position: relative;

  overflow: hidden;

}



/**

  Buttons CSS

*/

.tj-header-btn {

  display: inline-block;

  overflow: hidden;

  position: relative;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  z-index: 1;

  font-size: 15px;

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  padding: 13px 19px 13px 30px;

  border-radius: 0;

  border: none;

}

.tj-header-btn i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 8px;

  position: relative;

  top: 3px;

  -webkit-transition: 0.1s;

  transition: 0.1s;

  color: var(--tj-color-common-white);

}

.tj-header-btn:before, .tj-header-btn:after {

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  content: "";

  position: absolute;

  z-index: -1;

}

.tj-header-btn.btn {

  background: var(--tj-color-common-white);

}

.tj-header-btn.btn:before, .tj-header-btn.btn:after {

  background: var(--tj-color-theme-primary);

  top: 0;

  bottom: 0;

  -webkit-transform: skewX(-45deg);

      -ms-transform: skewX(-45deg);

          transform: skewX(-45deg);

  width: 175%;

}

.tj-header-btn.btn:before {

  left: -125%;

}

.tj-header-btn.btn:after {

  right: -124%;

}

.tj-header-btn.btn:hover:before, .tj-header-btn.btn:hover:after {

  width: 105%;

}

.tj-header-btn:hover {

  color: var(--tj-color-theme-secondary);

}

.tj-header-btn:hover i {

  color: var(--tj-color-theme-secondary);

}



.tj-primary-btn {

  display: inline-block;

  overflow: hidden;

  position: relative;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  z-index: 1;

  font-size: 17px;

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  padding: 19px 20px 19px 30px;

  border-radius: 0.45rem;

  border: none;

}

.tj-primary-btn i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 8px;

  position: relative;

  top: 3px;

}

.tj-primary-btn:before, .tj-primary-btn:after {

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  content: "";

  position: absolute;

  z-index: -1;

}

.tj-primary-btn.btn {

  background: var(--tj-color-theme-secondary);

}

.tj-primary-btn.btn:before, .tj-primary-btn.btn:after {

  background: var(--tj-color-theme-primary);

  top: 0;

  bottom: 0;

  -webkit-transform: skewX(-45deg);

      -ms-transform: skewX(-45deg);

          transform: skewX(-45deg);

  width: 175%;

}

.tj-primary-btn.btn:before {

  left: -125%;

}

.tj-primary-btn.btn:after {

  right: -124%;

}

.tj-primary-btn.btn:hover {

  color: var(--tj-color-common-white);

}

.tj-primary-btn.btn:hover:before, .tj-primary-btn.btn:hover:after {

  width: 105%;

}



.tj-primary-btn2 {

  display: inline-block;

  overflow: hidden;

  position: relative;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  z-index: 1;

  font-size: 17px;

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  padding: 19px 25px 20px 25px;

  border-radius: 0;

  border: none;

  line-height: 1;

}

.tj-primary-btn2 i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 10px;

  position: relative;

  top: 3px;

  -webkit-transform: rotate(-40deg);

      -ms-transform: rotate(-40deg);

          transform: rotate(-40deg);

  display: inline-block;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

}

.tj-primary-btn2:before, .tj-primary-btn2:after {

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  content: "";

  position: absolute;

  z-index: -1;

}

.tj-primary-btn2.btn {

  background: var(--tj-color-theme-secondary);

}

.tj-primary-btn2.btn:before, .tj-primary-btn2.btn:after {

  background: var(--tj-color-theme-primary);

  top: 0;

  bottom: 0;

  -webkit-transform: skewX(-45deg);

      -ms-transform: skewX(-45deg);

          transform: skewX(-45deg);

  width: 175%;

}

.tj-primary-btn2.btn:before {

  left: -125%;

}

.tj-primary-btn2.btn:after {

  right: -124%;

}

.tj-primary-btn2.btn:hover {

  color: var(--tj-color-common-white);

}

.tj-primary-btn2.btn:hover i {

  color: var(--tj-color-common-white);

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

}

.tj-primary-btn2.btn:hover:before, .tj-primary-btn2.btn:hover:after {

  width: 105%;

}



.tj-primary-btn3 {

  display: inline-block;

  overflow: hidden;

  position: relative;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  z-index: 1;

  font-size: 15px;

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  padding: 16px 20px 16px 25px;

  border-radius: 5px;

  border: none;

  line-height: 1;

}

.tj-primary-btn3 i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 10px;

  position: relative;

  top: 3px;

  -webkit-transform: rotate(-40deg);

      -ms-transform: rotate(-40deg);

          transform: rotate(-40deg);

  display: inline-block;

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

}

.tj-primary-btn3:before, .tj-primary-btn3:after {

  -webkit-transition: 0.6s ease;

  transition: 0.6s ease;

  content: "";

  position: absolute;

  z-index: -1;

}

.tj-primary-btn3.btn {

  background: var(--tj-color-theme-secondary);

}

.tj-primary-btn3.btn:before, .tj-primary-btn3.btn:after {

  background: var(--tj-color-theme-primary);

  top: 0;

  bottom: 0;

  -webkit-transform: skewX(-45deg);

      -ms-transform: skewX(-45deg);

          transform: skewX(-45deg);

  width: 175%;

}

.tj-primary-btn3.btn:before {

  left: -125%;

}

.tj-primary-btn3.btn:after {

  right: -124%;

}

.tj-primary-btn3.btn:hover {

  color: var(--tj-color-common-white);

}

.tj-primary-btn3.btn:hover i {

  color: var(--tj-color-common-white);

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

}

.tj-primary-btn3.btn:hover:before, .tj-primary-btn3.btn:hover:after {

  width: 105%;

}



.tj-secondary-btn {

  position: relative;

  display: block;

  overflow: hidden;

  -webkit-transition: all 0.6s ease;

  transition: all 0.6s ease;

  border-radius: 0;

  border: 1px solid var(--tj-color-theme-secondary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-secondary);

  padding: 17px 20px 17px 30px;

  line-height: 1;

  z-index: 2;

}

.tj-secondary-btn::before {

  background: var(--tj-color-theme-primary);

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: -1;

  -webkit-transition: all 0.6s ease;

  transition: all 0.6s ease;

  border-radius: 0;

  color: var(--tj-color-theme-secondary);

}

.tj-secondary-btn i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 8px;

  position: relative;

  color: var(--tj-color-theme-secondary);

  top: 3px;

}

.tj-secondary-btn.btn::before {

  width: 100%;

  height: 0%;

  -webkit-transform: translate(-50%, -50%) rotate(-45deg);

      -ms-transform: translate(-50%, -50%) rotate(-45deg);

          transform: translate(-50%, -50%) rotate(-45deg);

  border-radius: 0;

}

.tj-secondary-btn.btn:hover::before {

  height: 380%;

}

.tj-secondary-btn:hover {

  color: var(--tj-color-common-white);

  border-color: var(--tj-color-theme-primary);

}

.tj-secondary-btn:hover i {

  color: var(--tj-color-common-white);

}



.tj-secondary-btn2 {

  position: relative;

  display: block;

  overflow: hidden;

  -webkit-transition: all 0.6s ease;

  transition: all 0.6s ease;

  border-radius: 0;

  border: 1px solid var(--tj-color-theme-secondary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-secondary);

  padding: 18px 25px 19px 25px;

  line-height: 1;

}

.tj-secondary-btn2::before {

  background: var(--tj-color-theme-primary);

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: -1;

  border-radius: 0;

  color: var(--tj-color-theme-secondary);

  -webkit-transition: all 0.6s ease;

  transition: all 0.6s ease;

}

.tj-secondary-btn2 i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 10px;

  position: relative;

  color: var(--tj-color-theme-secondary);

  top: 3px;

  display: inline-block;

  -webkit-transform: rotate(-40deg);

      -ms-transform: rotate(-40deg);

          transform: rotate(-40deg);

  -webkit-transition: 0.1s;

  transition: 0.1s;

}

.tj-secondary-btn2.btn::before {

  width: 100%;

  height: 0%;

  -webkit-transform: translate(-50%, -50%) rotate(-45deg);

      -ms-transform: translate(-50%, -50%) rotate(-45deg);

          transform: translate(-50%, -50%) rotate(-45deg);

  border-radius: 0;

}

.tj-secondary-btn2.btn:hover::before {

  height: 380%;

}

.tj-secondary-btn2:hover {

  color: var(--tj-color-common-white);

}

.tj-secondary-btn2:hover i {

  color: var(--tj-color-common-white);

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

}



.tj-transparent-btn {

  position: relative;

  display: block;

  color: var(--tj-color-common-white);

  overflow: hidden;

  -webkit-transition: 1s all ease;

  transition: 1s all ease;

  border-radius: 0;

  border: 2px solid var(--tj-color-theme-primary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-primary);

  padding: 13px 22px 13px 30px;

}

.tj-transparent-btn::before {

  background: var(--tj-color-theme-primary);

  content: "";

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: -1;

  -webkit-transition: all 0.6s ease;

  transition: all 0.6s ease;

  border-radius: 0;

}

.tj-transparent-btn i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  margin-left: 8px;

  position: relative;

  color: var(--tj-color-theme-primary);

  top: 3px;

}

.tj-transparent-btn.btn::before {

  width: 100%;

  height: 0%;

  -webkit-transform: translate(-50%, -50%) rotate(-45deg);

      -ms-transform: translate(-50%, -50%) rotate(-45deg);

          transform: translate(-50%, -50%) rotate(-45deg);

  border-radius: 0;

}

.tj-transparent-btn.btn:hover::before {

  height: 380%;

}

.tj-transparent-btn:hover {

  color: var(--tj-color-common-white);

  border: 2px solid var(--tj-color-theme-primary);

}

.tj-transparent-btn:hover i {

  color: var(--tj-color-common-white);

}



.tj-price-btn {

  overflow: hidden;

  position: relative;

  -webkit-transition: 0.6s;

  transition: 0.6s;

  z-index: 1;

  border-radius: 12px;

  border: 1px solid var(--tj-color-light-5);

  background: var(--tj-color-light-2);

  display: block;

  text-align: center;

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-secondary);

  padding: 15px 20px;

}

.tj-price-btn i {

  display: inline-block;

  font-weight: var(--tj-fw-ebold);

  margin-left: 5px;

  position: relative;

  top: 3px;

  color: var(--tj-color-theme-secondary);

}

.tj-price-btn:before, .tj-price-btn:after {

  content: "";

  position: absolute;

  z-index: -1;

}

.tj-price-btn.btn {

  background: var(--tj-color-theme-primary);

}

.tj-price-btn.btn:before, .tj-price-btn.btn:after {

  background: var(--tj-color-light-2);

  top: 0;

  bottom: 0;

  -webkit-transform: skewX(-45deg);

      -ms-transform: skewX(-45deg);

          transform: skewX(-45deg);

  width: 175%;

}

.tj-price-btn.btn:before {

  left: -125%;

}

.tj-price-btn.btn:after {

  right: -124%;

}

.tj-price-btn.btn:hover:before, .tj-price-btn.btn:hover:after {

  width: 105%;

}

.tj-price-btn:hover {

  color: var(--tj-color-common-white);

}

.tj-price-btn:hover i {

  color: var(--tj-color-common-white);

}



.tj-price-active-btn {

  border-radius: 12px;

  background: var(--tj-color-theme-primary);

  display: block;

  text-align: center;

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-common-white);

  padding: 16px 20px;

}

.tj-price-active-btn i {

  display: inline-block;

  font-weight: var(--tj-fw-bold);

  margin-left: 5px;

  position: relative;

  top: 3px;

}

.tj-price-active-btn:hover {

  color: var(--tj-color-common-white);

}



.read-more-button .read-more {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  color: var(--tj-color-theme-secondary);

  font-size: 17px;

  gap: 10px;

  -webkit-transition: all 0.6s ease-in-out 0s;

  transition: all 0.6s ease-in-out 0s;

}

.read-more-button .read-more i {

  display: inline-block;

  line-height: 1;

  -webkit-transform: rotate(-40deg);

      -ms-transform: rotate(-40deg);

          transform: rotate(-40deg);

  position: relative;

  top: 2px;

  color: var(--tj-color-theme-secondary);

  -webkit-transition: all 0.6s ease-in-out 0s;

  transition: all 0.6s ease-in-out 0s;

}

.read-more-button .read-more:hover {

  color: var(--tj-color-theme-primary);

}

.read-more-button .read-more:hover i {

  color: var(--tj-color-theme-primary);

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

}



/**----------------------------------------

START: Theme Meanmenu CSS

----------------------------------------*/

.tj-bottom-content-area {

  border-bottom: 2px solid rgba(255, 255, 255, 0.15);

  padding-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-bottom-content-area {

    padding-bottom: 15px;

  }

}

@media (max-width: 575px) {

  .tj-bottom-content-area {

    padding-top: 15px;

  }

}



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

}



.menu-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 130px;

}

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

  .menu-area {

    gap: 50px;

  }

}

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

  .menu-area {

    gap: 25px;

  }

}



.tj-menu-area ul {

  margin: 0;

  padding: 0;

  list-style: none;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 15px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

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

  .tj-menu-area ul {

    gap: 35px;

  }

}

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

  .tj-menu-area ul {

    gap: 24px;

  }

}

.tj-menu-area ul li {

  position: relative;

  z-index: 1;

}

.tj-menu-area ul li a {

  color: var(--tj-color-common-white);

  font-size:18px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  position: relative;

  padding: 15px 0;

  transition: 0.4s;

  display: block;

  font-weight:600;

}

.tj-menu-area ul li a::before {



}

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

  .tj-menu-area ul li a::before {

    left: -15px;

  }

}

.tj-menu-area ul li.current-menu-item a, .tj-menu-area ul li:hover a {

  color: #fff;

}

.tj-menu-area ul li.current-menu-item a::before, .tj-menu-area ul li:hover a::before {

  opacity: 1;

  visibility: visible;

}

.tj-menu-area ul li.current-menu-item a::after, .tj-menu-area ul li:hover a::after {

  color: #fff;

}

.tj-menu-area ul li.has-dropdown > a {

  position: relative;

  z-index: 1;

  padding-right: 20px;

}

.tj-menu-area ul li.has-dropdown > a::after {

  position: absolute;

  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;

}

.tj-menu-area ul li:last-child {

  margin-right: 0;

}

.tj-menu-area ul li > .sub-menu {

  text-align: left;

  margin: 0;

  list-style: none;

  background: #fff;

  position: absolute;

  opacity: 0;

  padding: 10px 0;

  visibility: hidden;

  z-index: 100;

  -webkit-transition: 0.6s;

  transition: 0.6s;

  width: 295px;

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

}

.tj-menu-area ul li > .sub-menu::before {

  position: absolute;

  left: 0;

  top: 0;

  width: 0;

  height: 2px;

  background: var(--tj-color-theme-primary);

  content: "";

  -webkit-transition: 0.6s;

  transition: 0.6s;

}

.tj-menu-area ul li > .sub-menu > li {

  display: block;

  width: 100%;

  margin-right: 0;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  position: relative;

  z-index: 1;

}

.tj-menu-area ul li > .sub-menu > li > a {

  position: relative;

  padding: 8px 20px;

  display: block;

  color: var(--tj-color-theme-primary);

}

.tj-menu-area ul li > .sub-menu > li > a::before {

  content: "";

  width: 0;

  height: 2px;

  background: var(--tj-color-theme-primary);

  position: absolute;

  top: 50%;

  left: 0;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-menu-area ul li > .sub-menu > li:last-child {

  padding-bottom: 0;

}

.tj-menu-area ul li > .sub-menu > li.has-dropdown > a::after {

  content: "\f105";

  right: 10px;

  color: var(--tj-color-common-white);

}

.tj-menu-area ul li > .sub-menu > li.current-menu-item, .tj-menu-area ul li > .sub-menu > li:hover {

  padding-left: 15px;

}

.tj-menu-area ul li > .sub-menu > li.current-menu-item > a, .tj-menu-area ul li > .sub-menu > li:hover > a {

  color: var(--tj-color-theme-primary);

}

.tj-menu-area ul li > .sub-menu > li.current-menu-item > a::before, .tj-menu-area ul li > .sub-menu > li:hover > a::before {

  opacity: 1;

  visibility: visible;

  width: 14px;

}

.tj-menu-area ul li > .sub-menu > li.current-menu-item > a::after, .tj-menu-area ul li > .sub-menu > li:hover > a::after {

  color: var(--tj-color-theme-primary);

}

.tj-menu-area ul li > .sub-menu > li > .sub-menu {

  left: 100%;

  top: 0;

}

.tj-menu-area ul li:hover > .sub-menu {

  opacity: 1;

  visibility: visible;

  -webkit-transform: translateY(-5px);

      -ms-transform: translateY(-5px);

          transform: translateY(-5px);

  pointer-events: inherit;

}

.tj-menu-area ul li:hover > .sub-menu::before {

  width: 100%;

}



/* !END: Theme Meanmenu CSS */

/**----------------------------------------

START: Theme Search CSS

----------------------------------------*/

@media (max-width: 575px) {

  .header_searce {

    display: none;

  }

}



.search_popup {

  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  background-color: var(--tj-color-theme-secondary);

  z-index: 100;

  padding-top: 70px;

  padding-bottom: 100px;

  opacity: 0;

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

  -webkit-transform: translateY(calc(-100% - 80px));

  -ms-transform: translateY(calc(-100% - 80px));

  transform: translateY(calc(-100% - 80px));

  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;

  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;

  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;

  -webkit-transition-delay: 0.5s;

          transition-delay: 0.5s;

  z-index: 9999;

}

.search_popup.search-opened {

  opacity: 1;

  -webkit-transform: translateY(0%);

  -ms-transform: translateY(0%);

  transform: translateY(0%);

  -webkit-transition-delay: 0s;

          transition-delay: 0s;

}

.search_popup.search-opened .search_form .search_input {

  -webkit-transform: translateY(0px);

  -ms-transform: translateY(0px);

  transform: translateY(0px);

  opacity: 1;

  -webkit-transition-delay: 0.3s;

          transition-delay: 0.3s;

}

.search_popup.search-opened .search_form .search_input::after {

  width: 100%;

  -webkit-transition-delay: 0.5s;

          transition-delay: 0.5s;

}

@media (max-width: 575px) {

  .search_popup {

    padding-top: 50px;

    padding-bottom: 70px;

  }

}

.search_wrapper .search_top {

  margin-bottom: 80px;

}

.search_wrapper .search_top .search_logo {

  max-width: 140px;

  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) {

  .search_wrapper .search_top .search_logo {

    max-width: 120px;

  }

}

.search_wrapper .search_top .search_logo a {

  display: block;

}

.search_wrapper .search_top .search_close .search_close_btn {

  font-size: 25px;

  color: var(--tj-color-common-white);

}

.search_wrapper .search_top .search_close .search_close_btn svg {

  width: 30px;

  height: 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) {

  .search_wrapper .search_top .search_close .search_close_btn svg {

    width: 25px;

    height: 25px;

  }

}

.search_wrapper .search_top .search_close .search_close_btn:hover {

  color: var(--tj-color-theme-primary);

}

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

  .search_wrapper .search_top {

    margin-bottom: 25px;

  }

}

.search_wrapper .search_form .search_input {

  position: relative;

  height: 80px;

  -webkit-transform: translateY(-40px);

  -ms-transform: translateY(-40px);

  transform: translateY(-40px);

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

  -webkit-transition-delay: 0.5s;

          transition-delay: 0.5s;

  opacity: 0;

}

.search_wrapper .search_form .search_input::after {

  position: absolute;

  content: "";

  left: 0;

  bottom: 0;

  width: 0%;

  height: 1px;

  background-color: rgba(255, 255, 255, 0.3);

  -webkit-transition-delay: 0.3s;

          transition-delay: 0.3s;

  -webkit-transition: all 0.3s ease-in-out;

  transition: all 0.3s ease-in-out;

}

.search_wrapper .search_form .search_input input {

  width: 100%;

  height: 100%;

  background-color: transparent;

  border: 0;

  outline: 0;

  font-size: 20px;

  color: var(--tj-color-common-white);

  border-bottom: 1px solid transparent;

  padding: 0;

  padding-right: 30px;

}

.search_wrapper .search_form .search_input input::-webkit-input-placeholder {

  font-size: 24px;

}

.search_wrapper .search_form .search_input input::-moz-placeholder {

  font-size: 24px;

}

.search_wrapper .search_form .search_input input:-ms-input-placeholder {

  font-size: 24px;

}

.search_wrapper .search_form .search_input input::-ms-input-placeholder {

  font-size: 24px;

}

.search_wrapper .search_form .search_input input::placeholder {

  font-size: 24px;

}

.search_wrapper .search_form .search_input input ~ .search-focus-border {

  position: absolute;

  bottom: 0;

  left: auto;

  right: 0;

  width: 0;

  height: 1px;

  background-color: var(--tj-color-common-white);

  -webkit-transition: all 0.5s;

  transition: all 0.5s;

}

.search_wrapper .search_form .search_input input:focus ~ .search-focus-border {

  width: 100%;

  left: 0;

  right: auto;

  -webkit-transition: all 0.5s;

  transition: all 0.5s;

}

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

  .search_wrapper .search_form .search_input input {

    font-size: 20px;

  }

  .search_wrapper .search_form .search_input input::-webkit-input-placeholder {

    font-size: 20px;

  }

  .search_wrapper .search_form .search_input input::-moz-placeholder {

    font-size: 20px;

  }

  .search_wrapper .search_form .search_input input:-ms-input-placeholder {

    font-size: 20px;

  }

  .search_wrapper .search_form .search_input input::-ms-input-placeholder {

    font-size: 20px;

  }

  .search_wrapper .search_form .search_input input::placeholder {

    font-size: 20px;

  }

}

@media (max-width: 575px) {

  .search_wrapper .search_form .search_input input {

    font-size: 18px;

  }

  .search_wrapper .search_form .search_input input::-webkit-input-placeholder {

    font-size: 18px;

  }

  .search_wrapper .search_form .search_input input::-moz-placeholder {

    font-size: 18px;

  }

  .search_wrapper .search_form .search_input input:-ms-input-placeholder {

    font-size: 18px;

  }

  .search_wrapper .search_form .search_input input::-ms-input-placeholder {

    font-size: 18px;

  }

  .search_wrapper .search_form .search_input input::placeholder {

    font-size: 18px;

  }

}

.search_wrapper .search_form .search_input button {

  position: absolute;

  top: 50%;

  right: 0;

  -webkit-transform: translateY(-50%);

  -ms-transform: translateY(-50%);

  transform: translateY(-50%);

  font-size: 18px;

  color: var(--tj-color-common-white);

}



.search-popup-overlay {

  position: fixed;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  background-color: var(--tj-color-theme-primary);

  z-index: 99;

  opacity: 0.7;

  cursor: -webkit-zoom-out;

  cursor: zoom-out;

  -webkit-transform: translateY(calc(-100% - 80px));

  -ms-transform: translateY(calc(-100% - 80px));

  transform: translateY(calc(-100% - 80px));

  -webkit-transition: all 0.5s ease-in-out 0s;

  transition: all 0.5s ease-in-out 0s;

  -webkit-transition-delay: 0.3s;

          transition-delay: 0.3s;

}

.search-popup-overlay.search-popup-overlay-open {

  -webkit-transform: translateY(0);

  -ms-transform: translateY(0);

  transform: translateY(0);

}



/* !END: Theme Search CSS */

/**----------------------------------------

START: Theme Scroll CSS

----------------------------------------*/

.solar-scroll-top {

  position: fixed;

  right: 30px;

  bottom: 25px;

  width: 45px;

  height: 45px;

  cursor: pointer;

  display: block;

  border-radius: 100%;

  z-index: 9999;

  opacity: 0;

  visibility: hidden;

  -webkit-transform: translateY(0.75rem);

      -ms-transform: translateY(0.75rem);

          transform: translateY(0.75rem);

  -webkit-box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);

          box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);

  -webkit-transition: all 0.2s linear, margin-right 0s;

  transition: all 0.2s linear, margin-right 0s;

}

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

  .solar-scroll-top {

    right: 15px;

    bottom: 15px;

  }

}



.solar-scroll-top.progress-done {

  visibility: visible;

  -webkit-transform: translateY(0);

      -ms-transform: translateY(0);

          transform: translateY(0);

}



.solar-scroll-top-icon {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  font-size: 18px;

  color: var(--tj-color-theme-primary);

}



.solar-scroll-top > svg path {

  fill: none;

}



.solar-scroll-top > svg.progress-circle path {

  stroke: var(--tj-color-theme-primary);

  stroke-width: 4;

  -webkit-box-sizing: border-box;

          box-sizing: border-box;

  -webkit-transition: all 200ms linear;

  transition: all 200ms linear;

}



@media (min-width: 1px) {

  .solar-scroll-top.progress-done {

    opacity: 1;

  }

}

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

  }

}

/* !END: Theme Scroll CSS */

/**----------------------------------------

START: Theme Animation CSS

----------------------------------------*/

@-webkit-keyframes rotateImg {

  0% {

    -webkit-transform: rotate(0deg);

            transform: rotate(0deg);

  }

  100% {

    -webkit-transform: rotate(360deg);

            transform: rotate(360deg);

  }

}

@keyframes rotateImg {

  0% {

    -webkit-transform: rotate(0deg);

            transform: rotate(0deg);

  }

  100% {

    -webkit-transform: rotate(360deg);

            transform: rotate(360deg);

  }

}

/**----------------------------------------

START: Theme Canvas CSS

----------------------------------------*/

.tj-overlay-canvas {

  position: fixed;

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background-color: rgba(57, 202, 110, 0.7);

  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: 485px;

  z-index: 9999;

  background: var(--tj-color-theme-secondary);

  padding: 30px 30px 30px;

  right: -450px;

  opacity: 0;

  visibility: visible;

  overflow-y: scroll;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@media (max-width: 575px) {

  .tj-offcanvas-area {

    width: 330px;

    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: -5px;

  width: 88px;

  height: 2px;

  background: var(--tj-color-theme-primary);

  z-index: 2;

}

.tj-offcanvas-area .canvas-title .title {

  color: var(--tj-color-common-white);

}

.tj-offcanvas-area .contact-info-list {

  margin-bottom: 30px;

}

.tj-offcanvas-area .offcanvas-icon {

  font-size: 40px;

  color: var(--tj-secondary-color);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-offcanvas-area .offcanvas-icon i {

  color: var(--tj-color-common-white);

  -webkit-transform: rotate(90deg);

      -ms-transform: rotate(90deg);

          transform: rotate(90deg);

}

.tj-offcanvas-area .offcanvas-icon i:hover {

  color: var(--tj-color-theme-primary);

}

.tj-offcanvas-area .tj-offcanvas-header {

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  padding-bottom: 25px;

  margin-bottom: 45px;

}

.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 a {

  position: absolute;

  right: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  width: 57.2px;

  height: 57.2px;

  line-height: 57.2px;

  border-radius: 0px 3px 3px 0px;

  background: var(--tj-color-theme-primary);

  font-size: 17px;

  color: var(--tj-color-common-white);

  text-align: center;

}

.tj-offcanvas-area .tj-search-box form a:hover {

  color: var(--tj-color-common-white);

}

.tj-offcanvas-area .offcanvas-share {

  margin-bottom: 45px;

}

.tj-offcanvas-area .offcanvas-share 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: 15px;

}

.tj-offcanvas-area .offcanvas-share ul li a {

  width: 24px;

  height: 24px;

  line-height: 24px;

  -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-black);

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  font-size: 14px;

  margin-left: 10px;

}

.tj-offcanvas-area .offcanvas-share ul li a i {

  color: var(--tj-color-common-black);

}

.tj-offcanvas-area .offcanvas-share ul li a:first-child {

  margin-left: 0;

}

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

}



.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: 15px 35px 12px 0;

  width: 100%;

  color: var(--tj-color-common-white);

}

.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-common-white);

}



.mobile-navbar-menu {

  overflow: hidden;

}

.mobile-navbar-menu .mean-bar * {

  -webkit-box-sizing: border-box;

  box-sizing: border-box;

}

.mobile-navbar-menu #mobile-menu > 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: var(--tj-color-common-white);

  border-top: none;

  padding: 14px 0;

  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-secondary);

}

.preloader .tj-header-btn {

  position: absolute;

  top: 15px;

  right: 15px;

}

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

  .preloader .tj-header-btn {

    padding: 10px 15px 10px 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-primary);

  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-primary);

  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: Theme Preloder CSS */

/**----------------------------------------

START: Theme Header CSS

----------------------------------------*/

.tj-header-topbar-area {

  border-bottom: 2px solid rgba(255, 255, 255, 0.15);

  margin-bottom: 25px;

  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) {

  .tj-header-topbar-area {

    margin-bottom: 15px;

  }

}

@media (max-width: 575px) {

  .tj-header-topbar-area {

    margin-bottom: 0;

  }

}



.tj-header-area {

  position: relative;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 99;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  background-color: var(--tj-color-theme-secondary);

}

.tj-header-area .tj-top-content-area {

  padding: 30px 0;

}

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

  .tj-header-area .tj-top-content-area {

    padding: 15px 0;

  }

}

.tj-header-area.header-absolute {

  background-color: transparent;

  position: absolute;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 999;

}

.tj-header-area.sticky {

  position: fixed;

  padding: 15px 0;

  background: var(--tj-color-theme-secondary);

  -webkit-animation: sticky 0.9s;

          animation: sticky 0.9s;

}

.tj-header-area.sticky .tj-bottom-content-area {

  padding-bottom: 0;

  border: none;

}

.tj-header-area.sticky .tj-top-content-area {

  padding: 0;

  border: none;

}

.tj-header-area.header-1.header-sticky {

  position: absolute;

  opacity: 0;

  visibility: hidden;

}

.tj-header-area.header-1.sticky {

  position: fixed;

  opacity: 1;

  visibility: visible;

}

.tj-header-area .tj-top-content-area {

  padding: 30px 0;

}

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

  .tj-header-area .tj-top-content-area {

    padding: 15px 0;

  }

}

.tj-header-area.header-absolute {

  background-color: transparent;

  position: absolute;

  width: 100%;

  top: 0;

  left: 0;

  z-index: 999;

}

.tj-header-area.sticky {

  position: fixed;

  padding: 15px 0;

  background: #fff;

  -webkit-animation: sticky 0.9s;

  animation: sticky 0.9s;

}

.tj-header-area.sticky .tj-bottom-content-area {

  padding-bottom: 0;

  border: none;

}

.tj-header-area.sticky .tj-top-content-area {

  padding: 0;

  border: none;

}

.tj-header-area.header-1.header-sticky {

  position: absolute;

  opacity: 0;

  visibility: hidden;

}

.tj-header-area.header-1.sticky {

  position: fixed;

  opacity: 1;

  visibility: visible;

}

.tj-header-area.header-2.sticky .tj-top-content-area {

  background: var(--tj-color-theme-secondary);

}



.logo-area {

  max-width: 140px;

  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) {

  .logo-area {

    max-width: 100px;

  }

}

.logo-area a {

  display: inline-block;

}

.logo-area a img {

  width: 100%;

}



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

}

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

  .header-content-area {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    margin-bottom: 10px;

  }

}



.info-right-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 35px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

@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) {

  .info-right-item {

    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) {

  .info-right-item {

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: end;

  }

}

@media (max-width: 575px) {

  .info-right-item {

    gap: 10px;

  }

}

.info-right-item .info-navbar ul {

  margin: 0;

  padding: 0;

  list-style: none;

  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;

}

@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) {

  .info-right-item .info-navbar ul {

    gap: 10px;

  }

}

.info-right-item .info-navbar ul li 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;

}

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

  .info-right-item .info-navbar ul li a {

    width: 40px;

    height: 40px;

  }

}

.info-right-item .info-navbar ul li a:hover {

  background-color: var(--tj-color-theme-primary);

}

.info-right-item .info-navbar ul li button {

  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: all 0.1s ease-in-out 0s;

  transition: all 0.1s ease-in-out 0s;

  position: relative;

  z-index: 3;

  font-size: 22px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.info-right-item .info-navbar ul li button i {

  -webkit-transform: rotate(-90deg);

      -ms-transform: rotate(-90deg);

          transform: rotate(-90deg);

}

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

  .info-right-item .info-navbar ul li button {

    width: 40px;

    height: 40px;

    font-size: 20px;

  }

}

.info-right-item .info-navbar ul li button:hover {

  background: var(--tj-color-theme-primary);

}

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

  .info-right-item .tj-header-btn {

    padding: 9px 10px 9px 10px;

  }

}



.header-info 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;

}

@media (max-width: 575px) {

  .header-info ul {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    -webkit-column-gap: 30px;

       -moz-column-gap: 30px;

            column-gap: 30px;

  }

}

.header-info ul li {

  position: relative;

  color: var(--tj-color-light-1);

  padding-left: 35px;

  padding: 15px 30px 15px 65px;

  border-right: 2px solid rgba(255, 255, 255, 0.15);

}

.header-info ul li:first-child {

  border-left: 2px solid rgba(255, 255, 255, 0.15);

}

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

  .header-info ul li:first-child {

    border-left: none;

  }

}

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

  .header-info ul li {

    border-right: none;

    border-left: none;

    font-size: 14px;

  }

}

@media (max-width: 575px) {

  .header-info ul li {

    padding: 8px 0 8px 25px;

  }

}

.header-info ul li a {

  color: var(--tj-color-light-1);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.header-info ul li i {

  position: absolute;

  top: 50%;

  left: 30px;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  font-size: 22px;

  line-height: 1;

  color: var(--tj-color-theme-primary);

}

@media (max-width: 575px) {

  .header-info ul li i {

    font-size: 18px;

    left: 0;

  }

}



.header-share 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: 15px;

}

.header-share ul li {

  border-right: 2px solid rgba(255, 255, 255, 0.15);

  border-left: 2px solid rgba(255, 255, 255, 0.15);

  padding: 15px 50px;

}

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

  .header-share ul li {

    padding: 15px 25px;

  }

}

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

  .header-share ul li {

    padding: 0;

    border-right: none;

    border-left: none;

  }

}

.header-share ul li a {

  width: 24px;

  height: 24px;

  line-height: 24px;

  -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-black);

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  font-size: 14px;

  margin-left: 10px;

}

.header-share ul li a i {

  color: var(--tj-color-common-black);

}

.header-share ul li a:first-child {

  margin-left: 0;

}

.header-share ul li a:hover {

  background-color: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}

.header-share ul li a:hover i {

  color: var(--tj-color-common-white);

}



.header-2 {

  padding: 30px 0;

  position: absolute;

  background: transparent;

}

.header-2 .tj-menu-area ul {

  gap: 50px;

}

.header-2 .tj-top-content-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  gap: 82px;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.1);

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

  max-width: 1415px;

  margin: 0 auto;

  padding: 25px 50px;

  border-bottom: none;

}

.header-2 .tj-top-content-area .info-right-item {

  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;

  border-radius: 5px;

  background: var(--tj-color-common-white);

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

  padding: 7px 18px;

}

.header-2 .tj-top-content-area .info-right-item .info-icon {

  background: var(--tj-color-theme-secondary);

  border: 1px solid var(--tj-color-theme-primary);

  width: 50px;

  height: 50px;

  line-height: 46px;

  border-radius: 50%;

  text-align: center;

}

.header-2 .tj-top-content-area .info-right-item .info-text .sub-title {

  color: var(--tj-color-theme-secondary);

  font-weight: var(--tj-fw-light);

  display: block;

  margin-bottom: 3px;

}

.header-2 .tj-top-content-area .info-right-item .info-text a {

  font-family: var(--tj-ff-heading);

  font-size: 18px;

  font-weight: var(--tj-fw-sbold);

  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) {

  .header-2 .tj-top-content-area .info-right-item {

    display: none;

  }

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .header-2 .tj-top-content-area {

    max-width: 1340px;

  }

}

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

  .header-2 .tj-top-content-area {

    max-width: 1150px;

    padding: 20px 25px;

    gap: 30px;

  }

  .header-2 .tj-menu-area ul {

    gap: 25px;

  }

}

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

  .header-2 .tj-top-content-area {

    max-width: 960px;

    padding: 20px 20px;

    gap: 20px;

  }

  .header-2 .tj-top-content-area .info-right-item {

    gap: 10px;

    padding: 7px 10px;

  }

  .header-2 .tj-menu-area ul {

    gap: 20px;

  }

}

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

  .header-2 .tj-top-content-area {

    max-width: 750px;

    padding: 15px 15px;

  }

}

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

  .header-2 .tj-top-content-area {

    max-width: 540px;

    padding: 15px 15px;

  }

}

@media (max-width: 575px) {

  .header-2 .tj-top-content-area {

    max-width: calc(100% - 30px);

    padding: 15px 15px;

    gap: 30px;

  }

}

@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) {

  .header-2 {

    padding: 20px 0;

  }

}



.logo-area {

  max-width: 178px;

  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) {

  .logo-area {

    max-width: 110px;

  }

}

.logo-area a {

  display: inline-block;

}

.logo-area a img {

  width: 100%;

}



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

}

.hamburger_menu a:hover {

  background-color: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}



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

  -webkit-column-gap: 30px;

     -moz-column-gap: 30px;

          column-gap: 30px;

}

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

  .header-content-area {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    margin-bottom: 10px;

  }

}



.info-right-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 35px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

@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) {

  .info-right-item {

    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) {

  .info-right-item {

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: end;

  }

}

@media (max-width: 575px) {

  .info-right-item {

    gap: 10px;

  }

}

.info-right-item .info-navbar ul {

  margin: 0;

  padding: 0;

  list-style: none;

  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;

}

@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) {

  .info-right-item .info-navbar ul {

    gap: 10px;

  }

}

.info-right-item .info-navbar ul li a {

  width: 38px;

  height: 38px;

  border: 2px solid #fff;

  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;

  padding:3px;

}

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

  .info-right-item .info-navbar ul li a {

    width: 40px;

    height: 40px;

  }

}

.info-right-item .info-navbar ul li a:hover {

  background-color: var(--tj-color-theme-primary);

}

.info-right-item .info-navbar ul li button {

  width: 42px;

  height: 42px;

  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: all 0.1s ease-in-out 0s;

  transition: all 0.1s ease-in-out 0s;

  position: relative;

  z-index: 3;

  font-size: 22px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.info-right-item .info-navbar ul li button i {

  -webkit-transform: rotate(90deg);

      -ms-transform: rotate(90deg);

          transform: rotate(90deg);

}

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

  .info-right-item .info-navbar ul li button {

    width: 40px;

    height: 40px;

    font-size: 20px;

  }

}

.info-right-item .info-navbar ul li button:hover {

  background: var(--tj-color-theme-primary);

}

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

  .info-right-item .tj-header-btn {

    padding: 9px 10px 9px 10px;

  }

}



.header-info 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;

}

@media (max-width: 575px) {

  .header-info ul {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    gap: 30px;

  }

}

.header-info ul li {

  position: relative;

  color: var(--tj-color-light-1);

  padding-left: 35px;

  padding: 15px 30px 15px 65px;

  border-right: 2px solid rgba(255, 255, 255, 0.15);

}

.header-info ul li:first-child {

  border-left: 2px solid rgba(255, 255, 255, 0.15);

}

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

  .header-info ul li:first-child {

    border-left: none;

  }

}

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

  .header-info ul li {

    border-right: none;

    border-left: none;

    font-size: 14px;

  }

}

@media (max-width: 575px) {

  .header-info ul li {

    padding: 8px 0 8px 25px;

  }

}

.header-info ul li a {

  color: var(--tj-color-light-1);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.header-info ul li i {

  position: absolute;

  top: 50%;

  left: 30px;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  font-size: 22px;

  line-height: 1;

  color: var(--tj-color-theme-primary);

}

@media (max-width: 575px) {

  .header-info ul li i {

    font-size: 18px;

    left: 0;

  }

}



.header-share 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: 15px;

}

.header-share ul li {

  border-right: 2px solid rgba(255, 255, 255, 0.15);

  border-left: 2px solid rgba(255, 255, 255, 0.15);

  padding: 15px 50px;

}

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

  .header-share ul li {

    padding: 15px 20px;

  }

}

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

  .header-share ul li {

    padding: 0;

    border-right: none;

    border-left: none;

  }

}

.header-share ul li a {

  width: 24px;

  height: 24px;

  line-height: 24px;

  -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-black);

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  font-size: 14px;

  margin-left: 10px;

}

.header-share ul li a i {

  color: var(--tj-color-common-black);

}

.header-share ul li a:first-child {

  margin-left: 0;

}

.header-share ul li a:hover {

  background-color: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}

.header-share ul li a:hover i {

  color: var(--tj-color-common-white);

}



@-webkit-keyframes sticky {

  0% {

    -webkit-transform: translateY(-100%);

            transform: translateY(-100%);

  }

  100% {

    -webkit-transform: translateY(0%);

            transform: translateY(0%);

  }

}

@keyframes sticky {

  0% {

    -webkit-transform: translateY(-100%);

            transform: translateY(-100%);

  }

  100% {

    -webkit-transform: translateY(0%);

            transform: translateY(0%);

  }

}

/* !END: Theme Header CSS */

/**----------------------------------------

START: Theme Heading CSS

----------------------------------------*/

.tj-sec-heading {

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 3;

}

.tj-sec-heading .sub-title {

  color: var(--tj-color-theme-secondary);

  font-size: 25px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 20px;

  display: block;

}

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

  .tj-sec-heading .sub-title {

    margin-bottom: 10px;

    font-size: 20px;

  }

}

.tj-sec-heading .sec-title {

  color: var(--tj-color-theme-primary);

  margin-bottom: 30px;

}

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

  .tj-sec-heading .sec-title {

    font-size: 38px;

  }

}

@media (max-width: 575px) {

  .tj-sec-heading .sec-title {

    font-size: 26px;

    line-height: 1.5;

  }

}

.tj-sec-heading .sec-title span {

  color: var(--tj-color-heading-primary);

  font-weight: var(--tj-fw-elight);

  position: relative;

  z-index: 1;

  padding-left: 110px;

  font-weight: 400;

}

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

  .tj-sec-heading .sec-title span {

    padding-left: 70px;

  }

}

.tj-sec-heading .sec-title span::before {

  position: absolute;

  content: "";

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 0;

  width: 88px;

  height: 2px;

  background: var(--tj-color-theme-primary);

  z-index: 2;

}

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

  .tj-sec-heading .sec-title span::before {

    width: 50px;

  }

}



.tj-sec-heading-two {

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 3;

}

.tj-sec-heading-two .sub-title {

  color: var(--tj-color-theme-secondary);

  font-size: 25px;

  letter-spacing: 0px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 20px;

  display: block;

  position: relative;

  border-radius: 20px;

}

.tj-sec-heading-two .sub-title::before {

  position: absolute;

  content: "";

  bottom: -7px;

  left: 0;

  width: 95px;

  height: 2px;

  border-radius: 50px;

  background: var(--tj-color-theme-primary);

}

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

  .tj-sec-heading-two .sub-title::before {

    width: 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-sec-heading-two .sub-title {

    margin-bottom: 10px;

    font-size: 20px;

  }

}

.tj-sec-heading-two .title {

  margin-bottom: 30px;

}

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

  .tj-sec-heading-two .title {

    font-size: 38px;

    margin-bottom: 15px;

    line-height: 1.5;

  }

}

@media (max-width: 575px) {

  .tj-sec-heading-two .title {

    font-size: 26px;

    margin-bottom: 15px;

    line-height: 1.5;

  }

}

.tj-sec-heading-two .title span {

  color: var(--tj-color-theme-primary);

  font-weight:400 !important;



}



.tj-sec-heading-two.text-center {

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 3;

}

.tj-sec-heading-two.text-center .sub-title {

  color: var(--tj-color-theme-secondary);

  font-size: 25px;

  letter-spacing: 5px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 20px;

  display: block;

  position: relative;

  border-radius: 20px;

}

.tj-sec-heading-two.text-center .sub-title::before {

  position: absolute;

  content: "";

  bottom: 0;

  left: 50%;

  -webkit-transform: translateX(-50%);

      -ms-transform: translateX(-50%);

          transform: translateX(-50%);

  width: 95px;

  height: 2px;

  border-radius: 50px;

  background: var(--tj-color-theme-primary);

}

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

  .tj-sec-heading-two.text-center .sub-title::before {

    width: 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-sec-heading-two.text-center .sub-title {

    margin-bottom: 10px;

    font-size: 20px;

  }

}

.tj-sec-heading-two.text-center .title {

  margin-bottom: 30px;

}

.tj-sec-heading-two.text-center .title .primary-color {

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-light);

}



.tj-sec-heading-three {

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 3;

}

.tj-sec-heading-three .sub-title {

  color: var(--tj-color-theme-primary);

  font-size: 25px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 20px;

  display: block;

  position: relative;

  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-sec-heading-three .sub-title {

    margin-bottom: 10px;

    font-size: 20px;

  }

}

.tj-sec-heading-three .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) {

  .tj-sec-heading-three .title {

    font-size: 38px;

    margin-bottom: 15px;

    line-height: 1.5;

  }

}

@media (max-width: 575px) {

  .tj-sec-heading-three .title {

    font-size: 26px;

    margin-bottom: 15px;

    line-height: 1.5;

  }

}

.tj-sec-heading-three .title span {

  color: var(--tj-color-theme-primary);

  font-weight:400 !important;

}



.tj-sec-heading-four {

  margin-left: auto;

  margin-right: auto;

  position: relative;

  z-index: 3;

}

.tj-sec-heading-four .sub-title {

  color: var(--tj-color-theme-secondary);

  font-size: 25px;

  letter-spacing: 5px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 20px;

  display: block;

}

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

  .tj-sec-heading-four .sub-title {

    margin-bottom: 10px;

    font-size: 20px;

  }

}

.tj-sec-heading-four .sec-title {

  color: var(--tj-color-theme-primary);

  margin-bottom: 0;

}

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

  .tj-sec-heading-four .sec-title {

    font-size: 38px;

  }

}

@media (max-width: 575px) {

  .tj-sec-heading-four .sec-title {

    font-size: 26px;

    line-height: 1.5;

  }

}

.tj-sec-heading-four .sec-title span {

  color: var(--tj-color-theme-secondary);

  font-weight: var(--tj-fw-elight);

}



/* !END: Theme Heading CSS */

/**----------------------------------------

START: Theme Slider CSS

----------------------------------------*/

.tj-slider-section {

  position: relative;

  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-slider-section {

    padding-bottom: 70px;

  }

}

.tj-slider-section .swiper-pagination {

  width: auto;

  right: 130px;

  left: auto;

  bottom: auto;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

}

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

  .tj-slider-section .swiper-pagination {

    right: 75px;

  }

}

@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 .swiper-pagination {

    right: 10px;

  }

}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet {

  cursor: pointer;

  background: transparent;

  position: relative;

  color: var(--tj-color-common-white);

  opacity: 1;

  display: block;

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  margin: 0 0 20px 0;

  font-family: var(--tj-ff-body);

  -webkit-transition: 0.1s;

  transition: 0.1s;

  height: 25px;

  padding-left: 15px;

  width: 10px;

  -webkit-box-sizing: content-box;

          box-sizing: content-box;

}

@media (max-width: 575px) {

  .tj-slider-section .swiper-pagination .swiper-pagination-bullet {

    font-size: 15px;

  }

}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet::after {

  position: absolute;

  content: "0";

  top: 0;

  right: 10px;

  left: auto;

  -webkit-transition: 0.1s;

  transition: 0.1s;

}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet:last-child {

  margin-bottom: 0;

}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet-active {

  color: var(--tj-color-theme-primary);

}

@media (max-width: 575px) {

  .tj-slider-section .swiper-pagination .swiper-pagination-bullet-active {

    font-size: 15px;

  }

}

.tj-slider-section .swiper-pagination .swiper-pagination-bullet-active::before {

  position: absolute;

  content: "";

  top: 12px;

  left: 100%;

  width: 47px;

  height: 2px;

  background: var(--tj-color-theme-primary);

  margin-left: 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-slider-section .swiper-pagination .swiper-pagination-bullet-active::before {

    display: none;

  }

}

.tj-slider-section .slider-sec-shape {

  position: absolute;

  left: 10%;

  bottom: 35%;

  z-index: 3;

}

@media only screen and (min-width: 1600px) and (max-width: 1700px) {

  .tj-slider-section .slider-sec-shape {

    bottom: 30%;

    left: 5%;

  }

}

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

  .tj-slider-section .slider-sec-shape {

    bottom: 25%;

    left: 3%;

  }

}

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

  .tj-slider-section .slider-sec-shape {

    bottom: 32%;

    left: 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-slider-section .slider-sec-shape {

    display: none;

  }

}



.tj-slider-item {

  min-height: 964px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  position: relative;

  z-index: 1;

}

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

  .tj-slider-item {

    min-height: 850px;

  }

}

@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 {

    min-height: 720px;

  }

}

.tj-slider-item .slider-bg-image {

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  width: 100%;

  height: 100%;

  position: absolute;

}

.tj-slider-item::after {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(0, 0, 0, 0.4);

  z-index: 2;

}

.tj-slider-item .slider-content {

  padding-top: 110px;

  padding-bottom: 20px;

  max-width: 1075px;

  position: relative;

  z-index: 3;

}

@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-slider-item .slider-content {

    padding-top: 80px;

  }

}

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

  .tj-slider-item .slider-content {

    padding-bottom: 10px;

  }

}

.tj-slider-item .slider-content .slider-text {

  padding-left: 110px;

}

@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 .slider-text {

    padding-left: 70px;

  }

}

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

  .tj-slider-item .slider-content .slider-text {

    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-slider-item .slider-content {

    max-width: 100%;

  }

}

@media (max-width: 575px) {

  .tj-slider-item .slider-content {

    padding-right: 40px;

  }

}

.tj-slider-item .slider-content .slider-title {

  color: var(--tj-color-common-white);

  margin-bottom: 10px;

  font-size: 110px;

  line-height: 1.1;

  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

  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;

}

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

  .tj-slider-item .slider-content .slider-title {

    font-size: 70px;

  }

}

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

  .tj-slider-item .slider-content .slider-title {

    font-size: 55px;

    margin-bottom: 20px;

  }

}

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

  .tj-slider-item .slider-content .slider-title {

    font-size: 45px;

    margin-bottom: 20px;

  }

}

@media (max-width: 575px) {

  .tj-slider-item .slider-content .slider-title {

    font-size: 32px;

    margin-bottom: 20px;

  }

}

.tj-slider-item .slider-content .slider-sub-title {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-elight);

  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

  position: relative;

  z-index: 1;

  padding-left: 110px;

  font-size: 90px;

  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;

}

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

  .tj-slider-item .slider-content .slider-sub-title {

    font-size: 60px;

  }

}

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

  .tj-slider-item .slider-content .slider-sub-title {

    font-size: 50px;

  }

}

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

  .tj-slider-item .slider-content .slider-sub-title {

    font-size: 30px;

  }

}

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

  .tj-slider-item .slider-content .slider-sub-title {

    padding-left: 70px;

  }

}

@media (max-width: 575px) {

  .tj-slider-item .slider-content .slider-sub-title {

    padding-left: 40px;

  }

}

.tj-slider-item .slider-content .slider-sub-title::before {

  position: absolute;

  content: "";

  width: 88px;

  height: 4px;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 0;

  background: var(--tj-color-theme-primary);

  -webkit-transition: none;

  transition: none;

}

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

  .tj-slider-item .slider-content .slider-sub-title::before {

    width: 50px;

  }

}

@media (max-width: 575px) {

  .tj-slider-item .slider-content .slider-sub-title::before {

    width: 30px;

  }

}

.tj-slider-item .slider-content .slider-sub-title span {

  color: var(--tj-color-theme-primary);

  -webkit-transition: none;

  transition: none;

}

.tj-slider-item .slider-content .desc {

  max-width: 780px;

  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 .desc p {

  margin-bottom: 0;

  color: var(--tj-color-common-white);

  font-size: 20px;

  line-height: 2.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-slider-item .slider-content .desc p {

    font-size: 16px;

  }

}

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

  .tj-slider-item .slider-content .desc p {

    line-height: 1.9;

  }

}

.tj-slider-item .slider-content .slider-button {

  margin-top: 40px;

  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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {

  .tj-slider-item .slider-content .slider-button {

    margin-top: 30px;

  }

}

.tj-slider-item .slider-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,

.tj-slider-item .desc {

  -webkit-transform: translateY(125px);

  -ms-transform: translateY(125px);

      transform: translateY(125px);

}

.tj-slider-item.swiper-slide-active .slider-sub-title,

.tj-slider-item.swiper-slide-active .desc,

.tj-slider-item.swiper-slide-active .slider-title,

.tj-slider-item.swiper-slide-active .slider-button {

  visibility: visible;

  opacity: 1;

  -webkit-transform: translateY(0) translateX(0);

  -ms-transform: translateY(0) translateX(0);

      transform: translateY(0) translateX(0);

}



/* !END: Theme Slider CSS */

/**----------------------------------------

START: Theme Hero CSS

----------------------------------------*/

.tj-hero-section {

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  position: relative;

  z-index: 1;

  padding-top: 280px;

  padding-bottom: 170px;

  overflow: hidden;

  min-height: 100vh;

}

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

  .tj-hero-section {

    padding-top: 200px;

    padding-bottom: 100px;

  }

}

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

  .tj-hero-section {

    padding-top: 155px;

    padding-bottom: 80px;

  }

}

.tj-hero-section::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: -webkit-gradient(linear, left bottom, left top, color-stop(25%, rgba(3, 9, 13, 0.76)), color-stop(60%, rgba(50, 60, 69, 0.64)));

  background: linear-gradient(360deg, rgba(3, 9, 13, 0.76) 25%, rgba(50, 60, 69, 0.64) 60%);

  z-index: 2;

}

.tj-hero-section .tj-sec-heading {

  max-width: 825px;

  margin-left: 0;

}

.tj-hero-section .tj-sec-heading .sub-title {

  color: var(--tj-color-common-white);

  margin-bottom: 10px;

}

.tj-hero-section .tj-sec-heading .sec-title {

  color: var(--tj-color-common-white);

  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

  margin-bottom: 20px;

  font-size: 72px;

}

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

  .tj-hero-section .tj-sec-heading .sec-title {

    font-size: 75px;

  }

}

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

  .tj-hero-section .tj-sec-heading .sec-title {

    font-size: 55px;

  }

}

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

  .tj-hero-section .tj-sec-heading .sec-title {

    font-size: 45px;

  }

}

@media (max-width: 575px) {

  .tj-hero-section .tj-sec-heading .sec-title {

    font-size: 32px;

  }

}

.tj-hero-section .tj-sec-heading .sec-title span {

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-elight);

  font-size: 72px;

  padding-left: 0;

  font-weight: 700;

}

.tj-hero-section .tj-sec-heading .sec-title span::before {

  display: none;

}

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

  .tj-hero-section .tj-sec-heading .sec-title span {

    font-size: 65px;

  }

}

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

  .tj-hero-section .tj-sec-heading .sec-title span {

    font-size: 50px;

  }

}

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

  .tj-hero-section .tj-sec-heading .sec-title span {

    font-size: 42px;

  }

}

@media (max-width: 575px) {

  .tj-hero-section .tj-sec-heading .sec-title span {

    font-size: 30px;

  }

}

.tj-hero-section .tj-sec-heading .desc {

  max-width: 826px;

  width: 100%;

}

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

  .tj-hero-section .tj-sec-heading .desc {

    max-width: 775px;

  }

}

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

  .tj-hero-section .tj-sec-heading .desc {

    max-width: 635px;

  }

}

.tj-hero-section .tj-sec-heading .desc p {

  color: var(--tj-color-common-white);

  font-size: 18px;

  margin-bottom: 0;

  line-height: 2.1;

  letter-spacing: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-hero-section .tj-sec-heading .desc p {

    font-size: 16px;

  }

}

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

  .tj-hero-section .tj-sec-heading .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.tj-hero-section .tj-sec-heading .tj-hero-button {

  margin-top: 40px;

}

.tj-hero-section .hero-wrapper .hero-feature-image {

  position: absolute;

  border-radius: 360px 0px 0px 360px;

  border: 17px solid #26333e;

  -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

          box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

  z-index: 2;

  top: -10%;

  right: -55%;

  width: 100%;

  height: 460px;

  overflow: hidden;

  -webkit-transform: rotate(-42.189deg);

      -ms-transform: rotate(-42.189deg);

          transform: rotate(-42.189deg);

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .tj-hero-section .hero-wrapper .hero-feature-image {

    top: 0;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image {

    top: -5%;

    right: -60%;

    height: 370px;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image {

    top: 0;

    right: -58%;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image {

    top: 4%;

    right: -57%;

    height: 330px;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image {

    display: none;

  }

}

.tj-hero-section .hero-wrapper .hero-feature-image::before {

  position: absolute;

  content: "";

  top: -25%;

  left: 0;

  width: 100%;

  height: 100%;

  border-radius: 300px;

  background: rgba(255, 255, 255, 0.28);

  -webkit-filter: blur(100px);

          filter: blur(100px);

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .tj-hero-section .hero-wrapper .hero-feature-image::before {

    top: -50%;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image::before {

    top: -65%;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image::before {

    top: 0;

  }

}

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

  .tj-hero-section .hero-wrapper .hero-feature-image::before {

    top: -60%;

  }

}

.tj-hero-section .hero-wrapper .hero-feature-image img {

  height: 329%;

  -webkit-transform-origin: right center;

  -ms-transform-origin: right center;

  transform-origin: top;

  min-width: 100%;

  -o-object-fit: cover;

  object-fit: cover;

  position: absolute;

  -webkit-transform: rotate(42deg) translateY(15%);

  -ms-transform: rotate(42deg) translateY(15%);

  transform: rotate(50deg) translateY(-20%);

}

.tj-hero-section .hero-wrapper .circle-box {

  position: absolute;

  top: 24%;

  right: 20%;

  background: var(--tj-color-common-white);

  width: 147px;

  height: 150px;

  border-radius: 50%;

  border: 2px solid var(--tj-color-theme-primary);

  z-index: 4;

}

@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) {

  .tj-hero-section .hero-wrapper .circle-box {

    height: 120px;

    width: 120px;

    top: 28%;

    right: 16%;

  }

}

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

  .tj-hero-section .hero-wrapper .circle-box {

    display: none;

  }

}

.tj-hero-section .hero-wrapper .circle-box svg {

  position: absolute;

  top: -43px;

  left: -43px;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  font-weight: var(--tj-fw-medium);

  z-index: 2;

  width: 120px;

  height: 120px;

}

@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) {

  .tj-hero-section .hero-wrapper .circle-box svg {

    width: 95px;

    height: 95px;

    left: -30px;

    top: -30px;

  }

}

.tj-hero-section .hero-wrapper .circle-box svg.shape-1 {

  -webkit-animation: rotateImg 10s infinite linear;

          animation: rotateImg 10s infinite linear;

}

.tj-hero-section .hero-wrapper .circle-box .video-play {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: 2;

}

.tj-hero-section .hero-wrapper .circle-box .video-play a {

  width: 34px;

  height: 34px;

  line-height: 34px;

  display: inline-block;

  text-align: center;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  border-radius: 50%;

  font-size: 16px;

  word-spacing: 2px;

}



.tj-hero-section-two {

  padding-top: 295px;

  padding-bottom: 140px;

  position: relative;

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  z-index: 2;

}

.tj-hero-section-two::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: var(--tj-color-theme-secondary);

  mix-blend-mode: hard-light;

  z-index: -1;

}

.tj-hero-section-two .sec-left-shape-one {

  position: absolute;

  bottom: 100px;

  left: 0;

  max-width: 190px;

  width: 100%;

  z-index: -1;

}

.tj-hero-section-two .sec-right-shape-one {

  position: absolute;

  bottom: 100px;

  right: 0;

  max-width: 140px;

  width: 100%;

  z-index: -1;

}

.tj-hero-section-two .sec-top-shape {

  position: absolute;

  top: 0;

  left: 0;

  max-width: 300px;

  width: 100%;

  z-index: -1;

}

.tj-hero-section-two .sec-top-shape-two {

  position: absolute;

  top: 0;

  right: 0;

  z-index: -1;

}

.tj-hero-section-two .sec-lg-shape {

  position: absolute;

  bottom: 0;

  left: 0;

  z-index: -1;

}

.tj-hero-section-two .hero-vector-one {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 8%;

}

.tj-hero-section-two .hero-vector-two {

  position: absolute;

  top: 28%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 95px;

}

.tj-hero-section-two .hero-vector-three {

  position: absolute;

  top: 28%;

  left: 55%;

  -webkit-transform: translateX(-50%);

      -ms-transform: translateX(-50%);

          transform: translateX(-50%);

  opacity: 0.15;

}

@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-hero-section-two .hero-vector-one {

    display: none;

  }

}

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

  .tj-hero-section-two {

    padding-top: 230px;

    padding-bottom: 100px;

  }

  .tj-hero-section-two .sec-left-shape-one {

    bottom: 40px;

    max-width: 100px;

  }

  .tj-hero-section-two .sec-right-shape-one {

    bottom: 40px;

    max-width: 100px;

  }

}

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

  .tj-hero-section-two {

    padding-top: 160px;

    padding-bottom: 80px;

  }

  .tj-hero-section-two .sec-left-shape-one {

    bottom: 40px;

    max-width: 100px;

  }

  .tj-hero-section-two .sec-right-shape-one {

    bottom: 40px;

    max-width: 100px;

  }

  .tj-hero-section-two .form-box-two {

    max-width: 100%;

  }

}

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

  .tj-hero-section-two {

    padding-top: 170px;

  }

  .tj-hero-section-two .form-box-two {

    padding: 25px 20px;

  }

  .tj-hero-section-two .form-box-two .contact-content .title {

    font-size: 26px;

  }

  .tj-hero-section-two .hero-vector-two {

    display: none;

  }

}



.hero-content-two .tj-sec-heading .sub-title {

  margin-bottom: 15px;

  text-transform: uppercase;

  color: var(--tj-color-common-white);

}

.hero-content-two .tj-sec-heading .sec-title {

  font-size: 90px;

  color: var(--tj-color-common-white);

  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

  margin-bottom: 20px;

}

.hero-content-two .tj-sec-heading .sec-title span {

  font-size: 80px;

  color: var(--tj-color-theme-primary);

  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);

  font-weight: var(--tj-fw-light);

  padding-left: 0;

}

.hero-content-two .tj-sec-heading .sec-title span::before {

  display: none;

}

.hero-content-two .desc p {

  font-size: 20px;

  color: var(--tj-color-common-white);

  line-height: 1.9;

}

.hero-content-two .desc p:last-child {

  margin-bottom: 0;

}

.hero-content-two .tj-hero-button {

  margin-top: 30px;

}

.hero-content-two .tj-hero-button .tj-primary-btn {

  font-size: 15px;

  padding: 13px 25px;

  border-radius: 5px;

}

.hero-content-two .tj-hero-button .tj-primary-btn i {

  margin-left: 6px;

}

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

  .hero-content-two .tj-sec-heading .sec-title {

    font-size: 70px;

  }

  .hero-content-two .tj-sec-heading .sec-title span {

    font-size: 60px;

  }

}

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

  .hero-content-two .tj-sec-heading .sub-title {

    font-size: 20px;

  }

  .hero-content-two .tj-sec-heading .sec-title {

    font-size: 60px;

    line-height: 1;

  }

  .hero-content-two .tj-sec-heading .sec-title span {

    font-size: 50px;

  }

}

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

  .hero-content-two {

    margin-bottom: 50px;

  }

  .hero-content-two .tj-sec-heading .sub-title {

    font-size: 20px;

  }

  .hero-content-two .tj-sec-heading .sec-title {

    font-size: 55px;

    line-height: 1.2;

  }

  .hero-content-two .tj-sec-heading .sec-title span {

    font-size: 50px;

    display: block;

  }

}

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

  .hero-content-two {

    margin-bottom: 50px;

  }

  .hero-content-two .tj-sec-heading .sub-title {

    font-size: 18px;

  }

  .hero-content-two .tj-sec-heading .sec-title {

    font-size: 45px;

    line-height: 1.2;

  }

  .hero-content-two .tj-sec-heading .sec-title span {

    font-size: 40px;

    display: block;

  }

  .hero-content-two .tj-sec-heading .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}

@media (max-width: 575px) {

  .hero-content-two {

    margin-bottom: 50px;

  }

  .hero-content-two .tj-sec-heading .sub-title {

    font-size: 17px;

  }

  .hero-content-two .tj-sec-heading .sec-title {

    font-size: 32px;

    line-height: 1.2;

  }

  .hero-content-two .tj-sec-heading .sec-title span {

    font-size: 30px;

    display: block;

  }

  .hero-content-two .tj-sec-heading .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}



/* !END: Theme Hero CSS */

/**----------------------------------------

START: Theme About CSS

----------------------------------------*/

.tj-about-section {

  padding-bottom: 120px;

  position: relative;

  z-index: 1;

}

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

  .tj-about-section {

    padding-bottom: 80px;

  }

}

.tj-about-section.tj-about-page {

  padding-top: 120px;

  padding-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-about-section.tj-about-page {

    padding-top: 80px;

  }

}

.tj-about-section .tj-sec-heading {

  margin-bottom: 40px;

}

.tj-about-section .sec-shape {

  position: absolute;

  top: 0;

  left: 10%;

  width: 92px;

  height: 18px;

  -webkit-mask-image: url(../images/shape/service-hover.svg);

          mask-image: url(../images/shape/service-hover.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-grey-3);

}

@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-about-section .sec-shape {

    left: 50%;

  }

}



.tj-about-section-two {

  padding-top: 120px;

  padding-bottom: 200px;

  position: relative;

  z-index: 1;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .tj-about-section-two {

    padding-bottom: 170px;

  }

}

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

  .tj-about-section-two {

    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-about-section-two {

    padding-bottom: 80px;

  }

}

.tj-about-section-two .about-sec-shape {

  position: absolute;

  right: 30px;

  bottom: 26%;

  z-index: 2;

}



.tj-about-section-three {

  background-color: var(--tj-color-light-1);

  padding-top: 120px;

  padding-bottom: 200px;

  position: relative;

  z-index: 2;

}

.tj-about-section-three .tj-sec-heading-three .title {

  margin-bottom: 30px;

}

.tj-about-section-three .about-top-shape {

  position: absolute;

  top: 60px;

  left: 0;

  z-index: -1;

  opacity: 0.3;

  max-width: 190px;

  width: 100%;

}

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

  .tj-about-section-three {

    padding-bottom: 120px;

  }

}

@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-about-section-three .about-top-shape {

    max-width: 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-about-section-three {

    padding-bottom: 80px;

  }

}

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

  .tj-about-section-three .tj-sec-heading-three .title {

    margin-bottom: 20px;

  }

  .tj-about-section-three .about-top-shape {

    display: none;

  }

}

@media (max-width: 575px) {

  .tj-about-section-three {

    padding-top: 140px;

  }

}



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

  .about-content-one {

    margin-bottom: 50px;

  }

}

.about-content-one .desc {

  max-width: 775px;

}

.about-content-one .desc p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.1;

}

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

  .about-content-one .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.about-content-one .tj-about-button {

  margin-top: 50px;

}



.about-content-two .desc p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.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) {

  .about-content-two .desc p {

    font-size: 16px;

  }

}

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

  .about-content-two .desc p {

    line-height: 1.9;

  }

}

.about-content-two .tj-progress-bar {

  margin-top: 20px;

  width: 520px;

}

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

  .about-content-two .tj-progress-bar {

    width: 400px;

  }

}

@media (max-width: 575px) {

  .about-content-two .tj-progress-bar {

    width: 250px;

  }

}

.about-content-two .tj-progress-bar label {

  font-size: 22px;

  font-weight: var(--tj-fw-bold);

  font-family: var(--tj-ff-heading);

  color: var(--tj-color-light-6);

  margin-bottom: 18px;

}

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

  .about-content-two .tj-progress-bar label {

    font-size: 20px;

    margin-bottom: 15px;

  }

}

.about-content-two .tj-progress-bar .skills {

  background-color: var(--tj-color-light-2);

  height: 5px;

  position: relative;

  border-radius: 20px;

}

.about-content-two .tj-progress-bar .skills span {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: -60px;

  font-size: 22px;

  font-weight: var(--tj-fw-bold);

  font-family: var(--tj-ff-heading);

  color: var(--tj-color-theme-primary);

}

.about-content-two .tj-progress-bar .skills .skillbar {

  background-color: var(--tj-color-light-5);

  width: 0px;

  height: 5px;

  border-radius: 20px;

}

.about-content-two .tj-about-button {

  margin-top: 40px;

}



.about-content-three {

  max-width: 698px;

  width: 100%;

}

.about-content-three .desc {

  margin-bottom: 30px;

}

.about-content-three .desc p {

  font-size: 18px;

  line-height: 1.9;

}

.about-content-three .desc p:last-child {

  margin-bottom: 0;

}

.about-content-three .about-button {

  margin-top: 40px;

  text-align:center;

}

.about-content-three .about-button .tj-primary-btn {

  font-size: 15px;

  padding: 13px 25px;

  width: 49%;

  justify-content: center;

  margin: 0 auto;

  border-radius: 5px;

}



.about-feature-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

  flex-wrap: wrap;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: baseline;

  gap: 40px;

  flex-direction: row;

  align-content: space-between;

  justify-content: space-between;

}

.about-feature-item .feature-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 20px;

}

.about-feature-item .feature-content .feature-icon {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  width: 64px;

  height: 64px;

  line-height: 1;

  border-radius: 10px;

  font-size: 25px;

  background: var(--tj-color-theme-secondary);

  color: var(--tj-color-common-white);

}

.about-feature-item .feature-content .feature-text .title {

  margin-bottom: 5px;

  color: var(--tj-color-theme-primary);

}

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

  .about-feature-item {

    gap: 20px;

  }

}



.about-image-group {

  position: relative;

  z-index: 1;

  text-align: right;

  right: -135px;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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) {

  .about-image-group {

    right: 0;

  }

}

.about-image-group .about-lg-image {

  position: relative;

}

.about-image-group .about-lg-image .about-circle {

  position: absolute;

  top: 40px;

  right: 40px;

  background: var(--tj-color-common-white);

  width: 147px;

  height: 150px;

  border-radius: 50%;

  border: 2px solid var(--tj-color-theme-primary);

  z-index: 1;

}

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

  .about-image-group .about-lg-image .about-circle {

    width: 110px;

    height: 110px;

    top: 20px;

    right: 20px;

  }

}

.about-image-group .about-lg-image .about-circle svg {

  position: absolute;

  top: -43px;

  left: -43px;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  font-weight: var(--tj-fw-medium);

  z-index: 2;

  width: 120px;

  height: 120px;

}

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

  .about-image-group .about-lg-image .about-circle svg {

    width: 90px;

    height: 90px;

    top: -28px;

    left: -28px;

  }

}

.about-image-group .about-lg-image .about-circle svg.shape-1 {

  -webkit-animation: rotateImg 10s infinite linear;

          animation: rotateImg 10s infinite linear;

}

.about-image-group .about-lg-image .about-circle .video-play {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: 2;

}

.about-image-group .about-lg-image .about-circle .video-play a {

  width: 34px;

  height: 34px;

  line-height: 34px;

  display: inline-block;

  text-align: center;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  border-radius: 50%;

  font-size: 16px;

  word-spacing: 2px;

}

.about-image-group .about-experience {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 15px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  background: var(--tj-color-common-white);

  position: absolute;

  bottom: 25px;

  left: -65%;

  padding: 30px 30px;

  max-width: 374px;

  width: 100%;

}

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

  .about-image-group .about-experience {

    left: -35%;

  }

}

@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-image-group .about-experience {

    max-width: 300px;

    left: 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) {

  .about-image-group .about-experience {

    padding: 15px 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) {

  .about-image-group .about-experience {

    left: 45px;

  }

}

.about-image-group .about-experience::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 50%;

  bottom: 0;

  left: 0;

  background: rgba(123, 123, 123, 0.4);

  -webkit-filter: blur(60px);

          filter: blur(60px);

  z-index: -1;

}

.about-image-group .about-experience .about-icon {

  width: 60px;

  height: 87px;

  line-height: 70px;

  text-align: center;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  font-size: 35px;

}

.about-image-group .about-experience .counter-number {

  text-align: left;

}

.about-image-group .about-experience .counter-number .tj-count {

  font-size: 30px;

  color: var(--tj-color-heading-primary);

  font-weight: var(--tj-fw-bold);

}

.about-image-group .about-experience .sub-title {

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

  font-family: var(--tj-ff-heading);

  position: relative;

  padding-left: 35px;

}

.about-image-group .about-experience .sub-title::before {

  position: absolute;

  content: "";

  width: 25px;

  height: 2px;

  top: 50%;

  left: 0;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  background: var(--tj-color-theme-primary);

}

.about-image-group .about-experience .about-shape {

  position: absolute;

  top: 50px;

  right: 30px;

  width: 92px;

  height: 18px;

  -webkit-mask-image: url(../images/shape/service-hover.svg);

          mask-image: url(../images/shape/service-hover.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-grey-3);

}

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

  .about-image-group .about-experience .about-shape {

    top: 20px;

    right: 20px;

  }

}



.about-image-group-two {

  position: relative;

  z-index: 1;

  left: -110px;

  max-width: 665px;

  width: 100%;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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) {

  .about-image-group-two {

    left: 0;

  }

}

@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) {

  .about-image-group-two {

    margin-bottom: 175px;

  }

}

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

  .about-image-group-two {

    margin-bottom: 150px;

  }

}

.about-image-group-two .group-1 {

  max-width: 550px;

  width: 100%;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .about-image-group-two .group-1 {

    max-width: 510px;

  }

}

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

  .about-image-group-two .group-1 {

    max-width: 430px;

  }

}

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

  .about-image-group-two .group-1 {

    max-width: 420px;

  }

}

@media (max-width: 575px) {

  .about-image-group-two .group-1 {

    max-width: 280px;

  }

}

.about-image-group-two .group-2 {

  max-width: 545px;

  width: 100%;

  position: absolute;

  top: 74px;

  right: 25px;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .about-image-group-two .group-2 {

    max-width: 505px;

    top: 45px;

    right: 85px;

  }

}

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

  .about-image-group-two .group-2 {

    max-width: 420px;

    top: 74px;

    right: 80px;

  }

}

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

  .about-image-group-two .group-2 {

    max-width: 400px;

    top: 60px;

    right: 55px;

  }

}

@media (max-width: 575px) {

  .about-image-group-two .group-2 {

    max-width: 270px;

    top: 45px;

    right: 50px;

  }

}

.about-image-group-two .group-3 {

  max-width: 535px;

  width: 100%;

  position: absolute;

  top: 141px;

  right: -30px;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .about-image-group-two .group-3 {

    max-width: 495px;

    top: 140px;

    right: 40px;

  }

}

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

  .about-image-group-two .group-3 {

    max-width: 420px;

    top: 140px;

    right: 35px;

  }

}

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

  .about-image-group-two .group-3 {

    max-width: 380px;

    top: 130px;

    right: 10px;

  }

}

@media (max-width: 575px) {

  .about-image-group-two .group-3 {

    max-width: 260px;

    top: 115px;

    right: 30px;

  }

}

.about-image-group-two .group-shape {

  position: absolute;

  top: -50px;

  left: -60px;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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) {

  .about-image-group-two .group-shape {

    left: -20px;

  }

}

@media (max-width: 575px) {

  .about-image-group-two .group-shape {

    left: 0;

    max-width: 200px;

  }

}



.about-image-group-three {

  text-align: end;

  position: relative;

  z-index: 1;

  right: -40px;

  max-width: 660px;

  width: 100%;

}

.about-image-group-three .about-top-image {

  position: relative;

  max-width: 560px;

  width: 100%;

  z-index: 2;

  margin: 0 auto;

}

.about-image-group-three .about-top-image::before {

  position: absolute;

  content: "";

  width: 114px;

  height: 380px;

  right: -20px;

  top: -20px;

  border-radius: 0px 40px 0px 0px;

  background: var(--tj-color-theme-primary);

  z-index: -1;

}

.about-image-group-three .about-top-image img {

  border-radius: 20px;

}

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

  .about-image-group-three .about-top-image {

    max-width: 310px;

  }

}

.about-image-group-three .about-bottom-image {

  position: absolute;

  bottom: -14%;

  left: 0;

  z-index: 2;

  max-width: 315px;

  width: 100%;

}

.about-image-group-three .about-bottom-image img {

  border-radius: 12px;

}

.about-image-group-three .about-bottom-image .video-play {

  position: absolute;

  top: -70px;

  right: 70px;

}

.about-image-group-three .about-bottom-image .video-play .popup-videos-button {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  background: var(--tj-color-common-white);

  width: 95px;

  height: 95px;

  font-size: 22px;

  border-radius: 50%;

  color: var(--tj-color-theme-secondary);

  position: relative;

  z-index: 2;

}

.about-image-group-three .about-bottom-image .video-play .popup-videos-button::before {

  position: absolute;

  content: "";

  width: 70px;

  height: 70px;

  border: 1px solid rgba(57, 202, 110, 0.5);

  border-radius: 50%;

}

.about-image-group-three .about-bottom-image .video-play .popup-videos-button::after {

  position: absolute;

  content: "";

  width: 55px;

  height: 55px;

  border: 1px solid var(--tj-color-theme-primary);

  border-radius: 50%;

}

.about-image-group-three .about-bottom-image .video-play .popup-videos-button i {

  line-height: 1;

}

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

  .about-image-group-three .about-bottom-image {

    max-width: 235px;

  }

}

.about-image-group-three .about-text {

  background: rgba(50, 60, 69, 0.12);

  stroke-width: 1px;

  -webkit-backdrop-filter: blur(7.5px);

          backdrop-filter: blur(7.5px);

  position: absolute;

  right: -16%;

  top: 8%;

  z-index: 2;

  border-radius: 10px;

  border: 1px solid rgba(255, 255, 255, 0.5);

  text-align: left;

  max-width: 255px;

  width: 100%;

  padding: 20px 20px;

}

.about-image-group-three .about-text .title {

  font-size: 20px;

  color: var(--tj-color-common-white);

  text-shadow: 0px 4px 11px rgba(0, 0, 0, 0.22);

  margin-bottom: 10px;

  line-height: 1.4;

}

.about-image-group-three .about-text p {

  font-size: 12px;

  color: var(--tj-color-common-white);

}

.about-image-group-three .about-text 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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {

  .about-image-group-three .about-text {

    max-width: 220px;

    padding: 20px 10px;

  }

}

.about-image-group-three .shape-one {

  position: absolute;

  left: 0;

  top: 36px;

  max-width: 150px;

  width: 100%;

  z-index: -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), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {

  .about-image-group-three .shape-one {

    max-width: 80px;

    left: -15px;

  }

}

.about-image-group-three .shape-two {

  position: absolute;

  right: -16%;

  top: -15%;

  max-width: 200px;

  width: 100%;

  z-index: -1;

}

.about-image-group-three .shape-three {

  position: absolute;

  top: 55%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: -10%;

  max-width: 90px;

  width: 100%;

  z-index: -1;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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) {

  .about-image-group-three {

    right: 0;

  }

  .about-image-group-three .about-text {

    right: -6%;

  }

  .about-image-group-three .shape-three {

    top: 50%;

    left: 0;

    max-width: 60px;

  }

}

@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) {

  .about-image-group-three {

    margin: auto;

    margin-bottom: 120px;

  }

}

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

  .about-image-group-three .shape-three,

  .about-image-group-three .shape-one {

    display: none;

  }

}

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

  .about-image-group-three {

    max-width: 380px;

  }

  .about-image-group-three .about-bottom-image {

    max-width: 250px;

    left: -30px;

  }

  .about-image-group-three .about-text {

    right: -18%;

  }

  .about-image-group-three .about-feature-item {

    gap: 20px;

  }

}

@media (max-width: 575px) {

  .about-image-group-three .about-text {

    right: -16%;

    top: 0%;

  }

}

@media (max-width: 575px) {

  .about-image-group-three {

    max-width: 250px;

    margin-bottom: 90px;

  }

  .about-image-group-three .about-bottom-image {

    max-width: 180px;

    left: -35px;

  }

  .about-image-group-three .about-bottom-image .video-play {

    top: -35px;

    right: 70px;

  }

  .about-image-group-three .about-bottom-image .video-play .popup-videos-button {

    width: 65px;

    height: 65px;

  }

  .about-image-group-three .about-bottom-image .video-play .popup-videos-button::before {

    width: 50px;

    height: 50px;

  }

  .about-image-group-three .about-bottom-image .video-play .popup-videos-button::after {

    width: 40px;

    height: 40px;

  }

  .about-image-group-three .shape-two {

    display: none;

  }

  .about-image-group-three .about-top-image::before {

    height: 360px;

    right: -15px;

    top: -15px;

  }

  .about-image-group-three .about-feature-item {

    gap: 20px;

  }

}



/* !END: Theme About CSS */

/**----------------------------------------

START: Theme Counter CSS

----------------------------------------*/

.tj-counter-section {

  padding-top: 120px;

  padding-bottom: 100px;

}

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

  .tj-counter-section {

    padding-top: 70px;

    padding-bottom: 90px;

  }

}



.tj-counter-section-two {

  background: var(--tj-color-theme-secondary);

  padding: 60px 0;

}



.fun-fact-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 80px;

}

@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) {

  .fun-fact-area {

    gap: 50px;

  }

}

@media (max-width: 575px) {

  .fun-fact-area {

    gap: 20px;

  }

}



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

  .counter-wrapper {

    margin-top: 50px;

  }

}

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

  .counter-wrapper {

    margin-top: 20px;

  }

}



.counter-item {

  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;

}

.counter-item .about-icon {

  font-size: 50px;

  color: var(--tj-color-theme-primary);

}

.counter-item .tj-count {

  font-size: 30px;

  font-weight: var(--tj-fw-bold);

  color: var(--tj-color-theme-primary);

  font-family: var(--tj-ff-heading);

  margin-bottom: 5px;

  letter-spacing: 3px;

}

@media (max-width: 575px) {

  .counter-item .tj-count {

    font-size: 25px;

  }

}

.counter-item .sub-title {

  color: var(--tj-color-heading-heading);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

}



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

  .counter-content-area {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

  }

}

.counter-content-area .counter-item-two {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 30px;

  margin-bottom: 20px;

}

@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) {

  .counter-content-area .counter-item-two {

    gap: 20px;

    margin-bottom: 10px;

  }

}

.counter-content-area .counter-item-two:last-child {

  margin-bottom: 0;

}

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

  .counter-content-area .counter-item-two:last-child {

    margin-bottom: 20px;

  }

}

.counter-content-area .counter-item-two .counter-icon {

  font-size: 60px;

  color: var(--tj-color-heading-primary);

}

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

  .counter-content-area .counter-item-two .counter-icon {

    font-size: 45px;

  }

}

.counter-content-area .counter-item-two .counter-number .tj-count {

  font-size: 50px;

  color: var(--tj-color-heading-primary);

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  letter-spacing: 3px;

  margin-bottom: 10px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

@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-content-area .counter-item-two .counter-number .tj-count {

    font-size: 35px;

  }

}

.counter-content-area .counter-item-two .counter-number .sub-title {

  font-size: 25px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-sbold);

  color: var(--tj-color-theme-primary);

  position: relative;

  bottom: 20px;

}

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

  .counter-content-area .counter-item-two .counter-number .sub-title {

    font-size: 20px;

  }

}



.counter-item-three {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 20px;

}

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

  .counter-item-three {

    margin-bottom: 30px;

  }

}

.counter-item-three .counter-icon {

  font-size: 60px;

  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) {

  .counter-item-three .counter-icon {

    font-size: 45px;

  }

}

.counter-item-three .counter-number .tj-count {

  font-size: 50px;

  color: var(--tj-color-common-white);

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  letter-spacing: 3px;

}

@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) {

  .counter-item-three .counter-number .tj-count {

    font-size: 35px;

  }

}

.counter-item-three .counter-number .sub-title {

  font-size: 25px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-sbold);

  color: var(--tj-color-theme-primary);

}

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

  .counter-item-three .counter-number .sub-title {

    font-size: 20px;

  }

}



/* !END: Theme Counter CSS */

/**----------------------------------------

START: Theme Service CSS

----------------------------------------*/

.tj-service-section {

  background: var(--tj-color-theme-bg);

  padding-top: 120px;

  padding-bottom: 100px;

}

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

  .tj-service-section {

    padding-top: 80px;

    padding-bottom: 60px;

  }

}

.tj-service-section .tj-sec-heading {

  margin-bottom: 50px;

}



.tj-service-section-two {

  background: var(--tj-color-light-1);

  padding-top: 120px;

  padding-bottom: 90px;

}

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

  .tj-service-section-two {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

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

  .tj-service-section-two {

    padding-top: 80px;

    padding-bottom: 80px;

  }

}

.tj-service-section-two .tj-sec-heading-two {

  max-width: 670px;

  margin-left: 0;

  margin-bottom: -100px;

  z-index: 6;

}

.tj-service-section-two .tj-service-slider {

  padding-top: 120px;

  position: relative;

  z-index: 4;

}

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

  .tj-service-section-two .service-navigation {

    display: none;

  }

}

.tj-service-section-two .service-navigation .swiper-button-next,

.tj-service-section-two .service-navigation .swiper-button-prev {

  top: 25px;

  right: 70px;

  left: auto;

}

.tj-service-section-two .service-navigation .swiper-button-next::before,

.tj-service-section-two .service-navigation .swiper-button-prev::before {

  position: absolute;

  content: "\f104";

  font-family: "Font Awesome 6 Pro";

  width: 55px;

  height: 45px;

  line-height: 44px;

  text-align: center;

  top: 0;

  right: 0;

  border: 2px solid var(--tj-color-light-7);

  color: var(--tj-color-light-7);

  background: transparent;

  font-size: 25px;

  z-index: 1;

  border-radius: 200px 0px 0 200px;

}

.tj-service-section-two .service-navigation .swiper-button-next:hover::before,

.tj-service-section-two .service-navigation .swiper-button-prev:hover::before {

  border-color: var(--tj-color-theme-primary);

  color: var(--tj-color-theme-primary);

}

.tj-service-section-two .service-navigation .swiper-button-next {

  right: 0;

}

.tj-service-section-two .service-navigation .swiper-button-next::before {

  content: "\f105";

  border: 2px solid var(--tj-color-light-7);

  right: 0;

  border-radius: 0px 200px 200px 0px;

}

.tj-service-section-two .service-navigation .swiper-button-prev:after,

.tj-service-section-two .service-navigation .swiper-button-next:after {

  display: none;

}

.tj-service-section-two .swiper-pagination {

  width: auto;

  left: 50%;

  bottom: 0;

  -webkit-transform: translateX(-50%);

      -ms-transform: translateX(-50%);

          transform: translateX(-50%);

  display: none;

}

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

  .tj-service-section-two .swiper-pagination {

    display: block;

  }

}

.tj-service-section-two .swiper-pagination .swiper-pagination-bullet {

  width: 15px;

  height: 15px;

  cursor: pointer;

  border-radius: 50%;

  background: var(--tj-color-light-7);

  -webkit-transition: 0.4s;

  transition: 0.4s;

  margin: 0 7px !important;

  opacity: 1;

  display: inline-block;

}

.tj-service-section-two .swiper-pagination .swiper-pagination-bullet:last-child {

  margin-bottom: 0;

}

.tj-service-section-two .swiper-pagination .swiper-pagination-bullet-active {

  position: relative;

  border-radius: 50%;

  background-color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

}



.tj-service-section-three {

  padding-top: 120px;

  padding-bottom: 90px;

  position: relative;

  z-index: 2;

}

.tj-service-section-three .tj-sec-heading-three {

  max-width: 575px;

  width: 100%;

  margin-bottom: 60px;

}

.tj-service-section-three .sec-shape-1 {

  position: absolute;

  top: 12%;

  left: 8%;

  max-width: 145px;

  width: 100%;

  z-index: -1;

}

.tj-service-section-three .sec-shape-2 {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 5%;

  max-width: 125px;

  width: 100%;

  z-index: -1;

}

.tj-service-section-three .sec-shape-3 {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 0;

  z-index: -1;

}

.tj-service-section-three .sec-shape-4 {

  position: absolute;

  top: -12%;

  right: 0;

  z-index: -1;

}

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

  .tj-service-section-three .sec-shape-2 {

    top: 12%;

  }

}

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

  .tj-service-section-three {

    padding-top: 80px;

    padding-bottom: 50px;

  }

  .tj-service-section-three .tj-sec-heading-three {

    margin-bottom: 40px;

  }

}

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

  .tj-service-section-three .sec-shape-1,

  .tj-service-section-three .sec-shape-2,

  .tj-service-section-three .sec-shape-3,

  .tj-service-section-three .sec-shape-4 {

    display: none;

  }

}



.tj-service-item {

  max-width: 1170px;

  margin: auto;

  position: relative;

  margin-top: -75px;

  z-index: 5;

}

.tj-service-item ul {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 20px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

}

.tj-service-item ul li .service-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: end;

      -ms-flex-align: end;

          align-items: end;

  gap: 15px;

  background: var(--tj-color-common-white);

  padding: 30px 60px 30px 30px;

  border-bottom: 1px solid var(--tj-color-theme-primary);

  border-left: 1px solid var(--tj-color-theme-primary);

  border-right: 1px solid var(--tj-color-theme-primary);

  position: relative;

  -webkit-transition: 0.6s;

  transition: 0.6s;

}

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

  .tj-service-item ul li .service-content {

    padding: 15px 60px 15px 20px;

  }

}

@media (max-width: 575px) {

  .tj-service-item ul li .service-content {

    padding: 15px 40px 15px 20px;

  }

}

.tj-service-item ul li .service-content::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(123, 123, 123, 0.4);

  -webkit-filter: blur(60px);

          filter: blur(60px);

  z-index: -1;

  opacity: 0;

  visibility: hidden;

}

.tj-service-item ul li .service-content .service-icon {

  width: 60px;

  height: 87px;

  line-height: 75px;

  text-align: center;

  display: inline-block;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  font-size: 40px;

}

.tj-service-item ul li .service-content .title {

  margin-bottom: 10px;

}

.tj-service-item ul li .service-content .sub-title {

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-medium);

  font-size: 18px;

  position: relative;

  z-index: 1;

  padding-left: 35px;

}

.tj-service-item ul li .service-content .sub-title::before {

  position: absolute;

  content: "";

  top: 50%;

  left: 0;

  width: 25px;

  height: 2px;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  background: var(--tj-color-theme-primary);

}

.tj-service-item ul li .service-content .item-shape {

  position: absolute;

  top: 25px;

  right: 20px;

  width: 92px;

  height: 18px;

  -webkit-mask-image: url(../images/shape/service-hover.svg);

          mask-image: url(../images/shape/service-hover.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-grey-3);

}

.tj-service-item ul li .service-content:hover {

  border-bottom: 1px solid var(--tj-color-common-white);

  border-left: 1px solid var(--tj-color-common-white);

  border-right: 1px solid var(--tj-color-common-white);

}

.tj-service-item ul li .service-content:hover::before {

  opacity: 1;

  visibility: visible;

}



.tj-service-item-two {

  margin-bottom: 24px;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 36px;

  background: transparent;

  padding: 65px 0;

  position: relative;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

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

  .tj-service-item-two {

    gap: 20px;

  }

}

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

  .tj-service-item-two {

    gap: 25px;

    padding: 65px 0 40px;

  }

}

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

  .tj-service-item-two {

    padding-bottom: 30px;

  }

}

.tj-service-item-two::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 50%;

  bottom: 0;

  left: 0;

  background: rgba(123, 123, 123, 0.4);

  -webkit-filter: blur(60px);

          filter: blur(60px);

  opacity: 0;

  visibility: hidden;

  z-index: -1;

}

.tj-service-item-two .service-icon-box {

  position: relative;

  z-index: 1;

}

.tj-service-item-two .service-icon-box .item-shape {

  position: absolute;

  bottom: 0;

  left: 50%;

  -webkit-transform: translateX(-50%);

      -ms-transform: translateX(-50%);

          transform: translateX(-50%);

  width: 92px;

  height: 18px;

  -webkit-mask-image: url(../images/shape/service-hover.svg);

          mask-image: url(../images/shape/service-hover.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-primary);

}

.tj-service-item-two .service-icon-box .service-icon {

  position: relative;

  z-index: 1;

  padding: 33px 38px;

  top: -40px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-service-item-two .service-icon-box .service-icon {

    padding: 30px;

  }

}

.tj-service-item-two .service-icon-box .service-icon i {

  width: 98px;

  height: 98px;

  line-height: 110px;

  text-align: center;

  display: inline-block;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  border-radius: 50%;

  font-size: 50px;

  border: 5px solid var(--tj-color-common-white);

  -webkit-box-shadow: 0px 0px 30.784px 0px rgba(0, 0, 0, 0.15);

          box-shadow: 0px 0px 30.784px 0px rgba(0, 0, 0, 0.15);

  position: relative;

}

@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-service-item-two .service-icon-box .service-icon i {

    width: 70px;

    height: 70px;

    line-height: 70px;

    font-size: 35px;

  }

}

.tj-service-item-two .service-icon-box .service-icon .hover-shape-border {

  position: relative;

}

.tj-service-item-two .service-icon-box .service-icon .border-shadow {

  content: "";

  display: block;

  position: absolute;

  z-index: 9;

}

.tj-service-item-two .service-icon-box .service-icon .icon-shape {

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-service-item-two .service-icon-box .service-icon .icon-shape .shadow-1 {

  top: 0;

  left: 0;

  background: rgba(57, 202, 110, 0.5);

  width: 174px;

  height: 2px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-service-item-two .service-icon-box .service-icon .icon-shape .shadow-1 {

    width: 130px;

  }

}

.tj-service-item-two .service-icon-box .service-icon .icon-shape .shadow-2 {

  top: 0;

  left: 0;

  background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, rgba(57, 202, 110, 0.5)), color-stop(64%, rgba(21, 22, 37, 0)));

  background: linear-gradient(to bottom, rgba(57, 202, 110, 0.5) -100%, rgba(21, 22, 37, 0) 64%);

  width: 2px;

  height: 300px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-service-item-two .service-icon-box .service-icon .icon-shape .shadow-2 {

    height: 250px;

  }

}

.tj-service-item-two .service-icon-box .service-icon .icon-shape .shadow-3 {

  top: 0;

  right: 0;

  background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, rgba(57, 202, 110, 0.5)), color-stop(64%, rgba(21, 22, 37, 0)));

  background: linear-gradient(to bottom, rgba(57, 202, 110, 0.5) -100%, rgba(21, 22, 37, 0) 64%);

  width: 2px;

  height: 300px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-service-item-two .service-icon-box .service-icon .icon-shape .shadow-3 {

    height: 250px;

  }

}

.tj-service-item-two .service-content {

  max-width: 396px;

}

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

  .tj-service-item-two .service-content {

    padding-left: 15px;

  }

}

.tj-service-item-two .service-content .title {

  margin-bottom: 11px;

}

@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-item-two .service-content .title {

    font-size: 24px;

  }

}

.tj-service-item-two .service-content .title a {

  color: var(--tj-color-heading-primary);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-service-item-two .service-content .title a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-two .service-content .desc p {

  font-size: 17.24px;

  margin-bottom: 0;

  line-height: 1.8;

}

@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-service-item-two .service-content .desc p {

    font-size: 16px;

  }

}

.tj-service-item-two .service-content .read-more {

  margin-top: 17px;

}

.tj-service-item-two .service-content .read-more .link {

  font-size: 20px;

  color: var(--tj-color-theme-secondary);

  font-weight: var(--tj-fw-medium);

  display: inline-block;

}

.tj-service-item-two .service-content .read-more .link i {

  position: relative;

  top: 4px;

  padding-left: 10px;

  color: var(--tj-color-theme-secondary);

}

.tj-service-item-two .service-content .read-more .link:hover {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-two .service-content .read-more .link:hover i {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-two:hover {

  background-color: var(--tj-color-common-white);

}

.tj-service-item-two:hover::before {

  opacity: 1;

  visibility: visible;

}

.tj-service-item-two:hover .icon-shape .shadow-1 {

  background: var(--tj-color-theme-primary);

}

.tj-service-item-two:hover .icon-shape .shadow-2 {

  background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, var(--tj-color-theme-primary)), color-stop(64%, rgba(21, 22, 37, 0)));

  background: linear-gradient(to bottom, var(--tj-color-theme-primary) -100%, rgba(21, 22, 37, 0) 64%);

}

.tj-service-item-two:hover .icon-shape .shadow-3 {

  background: -webkit-gradient(linear, left top, left bottom, color-stop(-100%, var(--tj-color-theme-primary)), color-stop(64%, rgba(21, 22, 37, 0)));

  background: linear-gradient(to bottom, var(--tj-color-theme-primary) -100%, rgba(21, 22, 37, 0) 64%);

}



.tj-service-item-three {

  margin-bottom: 30px;

  background: var(--tj-color-grey-2);

  position: relative;

  z-index: 1;

  overflow: hidden;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

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

  .tj-service-item-three {

    margin-bottom: 60px;

  }

}

.tj-service-item-three .service-image {

  position: relative;

}

.tj-service-item-three .service-image img {

  width: 100%;

}

.tj-service-item-three .service-image .service-icon {

  position: absolute;

  bottom: -65px;

  left: 0;

  z-index: 1;

  padding: 25px;

}

.tj-service-item-three .service-image .service-icon::before {

  position: absolute;

  content: "";

  width: 296px;

  height: 100%;

  top: -42%;

  left: -105%;

  background: var(--tj-color-heading-primary);

  border: 3px solid var(--tj-color-theme-primary);

  border-radius: 112.891px 0px 0px 112.891px;

  z-index: 2;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  -webkit-transform: rotate(-135deg);

      -ms-transform: rotate(-135deg);

          transform: rotate(-135deg);

}

.tj-service-item-three .service-image .service-icon i {

  width: 82px;

  height: 82px;

  line-height: 82px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  font-size: 40px;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  border: 4px solid var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

}

.tj-service-item-three .service-content {

  padding: 85px 30px 30px;

}

.tj-service-item-three .service-content .title {

  margin-bottom: 10px;

}

.tj-service-item-three .service-content .title a {

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-service-item-three .service-content .title a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-three .service-content .desc {

  margin-bottom: 15px;

  max-width: 322px;

}

.tj-service-item-three .service-content .desc p {

  margin-bottom: 0;

  font-size: 14px;

  line-height: 1.8;

}

.tj-service-item-three .service-content .read-more a {

  color: var(--tj-color-theme-secondary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-service-item-three .service-content .read-more a i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  position: relative;

  top: 5px;

  margin-left: 10px;

  color: var(--tj-color-theme-secondary);

}

.tj-service-item-three .service-content .read-more a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-three .service-content .read-more a:hover i {

  color: var(--tj-color-theme-primary);

}

.tj-service-item-three:hover {

  background-color: var(--tj-color-light-2);

  -webkit-box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.1);

          box-shadow: 4px 4px 30px 0px rgba(0, 0, 0, 0.1);

}

.tj-service-item-three:hover .service-icon::before {

  background-color: var(--tj-color-theme-primary);

  border-color: var(--tj-color-heading-primary);

}



.service-item-four {

  border-radius: 20px;

  border: 1px solid var(--tj-color-border-4);

  margin-bottom: 30px;

  padding: 10px 10px;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.service-item-four .title {

  margin-bottom: 20px;

}

.service-item-four .title span {

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-light);

}

.service-item-four .desc {

  margin-bottom: 20px;

}

.service-item-four .desc p {

  line-height: 1.9;

}

.service-item-four .desc p:last-child {

  margin-bottom: 0;

}

.service-item-four .check-list {

  margin-bottom: 30px;

}

.service-item-four .check-list ul li {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 15px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 5px;

}

.service-item-four .check-list ul li:last-child {

  margin-bottom: 0;

}

.service-item-four .check-list ul li span {

  display: -webkit-inline-box;

  display: -ms-inline-flexbox;

  display: inline-flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  width: 16px;

  height: 16px;

  line-height: 1;

  font-size: 10px;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  border-radius: 50%;

}

.service-item-four .service-image {

}

.service-item-four .service-image img {

  border-radius: 12px;

}

.service-item-four:hover {

  border-color: var(--tj-color-theme-primary);

}

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

  .service-item-four {

    padding: 25px 15px;

  }

}

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

  .service-item-four .service-image img {

    width: 100%;

  }

}



/* !END: Theme Service CSS */

/**----------------------------------------

START: Theme Process CSS

----------------------------------------*/

.tj-process-section {

  padding-bottom: 90px;

}

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

  .tj-process-section {

    padding-bottom: 50px;

  }

}

.tj-process-section.tj-process-page {

  padding-top: 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-process-section.tj-process-page {

    padding-top: 80px;

  }

}

.tj-process-section .tj-sec-heading {

  margin-bottom: 60px;

}

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

  .tj-process-section .tj-sec-heading {

    margin-bottom: 40px;

  }

}



.tj-process-section-two {

  padding-top: 120px;

  padding-bottom: 90px;

  position: relative;

  z-index: 2;

}

.tj-process-section-two::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 50%;

  top: 0;

  left: 0;

  background: var(--tj-color-theme-secondary);

  z-index: -1;

}

.tj-process-section-two .tj-sec-heading-three {

  max-width: 710px;

  margin-bottom: 60px;

}

.tj-process-section-two .tj-sec-heading-three .sub-title {

  color: var(--tj-color-common-white);

}

.tj-process-section-two .tj-sec-heading-three .title {

  color: var(--tj-color-theme-primary);

}

.tj-process-section-two .tj-sec-heading-three .title span {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-elight);

}

.tj-process-section-two .process-left-sec-shape {

  position: absolute;

  top: 0;

  left: 0;

  max-width: 890px;

  width: 100%;

  z-index: -1;

}

.tj-process-section-two .process-right-sec-shape {

  position: absolute;

  top: 0;

  right: 0;

  max-width: 650px;

  width: 100%;

  z-index: -1;

}

.tj-process-section-two .process-right-sec-shape1 {

  position: absolute;

  top: 28%;

  left: 0;

  max-width: 190px;

  width: 100%;

  z-index: -1;

}

.tj-process-section-two .process-left-sec-shape1 {

  position: absolute;

  top: 50px;

  right: 0;

  max-width: 110px;

  width: 100%;

  z-index: -1;

}

.tj-process-section-two .process-shape-two {

  position: absolute;

  top: 40%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 6%;

  max-width: 135px;

  width: 100%;

}

.tj-process-section-two .process-shape-three {

  position: absolute;

  top: 40%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 60px;

  max-width: 135px;

  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-process-section-two {

    padding-top: 80px;

    padding-bottom: 50px;

  }

  .tj-process-section-two .tj-sec-heading-three {

    margin-bottom: 30px;

  }

  .tj-process-section-two .process-images img {

    width: 100%;

  }

  .tj-process-section-two .process-right-sec-shape1,

  .tj-process-section-two .process-shape-three,

  .tj-process-section-two .process-shape-two,

  .tj-process-section-two .process-left-sec-shape1,

  .tj-process-section-two .process-right-sec-shape,

  .tj-process-section-two .process-left-sec-shape {

    display: none;

  }

}



.tj-process-item {

  position: relative;

  z-index: 1;

  -webkit-transition: 0.5s;

  transition: 0.5s;

  margin-bottom: 30px;

}

.tj-process-item::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: -webkit-gradient(linear, left bottom, left top, from(rgba(50, 60, 69, 0.8)), to(rgba(50, 60, 69, 0)));

  background: linear-gradient(0deg, rgba(50, 60, 69, 0.8) 0%, rgba(50, 60, 69, 0) 100%);

}

.tj-process-item img {

  width: 100%;

}

.tj-process-item .process-content {

  position: absolute;

  left: 0;

  bottom: 30px;

  width: 100%;

  z-index: 3;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 17px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-transition: 0.5s;

  transition: 0.5s;

  background: transparent;

  padding-left: 30px;

}

@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-item .process-content {

    gap: 14px;

  }

}

.tj-process-item .process-content .process-icon {

  width: 67px;

  height: 90px;

  line-height: 90px;

  display: inline-block;

  text-align: center;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  font-size: 37px;

  position: relative;

  bottom: 0;

  -webkit-transition: 0.5s;

  transition: 0.5s;

}

@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-item .process-content .process-icon {

    width: 60px;

    height: 80px;

    line-height: 80px;

    font-size: 35px;

  }

}

.tj-process-item .process-content .process-title .title {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}

.tj-process-item:hover .process-content {

  padding-left: 15px;

  background-color: var(--tj-color-common-white);

  bottom: 0;

}

.tj-process-item:hover .process-content .process-icon {

  bottom: 30px;

}

.tj-process-item:hover .process-content .process-title .title {

  color: var(--tj-color-common-black);

}



.tj-process-item-two {

  margin-bottom: 30px;

  position: relative;

  z-index: 2;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

  overflow: hidden;

  border-radius: 15px;

}

.tj-process-item-two::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  bottom: -100px;

  top: 0;

  left: 0;

  background: -webkit-gradient(linear, left bottom, left top, from(var(--tj-color-theme-primary)), color-stop(87.9%, rgba(50, 60, 69, 0)));

  background: linear-gradient(0deg, var(--tj-color-theme-primary) 0%, rgba(50, 60, 69, 0) 87.9%);

  opacity: 0;

  visibility: hidden;

}

.tj-process-item-two .process-images img {

  border-radius: 15px;

}

.tj-process-item-two .process-content {

  position: absolute;

  left: 30px;

  bottom: 30px;

}

.tj-process-item-two .process-content .process-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: 90px;

  height: 90px;

  border-radius: 10px;

  line-height: 1;

  font-size: 50px;

  border: 1px solid var(--tj-color-common-white);

  background: rgba(57, 202, 110, 0.14);

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

  color: var(--tj-color-common-white);

  margin-bottom: 20px;

}

.tj-process-item-two .process-content .process-icon i {

  position: relative;

  top: 2px;

}

.tj-process-item-two .process-content .process-title .title {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}

.tj-process-item-two .process-content .process-title .title span {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-light);

}

.tj-process-item-two:hover .process-content .process-icon {

  color: var(--tj-color-common-white);

  background-color: rgba(57, 202, 110, 0.14);

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

}

.tj-process-item-two:hover::before {

  opacity: 1;

  visibility: visible;

  bottom: 0;

}



/* !END: Theme Process CSS */

/**----------------------------------------

START: Theme Team CSS

----------------------------------------*/

.tj-team-section {

  background: var(--tj-color-theme-bg);

  padding-top: 120px;

  padding-bottom: 90px;

}

.tj-team-section.style-2 {

  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-team-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}



.tj-team-section-two {

  padding-top: 120px;

  padding-bottom: 90px;

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 2;

}

.tj-team-section-two .sec-left-shape {

  position: absolute;

  top: 12%;

  left: 0;

  max-width: 195px;

  width: 100%;

  z-index: -1;

}

.tj-team-section-two .sec-right-shape {

  position: absolute;

  bottom: 18%;

  right: 0;

  z-index: -1;

}

.tj-team-section-two .team-content-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: end;

      -ms-flex-align: end;

          align-items: end;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

}

.tj-team-section-two .team-content-area .tj-sec-heading-three {

  max-width: 688px;

  width: 100%;

  margin-left: 0;

}

.tj-team-section-two .team-content-area .service-button .tj-primary-btn {

  font-size: 15px;

  padding: 13px 25px;

  border-radius: 5px;

}

@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-two {

    padding-top: 80px;

    padding-bottom: 50px;

  }

  .tj-team-section-two .sec-right-shape,

  .tj-team-section-two .sec-left-shape {

    display: none;

  }

}



.tj-team-page {

  padding-top: 120px;

  padding-bottom: 90px;

}

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

  .tj-team-page {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}



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

  margin-bottom: 60px;

}

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

  .team-content-area {

    margin-bottom: 40px;

  }

}

.team-content-area .tj-sec-heading {

  margin-left: 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) {

  .team-content-area .tj-sec-heading {

    margin-bottom: 30px;

  }

}

.team-content-area .tj-sec-heading .sec-title {

  margin-bottom: 0;

}

.team-content-area .right-content {

  max-width: 530px;

}

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

  .team-content-area .right-content {

    max-width: 390px;

  }

}

.team-content-area .right-content p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.1;

}

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

  .team-content-area .right-content p {

    line-height: 1.9;

    font-size: 16px;

  }

}



.tj-team-item {

  position: relative;

  z-index: 1;

  margin-bottom: 30px;

}

.tj-team-item .team-image {

  margin-bottom: 20px;

}

.tj-team-item .team-image img {

  width: 100%;

}

.tj-team-item .team-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  padding: 0 20px;

}

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

  .tj-team-item .team-content {

    padding: 0;

  }

}

.tj-team-item .team-content .team-auother .title {

  margin-bottom: 5px;

}

.tj-team-item .team-content .team-auother .sub-title {

  font-size: 14px;

}

.tj-team-item .team-share .team-social {

  position: absolute;

  right: 20px;

  bottom: 10px;

  display: inline-block;

  margin: 0;

  z-index: 2;

}

.tj-team-item .team-share .team-social li {

  position: relative;

  list-style-type: none;

  display: inline-block;

}

.tj-team-item .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: 40px;

  height: 40px;

  background: var(--tj-color-theme-secondary);

  color: var(--tj-color-common-white);

  font-size: 18px;

  position: relative;

  overflow: hidden;

}

.tj-team-item .team-share .team-social li .team-social-icon {

  position: absolute;

  right: 0;

  bottom: 0;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all ease 0.8s;

  transition: all ease 0.8s;

  z-index: 4;

}

.tj-team-item .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: 40px;

  height: 40px;

  font-size: 18px;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  -webkit-transition: all ease 0.4s;

  transition: all ease 0.4s;

}

.tj-team-item .team-share .team-social li .team-social-icon li a i {

  width: 20px;

  height: 20px;

  line-height: 20px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  color: var(--tj-color-theme-primary);

  background: var(--tj-color-common-white);

  font-size: 10px;

}

.tj-team-item .team-share .team-social li:hover .team-social-icon {

  opacity: 1;

  visibility: visible;

  bottom: 0;

  z-index: 5;

  -webkit-transform: scaleY(1);

      -ms-transform: scaleY(1);

          transform: scaleY(1);

}



.tj-team-item-two {

  position: relative;

  z-index: 1;

  margin-bottom: 30px;

}

.tj-team-item-two .team-image {

  margin-bottom: 20px;

}

.tj-team-item-two .team-image img {

  width: 100%;

  border-radius: 13px;

}

.tj-team-item-two .team-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  padding: 0 20px;

}

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

  .tj-team-item-two .team-content {

    padding: 0;

  }

}

.tj-team-item-two .team-content .team-auother .title {

  margin-bottom: 5px;

}

.tj-team-item-two .team-content .team-auother .sub-title {

  font-size: 18px;

}

.tj-team-item-two .team-share .team-social {

  position: absolute;

  right: 20px;

  bottom: 10px;

  display: inline-block;

  margin: 0;

  z-index: 2;

}

.tj-team-item-two .team-share .team-social li {

  position: relative;

  list-style-type: none;

  display: inline-block;

}

.tj-team-item-two .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: 45px;

  height: 45px;

  background: var(--tj-color-theme-secondary);

  color: var(--tj-color-common-white);

  font-size: 18px;

  position: relative;

  overflow: hidden;

}

.tj-team-item-two .team-share .team-social li .team-social-icon {

  position: absolute;

  right: 0;

  bottom: 0;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all ease 0.8s;

  transition: all ease 0.8s;

  z-index: 2;

}

.tj-team-item-two .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: 45px;

  height: 45px;

  font-size: 18px;

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  -webkit-transition: all ease 0.4s;

  transition: all ease 0.4s;

}

.tj-team-item-two .team-share .team-social li .team-social-icon li a i {

  width: 25px;

  height: 25px;

  line-height: 25px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  color: var(--tj-color-theme-primary);

  background: var(--tj-color-common-white);

  font-size: 10px;

}

.tj-team-item-two .team-share .team-social li:hover .team-social-icon {

  opacity: 1;

  visibility: visible;

  bottom: 0;

  z-index: 5;

  -webkit-transform: scaleY(1);

      -ms-transform: scaleY(1);

          transform: scaleY(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-team-item-two .team-content .team-auother .title {

    font-size: 25px;

  }

  .tj-team-item-two .team-share .team-social li i {

    width: 45px;

    height: 45px;

  }

  .tj-team-item-two .team-share .team-social li .team-social-icon li a {

    width: 45px;

    height: 45px;

  }

}



/* !END: Theme Team CSS */

/**----------------------------------------

START: Theme Testimonial CSS

----------------------------------------*/

.tj-testimonial-section {

  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-testimonial-section {

    padding-top: 80px;

    padding-bottom: 80px;

  }

}

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

  .tj-testimonial-section .tj-sec-heading {

    text-align: center;

  }

}

.tj-testimonial-section .testimonial-navigation {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  font-size: 25px;

  line-height: 1;

  color: var(--tj-color-theme-secondary);

  gap: 20px;

  margin-top: 40px;

}

.tj-testimonial-section .testimonial-navigation .testimonial-next,

.tj-testimonial-section .testimonial-navigation .testimonial-prev {

  display: inline-block;

}

.tj-testimonial-section .testimonial-navigation .testimonial-next i,

.tj-testimonial-section .testimonial-navigation .testimonial-prev i {

  line-height: 1;

}

.tj-testimonial-section .testimonial-navigation .testimonial-next:hover,

.tj-testimonial-section .testimonial-navigation .testimonial-prev:hover {

  color: var(--tj-color-theme-primary);

}

.tj-testimonial-section .testimonial-navigation .testimonial-prev {

  -webkit-transform: scaleX(-1);

      -ms-transform: scaleX(-1);

          transform: scaleX(-1);

}

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

  .tj-testimonial-section .testimonial-navigation {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

  }

}

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

  .tj-testimonial-section .testimonial-navigation {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    margin-top: 30px;

  }

}



.tj-testimonial-section-two {

  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-testimonial-section-two {

    padding-top: 80px;

    padding-bottom: 60px;

  }

}



.tj-testimonial-section-three {

  background: var(--tj-color-theme-bg);

  padding-top: 120px;

  padding-bottom: 110px;

  position: relative;

  z-index: 2;

}

.tj-testimonial-section-three .sec-left-shape {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 0;

  max-width: 240px;

  width: 100%;

  z-index: -1;

}

.tj-testimonial-section-three .sec-right-shape {

  position: absolute;

  bottom: 0;

  left: 45px;

  z-index: -1;

  max-width: 200px;

  width: 100%;

}

.tj-testimonial-section-three .tj-sec-heading-three {

  max-width: 580px;

  width: 100%;

  margin-left: 0;

  margin-bottom: -60px;

}

.tj-testimonial-section-three .tj-testimonial-slider3 {

  position: relative;

  z-index: 2;

  padding-top: 110px;

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 20px;

  min-height: 57px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  position: absolute;

  top: 0;

  right: 0;

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-prev,

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-next {

  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: 55px;

  height: 40px;

  line-height: 1;

  border-radius: 10px;

  border: 1px solid rgba(57, 202, 110, 0.5);

  color: rgba(57, 202, 110, 0.5);

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-prev i,

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-next i {

  color: rgba(57, 202, 110, 0.5);

  position: relative;

  top: 2px;

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-prev:hover,

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-next:hover {

  border-color: var(--tj-color-theme-primary);

  color: var(--tj-color-theme-primary);

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-prev:hover i,

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-next:hover i {

  color: var(--tj-color-theme-primary);

}

.tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation .testimonial-prev i {

  -webkit-transform: rotate(-180deg);

      -ms-transform: rotate(-180deg);

          transform: rotate(-180deg);

  position: relative;

  top: -1px;

}

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

  .tj-testimonial-section-three .tj-testimonial-slider3 .testimonial-navigation {

    display: none;

  }

}

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

  .tj-testimonial-section-three .tj-testimonial-slider3 {

    padding-top: 85px;

  }

}

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

  .tj-testimonial-section-three .tj-testimonial-slider3 {

    padding-bottom: 55px;

  }

}

.tj-testimonial-section-three .swiper-pagination {

  display: none;

}

.tj-testimonial-section-three .swiper-pagination .swiper-pagination-bullet {

  width: 15px;

  height: 15px;

  border-radius: 50%;

  background: var(--tj-color-theme-primary);

}

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

  .tj-testimonial-section-three .swiper-pagination {

    display: block;

  }

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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-testimonial-section-three .sec-left-shape {

    top: 20%;

    max-width: 90px;

  }

  .tj-testimonial-section-three .sec-right-shape {

    max-width: 90px;

  }

}

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

  .tj-testimonial-section-three {

    padding-top: 80px;

    padding-bottom: 70px;

  }

}

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

  .tj-testimonial-section-three .tj-sec-heading-three {

    margin-bottom: -90px;

  }

  .tj-testimonial-section-three .sec-right-shape,

  .tj-testimonial-section-three .sec-left-shape {

    display: none;

  }

}



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

  right: 55px;

  position: relative;

  z-index: 1;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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) {

  .thumb-content-area {

    right: 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) {

  .thumb-content-area {

    margin-bottom: 50px;

  }

}

.thumb-content-area .active-image {

  position: relative;

  max-width: 536px;

  width: 100%;

  height: 635px;

  z-index: 4;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .thumb-content-area .active-image {

    max-width: 498px;

  }

}

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

  .thumb-content-area .active-image {

    max-width: 406px;

  }

}

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

  .thumb-content-area .active-image {

    max-width: 325px;

  }

}

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

  .thumb-content-area .active-image {

    max-width: 100%;

  }

}

.thumb-content-area .active-image .testimonial_active_img {

  position: absolute;

  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  visibility: hidden;

  opacity: 0;

  z-index: 3;

}

.thumb-content-area .active-image .testimonial_active_img img {

  width: 100%;

  height: 100%;

  -o-object-fit: cover;

     object-fit: cover;

}

.thumb-content-area .active-image .testimonial_active_img.active {

  visibility: visible;

  opacity: 1;

}

.thumb-content-area .thumb-testimonial-slider {

  width: 500px;

  position: absolute;

  left: 84.3%;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

  .thumb-content-area .thumb-testimonial-slider {

    left: 78.3%;

  }

}

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

  .thumb-content-area .thumb-testimonial-slider {

    left: 74.3%;

  }

}

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

  .thumb-content-area .thumb-testimonial-slider {

    left: 71.3%;

  }

}

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

  .thumb-content-area .thumb-testimonial-slider {

    left: 77%;

  }

}

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

  .thumb-content-area .thumb-testimonial-slider {

    margin-top: -2px;

    position: initial;

    -webkit-transform: translateY(0);

        -ms-transform: translateY(0);

            transform: translateY(0);

    width: 370px;

  }

}

@media (max-width: 575px) {

  .thumb-content-area .thumb-testimonial-slider {

    width: 270px;

  }

}

.thumb-content-area .thumb-testimonial-slider .swiper-wrapper {

  display: block;

}

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

  .thumb-content-area .thumb-testimonial-slider .swiper-wrapper {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

  }

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide {

  margin-bottom: 40px;

  margin-right: 0;

}

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

  .thumb-content-area .thumb-testimonial-slider .swiper-slide {

    margin-bottom: 30px;

  }

}

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

  .thumb-content-area .thumb-testimonial-slider .swiper-slide {

    margin-bottom: 0px;

  }

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide:last-child {

  margin-bottom: 0;

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image {

  position: relative;

  z-index: 1;

  max-width: 120px;

  width: 100%;

  cursor: pointer;

}

@media (max-width: 575px) {

  .thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image {

    max-width: 75px;

  }

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.4);

  border-radius: 0px 100px 100px 0px;

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image img {

  border-radius: 0px 100px 100px 0px;

}

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

  .thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image {

    max-width: 100px;

    height: 120px;

  }

  .thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image::before {

    border-radius: 0px 0px 100px 100px;

  }

  .thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image img {

    height: 100%;

    width: 100%;

    -o-object-fit: cover;

       object-fit: cover;

    border-radius: 0px 0px 100px 100px;

  }

}

@media (max-width: 575px) {

  .thumb-content-area .thumb-testimonial-slider .swiper-slide .thumb-image {

    max-width: 75px;

    height: 90px;

  }

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide-thumb-active .thumb-image {

  cursor: pointer;

}

.thumb-content-area .thumb-testimonial-slider .swiper-slide-thumb-active .thumb-image::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) {

  .tj-testimonial-item {

    text-align: center;

  }

}

.tj-testimonial-item .desc {

  max-width: 670px;

  margin-bottom: 30px;

}

.tj-testimonial-item .desc p {

  margin-bottom: 0;

  font-weight: var(--tj-fw-medium);

  font-family: var(--tj-ff-heading);

  font-size: 22px;

  line-height: 2.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-testimonial-item .desc p {

    font-size: 18px;

  }

}

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

  .tj-testimonial-item .desc p {

    line-height: 1.9;

  }

}

.tj-testimonial-item .testimonial-auother {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 20px;

}

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

  .tj-testimonial-item .testimonial-auother {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

  }

}

.tj-testimonial-item .testimonial-auother .auother-image {

  max-width: 61px;

  width: 100%;

  border-radius: 50%;

}

.tj-testimonial-item .testimonial-auother .auother-image img {

  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-testimonial-item .testimonial-auother .auother-header {

    text-align: left;

  }

}

.tj-testimonial-item .testimonial-auother .auother-header .title {

  margin-bottom: 5px;

  color: var(--tj-color-theme-primary);

}

.tj-testimonial-item .testimonial-auother .auother-header .title .active-text {

  font-weight: var(--tj-fw-light);

  color: var(--tj-color-heading-primary);

}



.testimonial-slider-item {

  margin-bottom: 20px;

}

.testimonial-slider-item .desc {

  max-width: 525px;

  margin-bottom: 40px;

}

.testimonial-slider-item .desc p {

  margin-bottom: 0;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-medium);

  line-height: 2.1;

}

.testimonial-slider-item .testimonial-auother {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 20px;

}

.testimonial-slider-item .testimonial-auother .quote-icon {

  width: 93px;

  height: 78px;

  line-height: 72px;

  background: var(--tj-color-light-2);

  text-align: center;

  border-radius: 0px 100px 100px 0px;

  border: 1px solid var(--tj-color-theme-primary);

}

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

  .testimonial-slider-item .testimonial-auother .quote-icon {

    width: 70px;

    height: 60px;

    line-height: 56px;

  }

}

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

  .testimonial-slider-item .testimonial-auother .quote-icon {

    font-size: 25px;

  }

}

.testimonial-slider-item .testimonial-auother .testimonial-text .title {

  font-weight: var(--tj-fw-sbold);

  margin-bottom: 5px;

}

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

  .testimonial-slider-item .testimonial-auother .testimonial-text .title {

    font-size: 25px;

  }

}

.testimonial-slider-item .testimonial-auother .testimonial-text .title span {

  color: var(--tj-color-theme-primary);

}

.testimonial-slider-item .testimonial-auother .testimonial-text .sub-title {

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

  font-family: var(--tj-ff-heading);

}



.testimonial-slider-item-two {

  border-radius: 10px;

  border: 1px solid var(--tj-color-grey-3);

  padding: 50px 15px 20px 20px;

  position: relative;

  z-index: 1;

  margin-bottom: 10px;

  -webkit-transition: all 0.4s ease-in-out 0s;

  transition: all 0.4s ease-in-out 0s;

}

.testimonial-slider-item-two .testimonial-rating {

  margin-bottom: 15px;

}

.testimonial-slider-item-two .testimonial-rating .star-ratings {

  unicode-bidi: bidi-override;

  color: var(--tj-color-light-9);

  font-size: 25px;

  line-height: 1;

  position: relative;

  margin: 0;

  padding: 0;

}

.testimonial-slider-item-two .testimonial-rating .star-ratings .fill-ratings {

  padding: 0;

  position: absolute;

  z-index: 1;

  display: block;

  top: 0;

  left: 0;

  overflow: hidden;

}

.testimonial-slider-item-two .testimonial-rating .star-ratings .fill-ratings span {

  display: inline-block;

}

.testimonial-slider-item-two .testimonial-rating .star-ratings .empty-ratings {

  padding: 0;

  display: block;

  z-index: 0;

}

.testimonial-slider-item-two .desc {

  margin-bottom: 20px;

}

.testimonial-slider-item-two .desc p {

  margin-bottom: 0;

  line-height: 1.6;

  font-size: 14px;

}

.testimonial-slider-item-two .testimonial-auother {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 12px;

}

.testimonial-slider-item-two .testimonial-auother .avator-images {

  max-width: 56px;

  width: 100%;

  border-radius: 50%;

  border: 3px solid var(--tj-color-theme-secondary);

  -webkit-transition: all 0.4s ease-in-out 0s;

  transition: all 0.4s ease-in-out 0s;

}

.testimonial-slider-item-two .testimonial-auother .avator-images img {

  width: 100%;

}

.testimonial-slider-item-two .testimonial-auother .avator-name .title {

  margin-bottom: 2px;

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

}

.testimonial-slider-item-two .testimonial-auother .avator-name span {

  font-size: 12px;

}

.testimonial-slider-item-two .testimonial-code2,

.testimonial-slider-item-two .testimonial-code {

  position: absolute;

  top: 20px;

  left: 20px;

  z-index: -1;

}

.testimonial-slider-item-two:hover {

  background-color: var(--tj-color-theme-secondary);

  border-color: var(--tj-color-theme-secondary);

}

.testimonial-slider-item-two:hover .desc p {

  color: var(--tj-color-common-white);

}

.testimonial-slider-item-two:hover .testimonial-auother .avator-images {

  border: 3px solid var(--tj-color-theme-primary);

}

.testimonial-slider-item-two:hover .testimonial-auother .avator-name .title {

  color: var(--tj-color-theme-primary);

}

.testimonial-slider-item-two:hover .testimonial-auother .avator-name span {

  color: var(--tj-color-common-white);

}

@media (max-width: 575px) {

  .testimonial-slider-item-two {

    background-color: var(--tj-color-theme-secondary);

    border-color: var(--tj-color-theme-secondary);

  }

  .testimonial-slider-item-two .desc p {

    color: var(--tj-color-common-white);

  }

  .testimonial-slider-item-two .testimonial-auother .avator-images {

    border: 3px solid var(--tj-color-theme-primary);

  }

  .testimonial-slider-item-two .testimonial-auother .avator-name .title {

    color: var(--tj-color-theme-primary);

  }

  .testimonial-slider-item-two .testimonial-auother .avator-name span {

    color: var(--tj-color-common-white);

  }

}



.testimonial-wrapper {

  text-align: right;

  position: relative;

}

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

  .testimonial-wrapper {

    text-align: center;

    margin-top: 50px;

  }

}

.testimonial-wrapper .quote-icon {

  position: absolute;

  top: -34px;

  right: -34px;

  width: 78px;

  height: 78px;

  line-height: 78px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  background: var(--tj-color-theme-primary);

  border: 2px solid var(--tj-color-common-white);

  -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

          box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

  z-index: 3;

}

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

  .testimonial-wrapper .quote-icon {

    top: -15px;

    right: -15px;

  }

}

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

  .testimonial-wrapper .quote-icon {

    top: -45px;

    right: -15px;

  }

}

@media (max-width: 575px) {

  .testimonial-wrapper .quote-icon {

    top: -45px;

    right: 0;

  }

}

.testimonial-wrapper .quote-icon img {

  max-width: 35px;

  width: 100%;

}

.testimonial-wrapper .testimonial-image {

  max-width: 440px;

  width: 100%;

  margin-left: auto;

  overflow: hidden;

}



/* !END: Theme Testimonial CSS */

/**----------------------------------------

START: Theme FAQ CSS

----------------------------------------*/

.tj-faq-section {

  padding-top: 120px;

  padding-bottom: 100px;

  background: var(--tj-color-theme-bg);

}

@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: 70px;

  }

}

.tj-faq-section .tj-sec-heading-four {

  margin-bottom: 60px;

}

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

  .tj-faq-section .tj-sec-heading-four {

    margin-bottom: 40px;

  }

}



.accordion-item {

  border: none;

  -webkit-box-shadow: none;

          box-shadow: none;

  position: relative;

  z-index: 9;

  background: transparent;

}

.accordion-item .accordion-header {

  background: var(--tj-color-common-white);

  margin-bottom: 15px;

}

.accordion-item .accordion-header .accordion-button {

  font-size: 22px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  padding: 25px 55px 25px 25px;

  background-color: transparent;

  position: relative;

  color: var(--tj-color-theme-primary);

}

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

  .accordion-item .accordion-header .accordion-button {

    font-size: 19px;

  }

}

.accordion-item .accordion-header .accordion-button.collapsed {

  color: var(--tj-color-common-black);

}

.accordion-item .accordion-header .accordion-button:before {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 20px;

  content: "+";

  font-family: "Font Awesome 6 Pro";

  font-weight: 400;

  width: 25px;

  height: 25px;

  font-size: 13px;

  color: var(--tj-color-theme-primary);

  line-height: 25px;

  text-align: center;

  border-radius: 50%;

  border: 1px solid var(--tj-color-theme-primary);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.accordion-item .accordion-header .accordion-button:not(.collapsed) {

  -webkit-box-shadow: none;

          box-shadow: none;

}

.accordion-item .accordion-header .accordion-button:not(.collapsed):before {

  content: "\f068";

}

.accordion-item .accordion-header .accordion-button:focus {

  -webkit-box-shadow: none;

          box-shadow: none;

}

.accordion-item .accordion-header .accordion-button:after {

  display: none;

}

.accordion-item .accordion-body {

  padding: 5px 0 25px 25px;

}

.accordion-item .accordion-body strong {

  font-size: 18px;

  font-weight: 400;

  color: var(--tj-color-text-body);

  line-height: 2.1;

}

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

  .accordion-item .accordion-body strong {

    font-size: 16px;

    line-height: 1.9;

  }

}



.accordion-item-two {

  border: none;

  -webkit-box-shadow: none;

          box-shadow: none;

  position: relative;

  z-index: 9;

  background: transparent;

}

.accordion-item-two .accordion-header {

  background: var(--tj-color-theme-secondary);

  margin-bottom: 10px;

}

.accordion-item-two .accordion-header .accordion-button {

  font-size: 22px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  padding: 25px 55px 25px 25px;

  background-color: transparent;

  position: relative;

  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) {

  .accordion-item-two .accordion-header .accordion-button {

    font-size: 19px;

  }

}

.accordion-item-two .accordion-header .accordion-button.collapsed {

  color: var(--tj-color-common-black);

  background: var(--tj-color-light-1);

}

.accordion-item-two .accordion-header .accordion-button:before {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 20px;

  content: "+";

  font-family: "Font Awesome 6 Pro";

  font-weight: 400;

  width: 25px;

  height: 25px;

  font-size: 13px;

  color: var(--tj-color-theme-primary);

  line-height: 23px;

  text-align: center;

  border-radius: 50%;

  border: 0.5px solid var(--tj-color-theme-primary);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.accordion-item-two .accordion-header .accordion-button:not(.collapsed) {

  -webkit-box-shadow: none;

          box-shadow: none;

}

.accordion-item-two .accordion-header .accordion-button:not(.collapsed):before {

  content: "\f068";

  border: 0.5px solid var(--tj-color-common-white);

  color: var(--tj-color-common-white);

}

.accordion-item-two .accordion-header .accordion-button:focus {

  -webkit-box-shadow: none;

          box-shadow: none;

}

.accordion-item-two .accordion-header .accordion-button:after {

  display: none;

}

.accordion-item-two .accordion-body {

  padding: 5px 0 25px 20px;

  max-width: 620px;

  width: 100%;

}

.accordion-item-two .accordion-body strong {

  font-size: 18px;

  font-weight: 400;

  color: var(--tj-color-text-body);

  max-width: 597px;

  line-height: 2.1;

}

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

  .accordion-item-two .accordion-body strong {

    font-size: 16px;

    line-height: 1.9;

  }

}



/* !END: Theme FAQ CSS */

/**----------------------------------------

START: Theme Blog CSS

----------------------------------------*/

.tj-blog-section {

  padding-top: 120px;

  padding-bottom: 70px;

}

.tj-blog-section .tj-sec-heading-four {

  margin-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-blog-section {

    padding-top: 80px;

    padding-bottom: 30px;

  }

}



.tj-blog-section-two {

  padding-top: 120px;

  padding-bottom: 90px;

}

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

  .tj-blog-section-two {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-blog-section-two .tj-sec-heading-two {

  margin-left: 0;

}

.tj-blog-section-two .tj-sec-heading-two .title {

  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-blog-section-two .tj-sec-heading-two .title {

    margin-bottom: 15px;

  }

}



.tj-blog-section-three {

  padding-top: 120px;

  padding-bottom: 90px;

}

.tj-blog-section-three .tj-sec-heading-three {

  margin-bottom: 60px;

}

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

  .tj-blog-section-three {

    padding-top: 80px;

    padding-bottom: 50px;

  }

  .tj-blog-section-three .tj-sec-heading-three {

    margin-bottom: 40px;

  }

}



.blog-top-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;

  margin-bottom: 60px;

}

@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) {

  .blog-top-content-area {

    margin-bottom: 40px;

  }

}

.blog-top-content-area .blog-desc {

  max-width: 435px;

}

.blog-top-content-area .blog-desc p {

  margin-bottom: 0;

  line-height: 2.1;

}

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

  .blog-top-content-area .blog-desc p {

    line-height: 1.9;

    font-size: 16px;

  }

}



.blog-content-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: end;

      -ms-flex-align: end;

          align-items: end;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 60px;

}

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

  .blog-content-area {

    margin-bottom: 40px;

  }

}

.blog-content-area .tj-sec-heading {

  margin-left: 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) {

  .blog-content-area .tj-sec-heading {

    margin-bottom: 30px;

  }

}

.blog-content-area .tj-sec-heading .sec-title {

  margin-bottom: 0;

}

.blog-content-area .blog-desc {

  max-width: 485px;

}

.blog-content-area .blog-desc p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.1;

}

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

  .blog-content-area .blog-desc p {

    line-height: 1.9;

    font-size: 16px;

  }

}



.tj-blog-item {

  margin-bottom: 50px;

}

.tj-blog-item .blog-image {

  margin-bottom: 20px;

}

.tj-blog-item .blog-image a {

  display: inline-block;

  width: 100%;

}

.tj-blog-item .blog-image a img {

  width: 100%;

}

.tj-blog-item .blog-text-area {

  padding-left: 20px;

}

.tj-blog-item .blog-text-area .blog-content {

  max-width: 312px;

}

.tj-blog-item .blog-text-area .blog-content .title {

  line-height: 1.6;

}

.tj-blog-item .blog-text-area .blog-content .title a {

  -webkit-transform-origin: 0.4s;

      -ms-transform-origin: 0.4s;

          transform-origin: 0.4s;

}

.tj-blog-item .blog-text-area .blog-content .title a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-blog-item .blog-text-area .blog-content .tj-blog-button {

  margin-top: 30px;

}

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

  .tj-blog-item .blog-text-area .blog-content .tj-blog-button {

    margin-top: 20px;

  }

}



.tj-blog-item-two {

  margin-bottom: 30px;

  position: relative;

  z-index: 1;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  overflow: hidden;

}

.tj-blog-item-two .blog-image a {

  display: inline-block;

  width: 100%;

}

.tj-blog-item-two .blog-image a img {

  width: 100%;

}

.tj-blog-item-two .blog-content {

  background: var(--tj-color-common-white);

  padding: 20px;

  margin-top: -20px;

  max-width: 85%;

  width: 100%;

  position: relative;

  z-index: 1;

  margin-top: -36px;

  margin-left: auto;

  margin-right: auto;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

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

  .tj-blog-item-two .blog-content {

    max-width: 90%;

  }

}

.tj-blog-item-two .blog-content .title {

  line-height: 1.6;

}

.tj-blog-item-two .blog-content .title a {

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-blog-item-two .blog-content .title a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-blog-item-two .blog-content .tj-blog-button {

  margin-top: 30px;

}

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

  .tj-blog-item-two .blog-content .tj-blog-button {

    margin-top: 20px;

  }

}

.tj-blog-item-two:hover .blog-content {

  background-color: var(--tj-color-light-2);

}



.tj-blog-item-three {

  margin-bottom: 30px;

  position: relative;

  z-index: 1;

  -webkit-transition: 0.3s;

  transition: 0.3s;

  overflow: hidden;

}

.tj-blog-item-three .blog-image a {

  display: inline-block;

  width: 100%;

}

.tj-blog-item-three .blog-image a img {

  width: 100%;

  border-radius: 10px;

}

.tj-blog-item-three .blog-content {

  background: var(--tj-color-common-white);

  padding: 10px;

  max-width: 90%;

  width: 100%;

  position: relative;

  z-index: 1;

  margin-top: -36px;

  margin-left: auto;

  margin-right: auto;

  -webkit-transition: 0.3s;

  transition: 0.3s;

  border-radius: 10px;

  text-align: center;

}

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

  .tj-blog-item-three .blog-content {

    max-width: 100%;

  }

}

.tj-blog-item-three .blog-content .blog-meta ul {

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

}

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

  .tj-blog-item-three .blog-content .blog-meta ul {

    gap: 10px;

  }

}

.tj-blog-item-three .blog-content .title {

  line-height: 1.6;

  margin-bottom: 20px;

}

.tj-blog-item-three .blog-content .title a {

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-blog-item-three .blog-content .title a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-blog-item-three .blog-content .read-more-button .read-more {

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

}

.tj-blog-item-three:hover .blog-content {

  background-color: var(--tj-color-theme-bg);

}



.blog-meta {

  margin-bottom: 15px;

}

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

  .blog-meta {

    margin-bottom: 10px;

  }

}

.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: 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) {

  .blog-meta ul {

    gap: 10px;

  }

}

.blog-meta ul li i {

  font-size: 17px;

  margin-right: 5px;

  position: relative;

  top: 3px;

}



.blog-meta-two {

  margin-bottom: 30px;

  padding-bottom: 15px;

  border-bottom: 1px solid var(--tj-color-border-2);

}

.blog-meta-two 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: 30px;

}

@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) {

  .blog-meta-two ul {

    gap: 10px;

  }

}

.blog-meta-two ul li a {

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.blog-meta-two ul li a:hover {

  color: var(--tj-color-theme-primary);

}

.blog-meta-two ul li i {

  font-size: 17px;

  margin-right: 10px;

  position: relative;

  top: 2px;

}



/* !END: Theme Blog CSS */

/**----------------------------------------

START: Theme Blog CSS

----------------------------------------*/

.tj-blog-grid-section {

  padding-top: 120px;

  padding-bottom: 90px;

  position: relative;

}

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

  .tj-blog-grid-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-blog-grid-section .blog-content-area {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: end;

      -ms-flex-align: end;

          align-items: end;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 60px;

}

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

  .tj-blog-grid-section .blog-content-area {

    margin-bottom: 40px;

  }

}

.tj-blog-grid-section .blog-content-area .tj-sec-heading-four {

  margin-left: 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-blog-grid-section .blog-content-area .tj-sec-heading-four {

    margin-bottom: 30px;

  }

}

.tj-blog-grid-section .blog-content-area .tj-sec-heading-four .sec-title {

  margin-bottom: 0;

}

.tj-blog-grid-section .blog-content-area .blog-desc {

  max-width: 485px;

}

.tj-blog-grid-section .blog-content-area .blog-desc p {

  margin-bottom: 0;

  font-size: 18px;

}



.tj-blog-details {

  padding-top: 110px;

  padding-bottom: 120px;

  position: relative;

  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-blog-details {

    padding-top: 80px;

    padding-bottom: 60px;

  }

}



.sidebar-wrapper {

  position: relative;

  z-index: 3;

}

.sidebar-wrapper .blog-thumb-image {

  margin-bottom: 20px;

}

.sidebar-wrapper .details-title {

  margin-bottom: 15px;

}

.sidebar-wrapper .details-title .title {

  font-size: 30px;

  margin-bottom: 0;

}

.sidebar-wrapper .blog-video-area {

  margin-bottom: 50px;

}

.sidebar-wrapper .blog-video-area .video-title {

  margin-bottom: 26px;

}

.sidebar-wrapper .blog-video-area .video-title p {

  margin-bottom: 0;

}

.sidebar-wrapper .blog-video-area .video-box {

  margin-bottom: 15px;

}

.sidebar-wrapper .blog-video-area .video-image {

  position: relative;

}

.sidebar-wrapper .blog-video-area .video-image img {

  border-radius: 20px;

  width: 100%;

}

.sidebar-wrapper .blog-video-area .video-image a {

  display: inline-block;

}

.sidebar-wrapper .blog-video-area .video-image .video-play {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  width: 70px;

  height: 70px;

  line-height: 80px;

  border-radius: 50%;

  display: inline-block;

  text-align: center;

  background: -webkit-gradient(linear, left top, right top, from(var(--tj-color-theme-secondary)), to(var(--tj-color-theme-primary)));

  background: linear-gradient(90deg, var(--tj-color-theme-secondary) 0%, var(--tj-color-theme-primary) 100%);

}

.sidebar-wrapper .blog-video-area .video-image .video-play i {

  color: var(--tj-color-common-white);

  font-size: 30px;

}

.sidebar-wrapper .blog-video-area .check-list {

  margin-top: 15px;

}

.sidebar-wrapper .blog-video-area .check-list ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.sidebar-wrapper .blog-video-area .check-list ul li {

  color: var(--tj-color-light-3);

  font-weight: var(--tj-fw-sbold);

  font-family: var(--tj-ff-body);

  margin-bottom: 10px;

}

.sidebar-wrapper .blog-video-area .check-list ul li:last-child {

  margin-bottom: 0;

}

.sidebar-wrapper .blog-video-area .check-list ul li i {

  width: 18px;

  height: 18px;

  line-height: 18px;

  font-size: 12px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  font-weight: var(--tj-fw-sbold);

  color: var(--tj-color-common-white);

  background: var(--tj-color-light-3);

  margin-right: 5px;

}

.sidebar-wrapper .blog-video-area p {

  margin-bottom: 0;

}

.sidebar-wrapper .tj-tags-post {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  border-top: 2px solid var(--tj-color-light-7);

  border-bottom: 2px solid var(--tj-color-light-7);

  padding-top: 25px;

  padding-bottom: 25px;

  margin-bottom: 50px;

}

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

  .sidebar-wrapper .tj-tags-post .tagcloud {

    margin-bottom: 20px;

  }

}

.sidebar-wrapper .tj-tags-post .tagcloud span {

  font-size: 22px;

  font-weight: var(--tj-fw-bold);

  color: var(--tj-color-heading-primary);

  font-family: var(--tj-ff-heading);

  margin-right: 20px;

}

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

  .sidebar-wrapper .tj-tags-post .tagcloud span {

    margin-right: 10px;

  }

}

.sidebar-wrapper .tj-tags-post .tagcloud a {

  background: var(--tj-color-light-2);

}

.sidebar-wrapper .tj-tags-post .tagcloud a:hover {

  color: var(--tj-color-common-white);

  background-color: var(--tj-color-theme-primary);

  border-color: transparent;

}

.sidebar-wrapper .tj-tags-post .post-share ul {

  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;

}

@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) {

  .sidebar-wrapper .tj-tags-post .post-share ul {

    gap: 10px;

  }

}

.sidebar-wrapper .tj-tags-post .post-share ul li span {

  font-size: 22px;

  font-weight: var(--tj-fw-bold);

  color: var(--tj-color-theme-secondary);

  font-family: var(--tj-ff-heading);

  margin-right: 15px;

}

.sidebar-wrapper .tj-tags-post .post-share ul li a {

  display: inline-block;

  width: 32px;

  height: 32px;

  line-height: 34px;

  text-align: center;

  border-radius: 50%;

  background: var(--tj-color-theme-secondary);

  color: var(--tj-color-common-white);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.sidebar-wrapper .tj-tags-post .post-share ul li a:hover {

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}



.tj-latest-comment {

  margin-bottom: 50px;

}

.tj-latest-comment .title {

  color: var(--tj-color-heading-primary);

  font-size: 30px;

  margin-bottom: 34px;

}

.tj-latest-comment .comment-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;

  margin-bottom: 25px;

}

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

  .tj-latest-comment .comment-content-area {

    display: block;

  }

}

.tj-latest-comment .comment-content-area.comment-two {

  padding-left: 75px;

}

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

  .tj-latest-comment .comment-content-area.comment-two {

    padding-left: 25px;

  }

}

.tj-latest-comment .comment-content-area .comment-auother {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

}

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

  .tj-latest-comment .comment-content-area .comment-auother {

    margin-bottom: 20px;

  }

}

.tj-latest-comment .comment-avatar {

  max-width: 60px;

  width: 100%;

  margin-right: 15px;

}

.tj-latest-comment .comment-text {

  padding-right: 45px;

}

.tj-latest-comment .comment-text .auother-header {

  margin-bottom: 25px;

}

.tj-latest-comment .comment-text .auother-header .title-link {

  margin-bottom: 5px;

}

.tj-latest-comment .comment-text .auother-header .title-link a {

  font-size: 16px;

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-bold);

}

.tj-latest-comment .comment-text .auother-header span {

  font-size: 14px;

}

.tj-latest-comment .comment-text p {

  margin-bottom: 0;

  font-size: 15px;

}

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

  .tj-latest-comment .comment-reply {

    padding-left: 75px;

  }

}

.tj-latest-comment .comment-reply a {

  background: var(--tj-color-theme-primary);

  font-size: 12px;

  color: var(--tj-color-common-white);

  font-family: var(--tj-ff-body);

  padding: 6px 20px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-latest-comment .comment-reply a:hover {

  background-color: var(--tj-color-common-black);

  color: var(--tj-color-common-white);

}



.tj-comment-respond {

  padding: 40px;

  background: rgba(236, 255, 243, 0.35);

  border: 2px solid rgba(57, 202, 110, 0.35);

}

@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-comment-respond {

    padding: 20px;

  }

}

.tj-comment-respond .comment-header {

  margin-bottom: 24px;

}

.tj-comment-respond .comment-header .title {

  color: var(--tj-color-theme-primary);

  font-size: 30px;

  margin-bottom: 15px;

}

.tj-comment-respond .comment-header p {

  margin-bottom: 0;

}

.tj-comment-respond .form-input {

  margin-bottom: 20px;

}

.tj-comment-respond .form-input textarea,

.tj-comment-respond .form-input input[type=email],

.tj-comment-respond .form-input input[type=text] {

  border: 1px solid var(--tj-color-theme-primary);

  padding: 17px 20px;

  font-size: 14px;

  background: rgba(236, 255, 243, 0.35);

}

.tj-comment-respond .form-input textarea::-webkit-input-placeholder, .tj-comment-respond .form-input input[type=email]::-webkit-input-placeholder, .tj-comment-respond .form-input input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea::-moz-placeholder, .tj-comment-respond .form-input input[type=email]::-moz-placeholder, .tj-comment-respond .form-input input[type=text]::-moz-placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea:-ms-input-placeholder, .tj-comment-respond .form-input input[type=email]:-ms-input-placeholder, .tj-comment-respond .form-input input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea::-ms-input-placeholder, .tj-comment-respond .form-input input[type=email]::-ms-input-placeholder, .tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea::placeholder,

.tj-comment-respond .form-input input[type=email]::placeholder,

.tj-comment-respond .form-input input[type=text]::placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea::-ms-input-placeholder,

.tj-comment-respond .form-input input[type=email]::-ms-input-placeholder,

.tj-comment-respond .form-input input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.tj-comment-respond .form-input textarea {

  min-height: 154px;

  resize: none;

}

.tj-comment-respond .tj-blog-details-button .tj-primary-btn {

  width: 100%;

  font-size: 15px;

  font-weight: var(--tj-fw-bold);

  font-family: var(--tj-ff-heading);

}



.tj-blog-widget {

  background: var(--tj-color-light-2);

  margin-bottom: 24px;

  padding: 40px;

  position: relative;

  z-index: 3;

}

@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-blog-widget {

    padding: 30px 20px;

  }

}

.tj-blog-widget .side-title {

  font-size: 30px;

  color: var(--tj-color-theme-primary);

  position: relative;

  margin-bottom: 35px;

}

.tj-blog-widget .side-title::before {

  position: absolute;

  content: "";

  bottom: -10px;

  left: 0;

  width: 89.48px;

  height: 3px;

  background: var(--tj-color-heading-primary);

}

@media (max-width: 575px) {

  .tj-blog-widget .side-title::before {

    width: 50px;

  }

}



.sidebar-search form {

  position: relative;

  width: 100%;

}

.sidebar-search form input[type=text] {

  width: 100%;

  padding: 16px 20px;

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

}

.sidebar-search form input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form input[type=text]::-moz-placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form input[type=text]::placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-text-body);

}

.sidebar-search form :focus {

  outline: none;

  border: none;

  -webkit-box-shadow: 0 0 0;

  box-shadow: 0 0 0;

}

.sidebar-search form button {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 20px;

}

.sidebar-search form button i {

  font-size: 18px;

  -webkit-transition: all 0.2s ease-in-out 0s;

  transition: all 0.2s ease-in-out 0s;

  color: var(--tj-color-text-body);

  font-weight: var(--tj-fw-medium);

}

.sidebar-search form button i:hover {

  color: var(--tj-color-theme-primary);

}



.sidebar-catagory ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.sidebar-catagory ul li {

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 10px;

  font-family: var(--tj-ff-heading);

}

.sidebar-catagory ul li:last-child {

  margin-bottom: 0;

}

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

}

.sidebar-catagory ul li a span {

  width: 20px;

  height: 20px;

  line-height: 20px;

  border-radius: 50%;

  display: inline-block;

  font-size: 12px;

  text-align: center;

  color: var(--tj-color-common-white);

  background: var(--tj-color-common-black);

  font-weight: var(--tj-fw-bold);

}

.sidebar-catagory ul li a span i {

  font-weight: var(--tj-fw-bold);

}

.sidebar-catagory ul li a:hover {

  color: var(--tj-color-theme-primary);

}

.sidebar-catagory ul li a:hover span {

  background-color: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}



.sidebar-recent-post .single-post {

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 30px;

}

.sidebar-recent-post .single-post:last-child {

  margin-bottom: 0;

}

.sidebar-recent-post .single-post .post-image {

  max-width: 90px;

  width: 100%;

}

.sidebar-recent-post .single-post .post-image a {

  display: inline-block;

  width: 100%;

}

.sidebar-recent-post .single-post .post-content {

  width: calc(100% - 110px);

}

.sidebar-recent-post .single-post .post-content .sub-title {

  font-size: 14px;

  font-weight: var(--tj-fw-bold);

  display: block;

  margin-bottom: 10px;

}

.sidebar-recent-post .single-post .post-content .sub-title i {

  color: var(--tj-color-light-3);

  font-size: 18px;

  margin-right: 15px;

}

.sidebar-recent-post .single-post .post-content .title-link {

  margin-bottom: 0;

}

.sidebar-recent-post .single-post .post-content .title-link a {

  -webkit-transition: 0.4s;

  transition: 0.4s;

  font-size: 20px;

}

.sidebar-recent-post .single-post .post-content .title-link a:hover {

  color: var(--tj-color-theme-primary);

}

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

  .sidebar-recent-post .single-post .post-content {

    width: 100%;

  }

}



.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: 9px;

}

.tagcloud a {

  background: transparent;

  font-size: 15px;

  color: var(--tj-color-common-black);

  padding: 4px 10px;

  border: 1px solid var(--tj-color-theme-primary);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tagcloud a:hover {

  color: var(--tj-color-common-white);

  background-color: var(--tj-color-theme-primary);

  border-color: transparent;

}



.details-item {

  margin-bottom: 69px;

}

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

  .details-item {

    margin-bottom: 50px;

  }

}

.details-item.last-item {

  margin-bottom: 49px;

}

.details-item .details-title .title {

  font-size: 30px;

  margin-bottom: 20px;

}

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

  .details-item .details-title .title {

    font-size: 22px;

  }

}

.details-item p {

  font-size: 18px;

  margin-bottom: 0;

  line-height: 2.1;

}

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

  .details-item p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.details-item .blog-button {

  margin-top: 30px;

}

.details-item .blog-thumb-image {

  position: relative;

  z-index: 1;

}

.details-item .blog-thumb-image .tj-video-area {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: 2;

}

.details-item .blog-thumb-image .tj-video-area .video-box {

  background: rgba(50, 60, 69, 0.2);

  border-radius: 50%;

}

.details-item .wrapper-navigation .swiper-button-next,

.details-item .wrapper-navigation .swiper-button-prev {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  color: var(--tj-color-common-white);

  font-size: 16px;

  z-index: 1;

  -webkit-transition: 0.2s;

  transition: 0.2s;

  font-weight: var(--tj-fw-medium);

  -webkit-transform: rotate(-180deg);

      -ms-transform: rotate(-180deg);

          transform: rotate(-180deg);

  background: var(--tj-color-theme-primary);

  width: 60px;

  height: 60px;

  line-height: 60px;

  border-radius: 50%;

  left: 30px;

}

.details-item .wrapper-navigation .swiper-button-next::before,

.details-item .wrapper-navigation .swiper-button-prev::before {

  position: absolute;

  content: "\f105";

  font-family: "Font Awesome 6 Pro";

  text-align: center;

  display: inline-block;

  border-radius: 50%;

  width: 30px;

  height: 30px;

  line-height: 28px;

  border: 2px solid var(--tj-color-common-white);

}

.details-item .wrapper-navigation .swiper-button-next:hover,

.details-item .wrapper-navigation .swiper-button-prev:hover {

  color: var(--tj-color-common-white);

}

.details-item .wrapper-navigation .swiper-button-next {

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

  right: 30px;

  left: auto;

}

.details-item .wrapper-navigation .swiper-button-next::before {

  content: "\f105";

}

.details-item .wrapper-navigation .swiper-button-prev:after,

.details-item .wrapper-navigation .swiper-button-next:after {

  display: none;

}



.details-item-two {

  margin-bottom: 30px;

}

.details-item-two .details-title .title {

  font-size: 50px;

  margin-bottom: 15px;

}

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

  .details-item-two .details-title .title {

    font-size: 38px;

  }

}

@media (max-width: 575px) {

  .details-item-two .details-title .title {

    font-size: 28px;

  }

}

.details-item-two p {

  margin-bottom: 10px;

}

.details-item-two p:last-child {

  margin-bottom: 0;

}

.details-item-two .details-wrapper {

  margin-top: 30px;

}

.details-item-two .details-wrapper .wrapper-image {

  margin-bottom: 20px;

}

.details-item-two .details-wrapper .title {

  margin-bottom: 20px;

}

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

  .details-item-two .details-wrapper .title {

    font-size: 26px;

  }

}



blockquote {

  background: var(--tj-color-theme-primary);

  position: relative;

  padding: 30px 30px 25px;

  margin-bottom: 30px;

  margin-top: 30px;

  z-index: 3;

}

blockquote::before {

  content: "\f10d";

  font-family: "Font Awesome 6 Pro";

  background-size: contain;

  display: inline-block;

  font-size: 35px;

  color: var(--tj-color-common-white);

  width: 68px;

  height: 68px;

  line-height: 68px;

  border-radius: 50%;

  border: 1.5px solid var(--tj-color-common-white);

  background: var(--tj-color-heading-primary);

  text-align: center;

  margin-bottom: 20px;

  -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

          box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

}

blockquote p {

  color: var(--tj-color-common-white);

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-medium);

}

blockquote cite {

  color: var(--tj-color-common-white);

  font-family: var(--tj-ff-body);

  font-weight: var(--tj-fw-bold);

  position: relative;

  padding-left: 85px;

}

blockquote cite::before {

  position: absolute;

  content: "";

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 0;

  width: 62px;

  height: 2px;

  background: var(--tj-color-common-white);

}



.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: 24px;

}

.blog-pagination ul li .page-numbers {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  width: 47px;

  height: 47px;

  border: 1px solid var(--tj-color-theme-primary);

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

  font-size: 17px;

  background: var(--tj-color-light-2);

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-primary);

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.blog-pagination ul li .page-numbers i {

  line-height: 1;

  font-weight: var(--tj-fw-bold);

  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: transparent;

  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: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {

  .tj-main-sidebar {

    margin-top: 50px;

  }

}



/* !END: Theme Blog CSS */

/**----------------------------------------

START: Theme Video CSS

----------------------------------------*/

.tj-video-section {

  padding-bottom: 120px;

  padding-top: 120px;

  position: relative;

  z-index: 1;

}

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

  .tj-video-section {

    padding-bottom: 80px;

    padding-top: 80px;

  }

}

.tj-video-section::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  height: 50%;

  width: 100%;

  background: var(--tj-color-theme-bg);

  z-index: 2;

}

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

  .tj-video-section .tj-video-area .video-image img {

    height: 200px;

    -o-object-fit: cover;

       object-fit: cover;

  }

}

.tj-video-section .video-sec-shape {

  position: absolute;

  top: 0;

  right: 0;

}

.tj-video-section .video-sec-shape .video-shape3 {

  position: absolute;

  right: 50px;

  top: 215px;

  z-index: 5;

}

.tj-video-section .video-sec-shape .video-shape3 .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 90px;

}

.tj-video-section .video-sec-shape .video-shape4 {

  position: absolute;

  right: 125px;

  top: 290px;

  z-index: 5;

}

.tj-video-section .video-sec-shape .video-shape4 .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 70px;

}

.tj-video-section .video-sec-shape .video-shape5 {

  position: absolute;

  left: 0;

  top: 290px;

  z-index: 5;

}

.tj-video-section .video-sec-shape .video-shape5 .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 70px;

}

@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-video-section .video-sec-shape {

    display: none;

  }

}

.tj-video-section .video-sec-shape2 {

  position: absolute;

  top: 0;

  left: 0;

}

.tj-video-section .video-sec-shape2 .video-shape5 {

  position: absolute;

  left: 170px;

  top: 275px;

  z-index: 5;

}

.tj-video-section .video-sec-shape2 .video-shape5 .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 90px;

}

.tj-video-section .video-sec-shape2 .video-shape6 {

  position: absolute;

  left: 70px;

  top: 340px;

  z-index: 5;

}

.tj-video-section .video-sec-shape2 .video-shape6 .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 70px;

}

@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-video-section .video-sec-shape2 {

    display: none;

  }

}



.tj-video-area {

  position: relative;

  z-index: 4;

}

.tj-video-area .video-image {

  position: relative;

  z-index: 1;

}

.tj-video-area .video-image::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: url(../images/shape/video-bg.svg);

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center;

  z-index: 2;

}

.tj-video-area .video-box {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  z-index: 3;

}

.tj-video-area .video-box .video-icon {

  border: 1px solid rgba(255, 255, 255, 0.4);

  padding: 20px;

  border-radius: 50%;

  display: inline-block;

  position: relative;

  font-size: 30px;

  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-video-area .video-box .video-icon {

    font-size: 20px;

  }

}

.tj-video-area .video-box .video-icon::before {

  position: absolute;

  content: "";

  width: 90px;

  height: 90px;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  border: 1px solid rgba(255, 255, 255, 0.6);

  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-video-area .video-box .video-icon::before {

    width: 70px;

    height: 70px;

  }

}

.tj-video-area .video-box .popup-videos-button {

  border: 1px solid rgba(255, 255, 255, 0.8);

  width: 68px;

  height: 68px;

  line-height: 68px;

  border-radius: 50%;

  display: inline-block;

  text-align: center;

  position: relative;

  z-index: 3;

}

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

  .tj-video-area .video-box .popup-videos-button {

    width: 50px;

    height: 50px;

    line-height: 50px;

  }

}

.tj-video-area .video-shape {

  position: absolute;

  left: 20%;

  bottom: 0;

  z-index: 5;

}

.tj-video-area .video-shape .shape-1 {

  position: absolute;

  top: -90px;

  left: -75px;

  max-width: 150px;

}

@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-video-area .video-shape {

    display: none;

  }

}

.tj-video-area .video-shape2 {

  position: absolute;

  left: 10%;

  bottom: -65px;

  z-index: 5;

}

.tj-video-area .video-shape2 .shape-1 {

  position: absolute;

  top: -80px;

  left: -60px;

  max-width: 120px;

}

@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-video-area .video-shape2 {

    display: none;

  }

}



.tj-video-area .pulse {

  -webkit-animation: pulse-animation 2s infinite;

          animation: pulse-animation 2s infinite;

}



@-webkit-keyframes pulse-animation {

  0% {

    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);

            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);

  }

  100% {

    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);

            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);

  }

}



@keyframes pulse-animation {

  0% {

    -webkit-box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);

            box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.5);

  }

  100% {

    -webkit-box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);

            box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);

  }

}

/* !END: Theme Video CSS */

/**----------------------------------------

START: Theme Gallery CSS

----------------------------------------*/

.tj-gallery-section {

  background: var(--tj-color-theme-bg);

  position: relative;

  z-index: 1;

}

.tj-gallery-section .tj-sec-heading .sec-title {

  margin-bottom: 15px;

}

.tj-gallery-section .gallery-navigation .swiper-button-next,

.tj-gallery-section .gallery-navigation .swiper-button-prev {

  position: absolute;

  top: 60%;

  left: 50px;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  color: var(--tj-color-common-white);

  font-size: 20px;

  font-weight: var(--tj-fw-elight);

  z-index: 1;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  border: 1px solid var(--tj-color-common-white);

  border-radius: 50%;

  width: 40px;

  height: 40px;

  line-height: 40px;

  display: inline-block;

  text-align: center;

}

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

  .tj-gallery-section .gallery-navigation .swiper-button-next,

  .tj-gallery-section .gallery-navigation .swiper-button-prev {

    left: 20px;

  }

}

.tj-gallery-section .gallery-navigation .swiper-button-next::before,

.tj-gallery-section .gallery-navigation .swiper-button-prev::before {

  position: absolute;

  left: 50%;

  -webkit-transform: translateX(-50%);

      -ms-transform: translateX(-50%);

          transform: translateX(-50%);

  content: "\f060";

  font-family: "Font Awesome 6 Pro";

}

.tj-gallery-section .gallery-navigation .swiper-button-next:hover,

.tj-gallery-section .gallery-navigation .swiper-button-prev:hover {

  left: 40px;

}

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

  .tj-gallery-section .gallery-navigation .swiper-button-next:hover,

  .tj-gallery-section .gallery-navigation .swiper-button-prev:hover {

    left: 20px;

  }

}

.tj-gallery-section .gallery-navigation .swiper-button-next {

  right: 50px;

  left: auto;

}

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

  .tj-gallery-section .gallery-navigation .swiper-button-next {

    right: 20px;

  }

}

.tj-gallery-section .gallery-navigation .swiper-button-next::before {

  content: "\f061";

}

.tj-gallery-section .gallery-navigation .swiper-button-next:hover {

  right: 40px;

  left: auto;

}

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

  .tj-gallery-section .gallery-navigation .swiper-button-next:hover {

    right: 20px;

  }

}

.tj-gallery-section .gallery-navigation .swiper-button-prev:after,

.tj-gallery-section .gallery-navigation .swiper-button-next:after {

  display: none;

}



.mfp-fade.mfp-bg {

  opacity: 0;

  -webkit-transition: all 0.1s ease-out;

  transition: all 0.1s ease-out;

}



.mfp-fade.mfp-bg.mfp-ready {

  opacity: 0.8;

}



.mfp-fade.mfp-bg.mfp-removing {

  opacity: 0;

}



.mfp-fade.mfp-wrap .mfp-content {

  opacity: 0;

  -webkit-transition: all 0.1s ease-out;

  transition: all 0.1s ease-out;

}



.mfp-fade.mfp-wrap.mfp-ready .mfp-content {

  opacity: 1;

}



.mfp-fade.mfp-wrap.mfp-removing .mfp-content {

  opacity: 0;

}



.mfp-arrow-right,

.mfp-arrow-left {

  opacity: 1;

}

.mfp-arrow-right::before,

.mfp-arrow-left::before {

  display: none;

}

.mfp-arrow-right::after,

.mfp-arrow-left::after {

  content: "\f061";

  font-family: "Font Awesome 6 Pro";

  display: block;

  width: 0;

  height: 0;

  position: absolute;

  left: 20px;

  top: 0;

  margin-top: 35px;

  margin-left: 35px;

  border: medium inset transparent;

  color: var(--tj-color-common-white);

  font-size: 30px;

  font-weight: var(--tj-fw-elight);

  -webkit-transform: rotate(-180deg);

      -ms-transform: rotate(-180deg);

          transform: rotate(-180deg);

}



.mfp-arrow-right::after {

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

  right: 60px;

  left: auto;

}



.mfp-close {

  width: 45px;

  height: 45px;

  line-height: 45px;

  right: 0;

  top: 0;

  opacity: 1;

  font-size: 30px;

  font-weight: var(--tj-fw-elight);

  font-family: "Font Awesome 6 Pro";

}



.gallery-text {

  margin-bottom: 40px;

}

.gallery-text .gallery-contact {

  color: var(--tj-color-theme-secondary);

  font-size: 18px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-medium);

}

@media (max-width: 575px) {

  .gallery-text .gallery-contact {

    font-size: 15px;

  }

}

.gallery-text .gallery-contact a {

  color: var(--tj-color-theme-primary);

}



.widget_gallery {

  position: relative;

  z-index: 9;

}

.widget_gallery .tj-gallery-item {

  position: relative;

  z-index: 1;

  display: block;

}

.widget_gallery .tj-gallery-item::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background: -webkit-gradient(linear, left top, left bottom, color-stop(7.79%, var(--tj-color-theme-secondary)), color-stop(129.47%, rgba(50, 60, 69, 0)));

  background: linear-gradient(180deg, var(--tj-color-theme-secondary) 7.79%, rgba(50, 60, 69, 0) 129.47%);

  opacity: 0;

  visibility: hidden;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.widget_gallery .tj-gallery-item .image-box {

  width: 100%;

  height: 265px;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}

.widget_gallery .tj-gallery-item .gallery-icon {

  position: absolute;

  top: 50%;

  left: 50%;

  -webkit-transform: translate(-50%, -50%);

      -ms-transform: translate(-50%, -50%);

          transform: translate(-50%, -50%);

  width: 40px;

  height: 40px;

  line-height: 40px;

  border-radius: 50%;

  text-align: center;

  border: 1px solid var(--tj-color-common-white);

  color: var(--tj-color-common-white);

  z-index: 2;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.widget_gallery .tj-gallery-item:hover::before {

  opacity: 1;

  visibility: visible;

}

.widget_gallery .tj-gallery-item:hover .gallery-icon {

  opacity: 1;

  visibility: visible;

}



.tj-subscribe-section {

  background: var(--tj-color-theme-bg);

  padding-top: 120px;

  padding-bottom: 60px;

  position: relative;

  z-index: 1;

}

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

  .tj-subscribe-section {

    padding-top: 80px;

  }

}

.tj-subscribe-section .subscribe-bg-shape .shape-1 {

  position: absolute;

  z-index: 2;

  right: 20%;

  bottom: 0;

}

.tj-subscribe-section .subscribe-bg-shape .shape-two {

  position: absolute;

  right: 8%;

  top: 215px;

  z-index: 5;

}

.tj-subscribe-section .subscribe-bg-shape .shape-two .shape-1 {

  position: absolute;

  top: -10px;

  left: -45px;

  max-width: 90px;

}

.tj-subscribe-section .subscribe-bg-shape .shape-three {

  position: absolute;

  right: 14%;

  top: 260px;

  z-index: 5;

}

.tj-subscribe-section .subscribe-bg-shape .shape-three .shape-1 {

  position: absolute;

  top: -10px;

  left: -35px;

  max-width: 70px;

}

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

  .tj-subscribe-section .subscribe-bg-shape .shape-two {

    right: 3%;

  }

  .tj-subscribe-section .subscribe-bg-shape .shape-three {

    right: 8.5%;

  }

  .tj-subscribe-section .subscribe-bg-shape .shape-1 {

    right: 13%;

  }

}

@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-subscribe-section .subscribe-bg-shape {

    display: none;

  }

}



/* !END: Theme Gallery CSS */

/**----------------------------------------

START: Theme Form CSS

----------------------------------------*/

.form-box-one {

  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: 24px;

}

.form-box-one .input-form {

  max-width: 312px;

  width: 100%;

}

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

  .form-box-one .input-form {

    max-width: 100%;

  }

}

.form-box-one .input-form input[type=email],

.form-box-one .input-form input[type=text] {

  border: 1px solid var(--tj-color-border-2);

  padding: 13px 20px;

}

.form-box-one .input-form input[type=email]::-ms-input-placeholder,

.form-box-one .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .input-form input[type=email]::-webkit-input-placeholder, .form-box-one .input-form input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .input-form input[type=email]::-moz-placeholder, .form-box-one .input-form input[type=text]::-moz-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .input-form input[type=email]:-ms-input-placeholder, .form-box-one .input-form input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .input-form input[type=email]::-ms-input-placeholder, .form-box-one .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .input-form input[type=email]::placeholder,

.form-box-one .input-form input[type=text]::placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-one .subscribe-button .tj-primary-btn {

  padding: 13px 20px 13px 30px;

}



.form-box-two {

  position: relative;

  z-index: 2;

  border-radius: 10px;

  background: rgba(255, 255, 255, 0.1);

  -webkit-backdrop-filter: blur(10px);

          backdrop-filter: blur(10px);

  padding: 40px;

  max-width: 425px;

  width: 100%;

  margin-left: auto;

}

.form-box-two .contact-content {

  margin-bottom: 30px;

}

.form-box-two .contact-content .title {

  color: var(--tj-color-common-white);

  font-size: 35px;

  margin-bottom: 4px;

}

.form-box-two .contact-content span {

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-light);

}

.form-box-two .contact-content p {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}

.form-box-two .input-form {

  position: relative;

  z-index: 2;

  margin-bottom: 20px;

}

.form-box-two .input-form textarea,

.form-box-two .input-form input[type=tel],

.form-box-two .input-form input[type=email],

.form-box-two .input-form input[type=text] {

  border: 1px solid var(--tj-color-border-2);

  padding: 11px 20px 11px 55px;

  width: 100%;

  background: transparent;

  color: var(--tj-color-common-white);

  border-radius: 5px;

}

.form-box-two .input-form textarea::-ms-input-placeholder,

.form-box-two .input-form input[type=tel]::-ms-input-placeholder,

.form-box-two .input-form input[type=email]::-ms-input-placeholder,

.form-box-two .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea::-webkit-input-placeholder, .form-box-two .input-form input[type=tel]::-webkit-input-placeholder, .form-box-two .input-form input[type=email]::-webkit-input-placeholder, .form-box-two .input-form input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea::-moz-placeholder, .form-box-two .input-form input[type=tel]::-moz-placeholder, .form-box-two .input-form input[type=email]::-moz-placeholder, .form-box-two .input-form input[type=text]::-moz-placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea:-ms-input-placeholder, .form-box-two .input-form input[type=tel]:-ms-input-placeholder, .form-box-two .input-form input[type=email]:-ms-input-placeholder, .form-box-two .input-form input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea::-ms-input-placeholder, .form-box-two .input-form input[type=tel]::-ms-input-placeholder, .form-box-two .input-form input[type=email]::-ms-input-placeholder, .form-box-two .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea::placeholder,

.form-box-two .input-form input[type=tel]::placeholder,

.form-box-two .input-form input[type=email]::placeholder,

.form-box-two .input-form input[type=text]::placeholder {

  color: var(--tj-color-grey-3);

}

.form-box-two .input-form textarea {

  min-height: 90px;

}

.form-box-two .input-form span {

  font-size: 20px;

  color: var(--tj-color-grey-3);

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 22px;

  line-height: 1;

}

.form-box-two .input-form.input-textarea span {

  left: 22px;

  top: 25px;

}

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

  .form-box-two .input-form {

    max-width: 100%;

  }

}

.form-box-two .submit-button .tj-primary-btn {

  width: 100%;

  border-radius: 5px;

  padding: 13px 20px;

  font-size: 16px;

}



.form-box-three {

  border-radius: 20px;

  background: #f5f5f7;

  padding: 40px;

  max-width: 535px;

  width: 100%;

}

.form-box-three .contact-content {

  margin-bottom: 20px;

}

.form-box-three .contact-content .title {

  color: var(--tj-color-theme-primary);

  margin-bottom: 10px;

}

.form-box-three .contact-content .title span {

  color: var(--tj-color-theme-secondary);

  font-weight: var(--tj-fw-light);

}

.form-box-three .contact-content p {

  margin-bottom: 0;

}

.form-box-three .input-form {

  position: relative;

  z-index: 2;

  margin-bottom: 10px;

}

.form-box-three .input-form textarea,

.form-box-three .input-form input[type=tel],

.form-box-three .input-form input[type=email],

.form-box-three .input-form input[type=text] {

  border: 1.5px solid var(--tj-color-grey-3);

  padding: 13px 20px 13px 50px;

  width: 100%;

  background: transparent;

  color: var(--tj-color-theme-secondary);

  border-radius: 10px;

}

.form-box-three .input-form textarea::-ms-input-placeholder,

.form-box-three .input-form input[type=tel]::-ms-input-placeholder,

.form-box-three .input-form input[type=email]::-ms-input-placeholder,

.form-box-three .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea::-webkit-input-placeholder, .form-box-three .input-form input[type=tel]::-webkit-input-placeholder, .form-box-three .input-form input[type=email]::-webkit-input-placeholder, .form-box-three .input-form input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea::-moz-placeholder, .form-box-three .input-form input[type=tel]::-moz-placeholder, .form-box-three .input-form input[type=email]::-moz-placeholder, .form-box-three .input-form input[type=text]::-moz-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea:-ms-input-placeholder, .form-box-three .input-form input[type=tel]:-ms-input-placeholder, .form-box-three .input-form input[type=email]:-ms-input-placeholder, .form-box-three .input-form input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea::-ms-input-placeholder, .form-box-three .input-form input[type=tel]::-ms-input-placeholder, .form-box-three .input-form input[type=email]::-ms-input-placeholder, .form-box-three .input-form input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea::placeholder,

.form-box-three .input-form input[type=tel]::placeholder,

.form-box-three .input-form input[type=email]::placeholder,

.form-box-three .input-form input[type=text]::placeholder {

  color: var(--tj-color-grey-1);

}

.form-box-three .input-form textarea {

  padding: 15px 15px;

  resize: none;

  min-height: 126px;

}

.form-box-three .input-form span {

  font-size: 20px;

  position: absolute;

  top: 53%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 15px;

  line-height: 1;

  color: var(--tj-color-theme-primary);

}

.form-box-three label {

  color: var(--tj-color-theme-secondary);

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-medium);

  font-size: 18px;

  display: block;

  margin-bottom: 5px;

}

.form-box-three .wpcf7-form-control .wpcf7-submit .has-spinner  .submit-button .tj-primary-btn {

  border-radius: 8px;

  padding: 15px 30px;

}

@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) {

  .form-box-three {

    padding: 25px 15px;

  }

}



/* !END: Theme Form CSS */

/**----------------------------------------

START: Theme Choose CSS

----------------------------------------*/

.tj-choose-us-section {

  padding-top: 120px;

  padding-bottom: 90px;

}

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

  .tj-choose-us-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-choose-us-section .tj-sec-heading-two {

  max-width: 760px;

  margin-left: 0;

  margin-bottom: 60px;

}

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

  .tj-choose-us-section .tj-sec-heading-two {

    margin-bottom: 40px;

  }

}

.tj-choose-us-section .tj-sec-heading-two .desc p {

  font-size: 18px;

  margin-bottom: 0;

  line-height: 2.1;

}

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

  .tj-choose-us-section .tj-sec-heading-two .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.tj-choose-us-section.choose-us-2 .tj-sec-heading-three {

  max-width: 892px;

  width: 100%;

  margin-bottom: 60px;

}

.tj-choose-us-section.choose-us-2 .tj-sec-heading-three .title {

  margin-bottom: 30px;

}

.tj-choose-us-section.choose-us-2 .tj-sec-heading-three p {

  font-size: 18px;

  line-height: 1.9;

}

.tj-choose-us-section.choose-us-2 .tj-sec-heading-three 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-choose-us-section.choose-us-2 .tj-sec-heading-three {

    margin-bottom: 40px;

  }

  .tj-choose-us-section.choose-us-2 .tj-sec-heading-three .title {

    margin-bottom: 15px;

  }

}



.tj-choose-us-item {

  margin-bottom: 30px;

  padding: 20px 30px 25px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-choose-us-item {

    padding: 20px;

  }

}

.tj-choose-us-item .choose-us-top-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 10px;

}

.tj-choose-us-item .choose-us-top-content .choose-us-icon {

  font-size: 60px;

  color: var(--tj-color-heading-primary);

}

.tj-choose-us-item .choose-us-top-content .choose-us-text span {

  font-size: 50px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  color: rgba(113, 113, 113, 0.2);

}

.tj-choose-us-item .title {

  margin-bottom: 10px;

  line-height: 1.6;

}

.tj-choose-us-item .desc {

  margin-bottom: 8px;

}

.tj-choose-us-item .desc p {

  margin-bottom: 0;

}

.tj-choose-us-item .read-more a {

  color: var(--tj-color-theme-secondary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

}

.tj-choose-us-item .read-more a i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  position: relative;

  top: 5px;

  margin-left: 10px;

  color: var(--tj-color-theme-secondary);

}

.tj-choose-us-item:hover {

  background: var(--tj-color-light-3);

  -webkit-box-shadow: 15px 15px 30px 0px rgba(50, 60, 69, 0.05);

          box-shadow: 15px 15px 30px 0px rgba(50, 60, 69, 0.05);

}

.tj-choose-us-item:hover .choose-us-icon {

  color: var(--tj-color-theme-primary);

}

.tj-choose-us-item:hover .title {

  color: var(--tj-color-theme-primary);

}

.tj-choose-us-item:hover .read-more a {

  color: var(--tj-color-theme-primary);

}

.tj-choose-us-item:hover .read-more a i {

  color: var(--tj-color-theme-primary);

}



.tj-choose-us-item-two {

  margin-bottom: 30px;

  padding: 20px 30px 25px;

  border: 1px solid var(--tj-color-border-4);

  border-radius: 15px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-choose-us-item-two {

    padding: 20px;

  }

}

.tj-choose-us-item-two .choose-us-top-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 20px;

}

.tj-choose-us-item-two .choose-us-top-content .choose-us-icon {

  font-size: 60px;

  color: var(--tj-color-heading-primary);

  line-height: 1;

}

.tj-choose-us-item-two .choose-us-top-content .choose-us-text span {

  font-size: 50px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  color: rgba(113, 113, 113, 0.2);

}

.tj-choose-us-item-two .title {

  margin-bottom: 10px;

  line-height: 1.6;

}

.tj-choose-us-item-two .desc {

  margin-bottom: 10px;

}

.tj-choose-us-item-two .desc p {

  margin-bottom: 0;

}

.tj-choose-us-item-two .read-more a {

  color: var(--tj-color-theme-secondary);

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

}

.tj-choose-us-item-two .read-more a i {

  font-size: 18px;

  font-weight: var(--tj-fw-bold);

  position: relative;

  top: 5px;

  margin-left: 10px;

  color: var(--tj-color-theme-secondary);

}

.tj-choose-us-item-two .read-more a:hover {

  color: var(--tj-color-theme-primary);

}

.tj-choose-us-item-two .read-more a:hover i {

  color: var(--tj-color-theme-primary);

}

.tj-choose-us-item-two:hover {

  border-color: var(--tj-color-theme-primary);

}



/* !END: Theme Choose CSS */

/**----------------------------------------

START: Theme Work CSS

----------------------------------------*/

.tj-work-section {

  background: var(--tj-color-theme-bg);

  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-work-section {

    padding-top: 80px;

    padding-bottom: 80px;

  }

}

.tj-work-section .tj-sec-heading-two {

  max-width: 720px;

  margin-bottom: 60px;

}

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

  .tj-work-section .tj-sec-heading-two {

    margin-bottom: 40px;

  }

}



.tj-work-item.text-end {

  margin-right: 75px;

  margin-left: 0;

}

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

  .tj-work-item.text-end {

    margin-right: 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-work-item.text-end {

    text-align: center !important;

    margin-right: 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) {

  .work-image {

    padding-top: 50px;

    padding-bottom: 50px;

  }

}

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

  .work-image img {

    width: 100%;

  }

}



.tj-work-item {

  margin-bottom: 60px;

  margin-left: 75px;

}

@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-work-item {

    margin-bottom: 30px;

    margin-left: 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-work-item {

    margin-left: 0;

    text-align: center;

  }

}

.tj-work-item:last-child {

  margin-bottom: 0;

}

.tj-work-item .work-icon {

  width: 90px;

  height: 90px;

  line-height: 100px;

  display: inline-block;

  text-align: center;

  background: var(--tj-color-light-3);

  border-radius: 50%;

  font-size: 40px;

  color: var(--tj-color-heading-primary);

  border: 1px solid var(--tj-color-theme-primary);

  margin-bottom: 20px;

}

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

  .tj-work-item .work-icon {

    width: 70px;

    height: 70px;

    line-height: 80px;

    font-size: 30px;

  }

}

.tj-work-item .title {

  margin-bottom: 10px;

}

.tj-work-item .desc p {

  margin-bottom: 0;

}



/* !END: Theme Work CSS */

/**----------------------------------------

START: Theme Price CSS

----------------------------------------*/

.tj-price-section {

  padding-top: 120px;

  padding-bottom: 90px;

  background: var(--tj-color-theme-bg);

}

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

  .tj-price-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-price-section .tj-sec-heading-two {

  max-width: 670px;

  margin-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-price-section .tj-sec-heading-two {

    max-width: 100%;

    margin-bottom: 25px;

  }

}

.tj-price-section .tj-sec-heading-two .desc p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.1;

}

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

  .tj-price-section .tj-sec-heading-two .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}



.price-top-content {

  margin-bottom: 60px;

  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;

}

@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-top-content {

    margin-bottom: 40px;

    display: block;

  }

}



.tj-price-item {

  margin-bottom: 30px;

  border: 1px solid var(--tj-color-border-3);

  background: var(--tj-color-common-white);

  padding: 36px;

  position: relative;

  z-index: 1;

}

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

  .tj-price-item {

    padding: 25px;

  }

}

.tj-price-item .save {

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

  font-size: 14px;

  padding: 6px 15px;

  position: absolute;

  top: 20px;

  right: 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-price-item .save {

    top: 10px;

    right: 10px;

  }

}

.tj-price-item .title {

  margin-bottom: 12px;

}

.tj-price-item .desc {

  margin-bottom: 12px;

}

.tj-price-item .desc p {

  line-height: 1.6;

}

.tj-price-item .price-percent {

  margin-bottom: 20px;

}

.tj-price-item .price-percent .price-number {

  font-size: 50px;

  color: var(--tj-color-theme-secondary);

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  line-height: 1;

  margin-right: 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-price-item .price-percent .price-number {

    font-size: 35px;

    margin-right: 10px;

  }

}

.tj-price-item .price-percent .price-number .price-percent {

  font-size: 16px;

  font-weight: var(--tj-fw-regular);

  color: var(--tj-color-text-body);

}

.tj-price-item .price-button {

  margin-bottom: 30px;

}

.tj-price-item .price-list ul .style-1 {

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-secondary);

  position: relative;

  margin-bottom: 15px;

  z-index: 1;

  padding-left: 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-price-item .price-list ul .style-1 {

    font-size: 16px;

    padding-left: 40px;

  }

}

.tj-price-item .price-list ul .style-1:last-child {

  margin-bottom: 0;

}

.tj-price-item .price-list ul .style-1 i {

  width: 30px;

  height: 30px;

  line-height: 30px;

  text-align: center;

  display: inline-block;

  border-radius: 50%;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  position: absolute;

  left: 0;

  top: 0;

  z-index: 2;

}

.tj-price-item .price-list ul .style-2 {

  font-size: 17px;

  position: relative;

  margin-bottom: 15px;

  z-index: 1;

  padding-left: 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-price-item .price-list ul .style-2 {

    font-size: 16px;

    padding-left: 40px;

  }

}

.tj-price-item .price-list ul .style-2:last-child {

  margin-bottom: 0;

}

.tj-price-item .price-list ul .style-2 i {

  width: 30px;

  height: 30px;

  line-height: 30px;

  text-align: center;

  display: inline-block;

  border-radius: 50%;

  color: var(--tj-color-common-white);

  background: var(--tj-color-grey-3);

  position: absolute;

  left: 0;

  top: 0;

  z-index: 2;

}



.price-switcher {

  border-radius: 10px;

  border: 1px solid var(--tj-color-theme-primary);

  background: var(--tj-color-light-2);

  padding: 10px 11px;

  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;

}

@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-switcher {

    max-width: 250px;

    gap: 10px;

  }

}

.price-switcher span {

  cursor: pointer;

}

.price-switcher .switcher-btn {

  color: var(--tj-color-theme-secondary);

  background: transparent;

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  border-radius: 4px;

  padding: 9px 20px;

}

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

  .price-switcher .switcher-btn {

    padding: 9px 10px;

    font-size: 16px;

  }

}

.price-switcher .switcher-btn.active {

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

}



/* !END: Theme Price CSS */

/**----------------------------------------

START: Theme Value CSS

----------------------------------------*/

.tj-value-section {

  padding-top: 120px;

  padding-bottom: 90px;

  position: relative;

  z-index: 1;

}

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

  .tj-value-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-value-section::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 653px;

  top: 0;

  left: 0;

  background: linear-gradient(306deg, rgba(3, 9, 13, 0.85) 29.81%, rgba(50, 60, 69, 0.72) 94.38%);

  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-value-section::before {

    height: 100%;

  }

}

.tj-value-section::after {

  position: absolute;

  content: "";

  width: 100%;

  height: 653px;

  top: 0;

  left: 0;

  background-image: url(../images/banner/value-bg.jpg);

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

}

@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-value-section::after {

    height: 100%;

  }

}

.tj-value-section .tj-sec-heading-two {

  margin-bottom: 60px;

  position: relative;

  z-index: 3;

}

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

  .tj-value-section .tj-sec-heading-two {

    margin-bottom: 40px;

  }

}

.tj-value-section .tj-sec-heading-two .sub-title {

  color: var(--tj-color-common-white);

}

.tj-value-section .tj-sec-heading-two .title {

  color: var(--tj-color-common-white);

}



.tj-value-item {

  margin-bottom: 30px;

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  padding: 40px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-value-item {

    padding: 30px;

  }

}

.tj-value-item .value-top-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 20px;

}

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

  .tj-value-item .value-top-content {

    margin-bottom: 15px;

  }

}

.tj-value-item .value-top-content .value-icon {

  font-size: 50px;

  color: var(--tj-color-heading-primary);

  line-height: 1;

}

.tj-value-item .value-top-content .value-number .number {

  font-size: 50px;

  font-family: var(--tj-ff-heading);

  font-weight: var(--tj-fw-bold);

  color: rgba(113, 113, 113, 0.2);

}

.tj-value-item .title {

  margin-bottom: 20px;

}

.tj-value-item .desc p {

  margin-bottom: 0;

  line-height: 1.8;

}

.tj-value-item:hover {

  background: var(--tj-color-light-2);

  -webkit-box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.05);

          box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.05);

}



/* !END: Theme Value CSS */

/**----------------------------------------

START: Theme Project CSS

----------------------------------------*/

.tj-project-section {

  padding-top: 120px;

  padding-bottom: 90px;

  background: var(--tj-color-theme-bg);

}

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

  .tj-project-section {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-project-section .tj-sec-heading-two {

  margin-left: 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-project-section .tj-sec-heading-two {

    margin-bottom: 15px;

  }

}

.tj-project-section .tj-sec-heading-two .title {

  margin-bottom: 0;

}



.project-top-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;

  margin-bottom: 60px;

}

@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) {

  .project-top-content-area {

    margin-bottom: 40px;

  }

}

.project-top-content-area .project-desc {

  max-width: 485px;

}

.project-top-content-area .project-desc p {

  margin-bottom: 0;

  font-size: 18px;

  line-height: 2.1;

}

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

  .project-top-content-area .project-desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}



.tj-project-item {

  padding-bottom: 30px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.tj-project-item .project-image {

  position: relative;

  z-index: 1;

}

.tj-project-item .project-image img {

  width: 100%;

}

.tj-project-item .project-image::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: -webkit-gradient(linear, left bottom, left top, from(rgba(24, 24, 24, 0.96)), to(rgba(58, 58, 58, 0)));

  background: linear-gradient(0deg, rgba(24, 24, 24, 0.96) 0%, rgba(58, 58, 58, 0) 100%);

  mix-blend-mode: hard-light;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: 0.4s;

  transition: 0.4s;

  z-index: 2;

}

.tj-project-item .project-image .project-content {

  position: absolute;

  bottom: 35px;

  left: 50px;

  z-index: 2;

  opacity: 1;

  visibility: unset;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@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-item .project-image .project-content {

    left: 30px;

  }

}

.tj-project-item .project-image .project-content .title {

  color: var(--tj-color-common-white);

  margin-bottom: 8px;

  -webkit-transition: 0.1s;

  transition: 0.1s;

}

@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-item .project-image .project-content .title {

    font-size: 25px;

  }

}

.tj-project-item .project-image .project-content .title:hover {

  color: var(--tj-color-theme-primary);

}

.tj-project-item .project-image .project-content .sub-title {

  font-size: 18px;

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  font-family: var(--tj-ff-heading);

}

.tj-project-item:hover .project-image::before {

  opacity: 1;

  visibility: visible;

}

.tj-project-item:hover .project-image .project-content {

  bottom: 50px;

  opacity: 1;

  visibility: visible;

}

@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-item:hover .project-image .project-content {

    bottom: 30px;

  }

}



.tj-project-section-two {

  padding-top: 120px;

  position: relative;

  z-index: 2;

}

.tj-project-section-two .project-sec-shape {

  position: absolute;

  top: 18%;

  right: 14%;

  max-width: 136px;

  width: 100%;

  z-index: -1;

}

.tj-project-section-two .tj-sec-heading-three {

  max-width: 610px;

  width: 100%;

  margin-bottom: 60px;

}

@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-sec-shape {

    right: 5%;

    max-width: 115px;

  }

}

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

  .tj-project-section-two {

    padding-top: 80px;

  }

  .tj-project-section-two .tj-sec-heading-three {

    margin-bottom: 40px;

  }

  .tj-project-section-two .project-sec-shape {

    display: none;

  }

}



.tj-project-item-two {

  position: relative;

  z-index: 2;

  overflow: hidden;

  min-height: 314px;

  max-height: 314px;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.tj-project-item-two::before {

  position: absolute;

  content: "";

  top: 0;

  bottom: -100px;

  width: 100%;

  height: 100%;

  background: -webkit-gradient(linear, left bottom, left top, from(var(--tj-color-theme-primary)), color-stop(87.9%, rgba(50, 60, 69, 0)));

  background: linear-gradient(0deg, var(--tj-color-theme-primary) 0%, rgba(50, 60, 69, 0) 87.9%);

  opacity: 0;

  visibility: hidden;

}

.tj-project-item-two .project-images img {

  width: 100%;

  height: 314px;

  -o-object-fit: cover;

     object-fit: cover;

}

.tj-project-item-two .project-content {

  position: absolute;

  bottom: 0;

  left: 30px;

  opacity: 0;

  visibility: hidden;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.tj-project-item-two .project-content .title {

  margin-bottom: 5px;

}

.tj-project-item-two .project-content .title a {

  color: var(--tj-color-common-white);

}

.tj-project-item-two .project-content span {

  color: var(--tj-color-theme-secondary);

  font-family: var(--tj-ff-heading);

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

}

.tj-project-item-two:hover::before {

  opacity: 1;

  visibility: visible;

  bottom: 0;

}

.tj-project-item-two:hover .project-content {

  bottom: 20px;

  opacity: 1;

  visibility: visible;

}



/* !END: Theme Project CSS */

/**----------------------------------------

START: Theme Project CSS

----------------------------------------*/

.tj-project-details {

  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-project-details {

    padding-top: 80px;

    padding-bottom: 80px;

  }

}



.project-details-item .project-image {

  margin-bottom: 38px;

}

.project-details-item .title {

  margin-bottom: 15px;

}

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

  .project-details-item .title {

    font-size: 38px;

  }

}

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

  .project-details-item .title {

    font-size: 28px;

  }

}

.project-details-item p {

  font-size: 18px;

  line-height: 2.1;

  margin-bottom: 0;

}

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

  .project-details-item p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.project-details-item .project-wrapper {

  margin-top: 30px;

  margin-bottom: 60px;

}

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

  .project-details-item .project-wrapper {

    margin-bottom: 40px;

  }

}

.project-details-item .project-wrapper .project-left-content .title {

  margin-bottom: 20px;

}

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

  .project-details-item .project-wrapper .project-left-content .title {

    font-size: 30px;

  }

}

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

  .project-details-item .project-wrapper .project-left-content .title {

    font-size: 26px;

  }

}

.project-details-item .project-wrapper .project-left-content p {

  margin-bottom: 10px;

}

.project-details-item .project-wrapper .project-left-content p:last-child {

  margin-bottom: 0;

}

.project-details-item .project-wrapper-slider {

  margin-bottom: 60px;

}

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

  .project-details-item .project-wrapper-slider {

    margin-bottom: 40px;

  }

}

.project-details-item .project-wrapper-slider .tj-wrapper-slider2 {

  margin-bottom: 30px;

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next,

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  color: var(--tj-color-common-white);

  font-size: 16px;

  z-index: 1;

  -webkit-transition: 0.2s;

  transition: 0.2s;

  font-weight: var(--tj-fw-medium);

  -webkit-transform: rotate(-180deg);

      -ms-transform: rotate(-180deg);

          transform: rotate(-180deg);

  background: var(--tj-color-theme-primary);

  width: 60px;

  height: 60px;

  line-height: 60px;

  border-radius: 50%;

  left: 30px;

}

@media (max-width: 575px) {

  .project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next,

  .project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev {

    width: 45px;

    height: 45px;

    line-height: 45px;

    left: 15px;

  }

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next::before,

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev::before {

  position: absolute;

  content: "\f105";

  font-family: "Font Awesome 6 Pro";

  text-align: center;

  display: inline-block;

  border-radius: 50%;

  width: 30px;

  height: 30px;

  line-height: 26px;

  border: 2px solid var(--tj-color-common-white);

}

@media (max-width: 575px) {

  .project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next::before,

  .project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev::before {

    width: 25px;

    height: 25px;

    line-height: 20px;

    font-size: 14px;

  }

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next:hover,

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev:hover {

  color: var(--tj-color-common-white);

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next {

  -webkit-transform: rotate(0deg);

      -ms-transform: rotate(0deg);

          transform: rotate(0deg);

  right: 30px;

  left: auto;

}

@media (max-width: 575px) {

  .project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next {

    right: 15px;

  }

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next::before {

  content: "\f105";

}

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-prev:after,

.project-details-item .project-wrapper-slider .wrapper-navigation .swiper-button-next:after {

  display: none;

}

.project-details-item .project-wrapper-slider .title {

  margin-bottom: 19px;

}

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

  .project-details-item .project-wrapper-slider .title {

    font-size: 30px;

  }

}

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

  .project-details-item .project-wrapper-slider .title {

    font-size: 26px;

  }

}

.project-details-item .project-wrapper-slider .project-slider-content {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 60px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  margin-top: 30px;

}

@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) {

  .project-details-item .project-wrapper-slider .project-slider-content {

    gap: 25px;

  }

}

.project-details-item .project-wrapper-slider .project-slider-content .project-text {

  max-width: 466px;

}

@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) {

  .project-details-item .project-wrapper-slider .project-slider-content .project-text {

    max-width: 100%;

  }

}

.project-details-item .project-wrapper-slider .project-slider-content .project-text .title {

  margin-bottom: 10px;

}



.project-category {

  margin-bottom: 30px;

}

.project-category ul {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 90px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

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

  .project-category ul {

    gap: 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) {

  .project-category ul {

    gap: 30px;

  }

}

.project-category ul li {

  font-weight: var(--tj-fw-bold);

  border-left: 2px solid var(--tj-color-theme-primary);

  padding-left: 15px;

}

.project-category ul li span {

  font-size: 14px;

  font-weight: var(--tj-fw-regular);

  margin-bottom: 5px;

}



.project-feature-item {

  background: var(--tj-color-theme-primary);

  padding: 40px;

}

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

  .project-feature-item {

    padding: 20px;

  }

}

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

  .project-feature-item {

    margin-top: 50px;

  }

}

.project-feature-item p {

  color: var(--tj-color-common-white);

  font-size: 16px;

  margin-bottom: 20px;

}

.project-feature-item .project-text {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  -webkit-box-pack: justify;

      -ms-flex-pack: justify;

          justify-content: space-between;

  margin-bottom: 20px;

}

.project-feature-item .project-text .project-auother {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 15px;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

.project-feature-item .project-text .project-auother .auother-image {

  border: 1px solid var(--tj-color-common-white);

  border-radius: 50%;

  padding: 8px;

}

@media (max-width: 575px) {

  .project-feature-item .project-text .project-auother .auother-image {

    max-width: 70px;

    padding: 5px;

  }

}

.project-feature-item .project-text .project-auother .auother-image img {

  width: 100%;

}

.project-feature-item .project-text .project-auother .auother-text .title {

  color: var(--tj-color-common-white);

  margin-bottom: 5px;

}

@media (max-width: 575px) {

  .project-feature-item .project-text .project-auother .auother-text .title {

    font-size: 20px;

  }

}

.project-feature-item .project-text .project-auother .auother-text .title span {

  font-weight: var(--tj-fw-light);

}

.project-feature-item .project-text .project-auother .auother-text .sub-title {

  color: var(--tj-color-common-white);

  font-size: 18px;

  position: relative;

  z-index: 1;

  padding-left: 40px;

}

.project-feature-item .project-text .project-auother .auother-text .sub-title::before {

  position: absolute;

  content: "";

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  left: 0;

  width: 27px;

  height: 2px;

  background: var(--tj-color-common-white);

}

.project-feature-item .project-text .project-quote {

  border-radius: 80px;

  border: 1.5px solid var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  -webkit-box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

          box-shadow: 0px 0px 25px 0px rgba(50, 60, 69, 0.3);

  width: 80px;

  height: 80px;

  line-height: 80px;

  text-align: center;

  display: inline-block;

}

@media (max-width: 575px) {

  .project-feature-item .project-text .project-quote {

    width: 60px;

    height: 60px;

    line-height: 60px;

  }

}

.project-feature-item .star-ratings {

  unicode-bidi: bidi-override;

  color: var(--tj-color-light-8);

  font-size: 25px;

  line-height: 1;

  position: relative;

  margin: 0;

  padding: 0;

}

.project-feature-item .star-ratings .fill-ratings {

  color: var(--tj-theme-7);

  padding: 0;

  position: absolute;

  z-index: 1;

  display: block;

  top: 0;

  left: 0;

  overflow: hidden;

}

.project-feature-item .star-ratings .fill-ratings span {

  display: inline-block;

}

.project-feature-item .star-ratings .empty-ratings {

  padding: 0;

  display: block;

  z-index: 0;

}



.project-details-share {

  border-top: 2px solid rgba(50, 60, 69, 0.1);

  border-bottom: 2px solid rgba(50, 60, 69, 0.1);

  padding-top: 35px;

  padding-bottom: 35px;

}

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

  .project-details-share {

    padding-top: 20px;

    padding-bottom: 20px;

  }

}

.project-details-share ul {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 25px;

}

@media (max-width: 575px) {

  .project-details-share ul {

    gap: 10px;

  }

}

.project-details-share ul li span {

  font-size: 30px;

  color: var(--tj-color-theme-secondary);

  font-weight: var(--tj-fw-bold);

  font-family: var(--tj-ff-heading);

  margin-right: 15px;

}

@media (max-width: 575px) {

  .project-details-share ul li span {

    font-size: 20px;

    margin-right: 10px;

  }

}

.project-details-share ul li a {

  width: 35px;

  height: 35px;

  line-height: 35px;

  display: inline-block;

  text-align: center;

  border-radius: 50%;

  background: var(--tj-color-theme-secondary);

  color: var(--tj-color-common-white);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

@media (max-width: 575px) {

  .project-details-share ul li a {

    width: 25px;

    height: 25px;

    line-height: 25px;

    font-size: 12px;

  }

}

.project-details-share ul li a:hover {

  background: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}



.tj-project-page {

  padding-top: 120px;

  padding-bottom: 90px;

}

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

  .tj-project-page {

    padding-top: 80px;

    padding-bottom: 50px;

  }

}

.tj-project-page .tj-sec-heading-two {

  margin-bottom: 50px;

}



/* !END: Theme Project CSS */

/**----------------------------------------

START: Theme Service CSS

----------------------------------------*/

.tj-service-details {

  padding-top: 120px;

  padding-bottom: 105px;

}

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

  .tj-service-details {

    padding-top: 80px;

    padding-bottom: 55px;

  }

}



.service-details-item {

  margin-bottom: 30px;

}

.service-details-item .details-image {

  margin-bottom: 30px;

}

.service-details-item .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) {

  .service-details-item .title {

    font-size: 38px;

  }

}

.service-details-item p {

  margin-bottom: 10px;

  line-height: 2.1;

  font-size: 18px;

}

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

  .service-details-item p {

    font-size: 16px;

    line-height: 1.9;

  }

}

.service-details-item .service-wrapper {

  margin-top: 30px;

  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) {

  .service-details-item .service-wrapper .tj-video-area {

    margin-bottom: 30px;

  }

}

.service-details-item .service-wrapper .video-image::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) {

  .service-details-item .service-wrapper .video-image img {

    width: 100%;

  }

}

.service-details-item .service-wrapper .service-content .title {

  font-size: 25px;

  margin-bottom: 10px;

}

.service-details-item .service-wrapper .service-content p {

  line-height: 27px;

  font-size: 15px;

  margin-bottom: 15px;

}

.service-details-item .service-wrapper .service-content .check-list ul li {

  font-size: 17px;

  font-weight: var(--tj-fw-medium);

  color: var(--tj-color-theme-primary);

  margin-bottom: 19px;

}

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

  .service-details-item .service-wrapper .service-content .check-list ul li {

    font-size: 16px;

    margin-bottom: 10px;

  }

}

.service-details-item .service-wrapper .service-content .check-list ul li:last-child {

  margin-bottom: 0;

}

.service-details-item .service-wrapper .service-content .check-list ul li i {

  width: 18px;

  height: 18px;

  line-height: 18px;

  text-align: center;

  border-radius: 50%;

  font-size: 12px;

  display: inline-block;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  position: relative;

  top: -2px;

  margin-right: 15px;

}

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

  .service-details-item .service-wrapper .service-content .check-list ul li i {

    margin-right: 10px;

  }

}



.tj-service-widget {

  background: var(--tj-color-light-2);

  margin-bottom: 24px;

  padding: 40px;

  position: relative;

  z-index: 3;

}

@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-widget {

    padding: 20px;

  }

}

.tj-service-widget .side-title {

  font-size: 30px;

  color: var(--tj-color-theme-primary);

  position: relative;

  margin-bottom: 35px;

}

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

  .tj-service-widget .side-title {

    font-size: 26px;

  }

}

.tj-service-widget .side-title::before {

  position: absolute;

  content: "";

  bottom: -10px;

  left: 0;

  width: 89.48px;

  height: 3px;

  background: var(--tj-color-heading-primary);

}

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

  .tj-service-widget .side-title::before {

    width: 50px;

  }

}



.sidebar-download ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.sidebar-download ul li {

  font-size: 18px;

  font-weight: var(--tj-fw-medium);

  margin-bottom: 10px;

  font-family: var(--tj-ff-heading);

}

.sidebar-download ul li:last-child {

  margin-bottom: 0;

}

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

}

.sidebar-download ul li a span {

  color: var(--tj-color-heading-primary);

  font-weight: var(--tj-fw-bold);

}

.sidebar-download ul li a:hover {

  color: var(--tj-color-theme-primary);

}

.sidebar-download ul li a:hover span {

  color: var(--tj-color-theme-primary);

}



.sidebar-contact .contact-text {

  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;

  margin-bottom: 8px;

}

.sidebar-contact .contact-text .contact-icon {

  width: 40px;

  height: 40px;

  line-height: 36px;

  display: inline-block;

  text-align: center;

  border: 1px solid var(--tj-color-heading-primary);

  border-radius: 50%;

}

.sidebar-contact .contact-text .title {

  margin-bottom: 0;

}

.sidebar-contact a {

  font-size: 30px;

  color: var(--tj-color-theme-primary);

  font-weight: var(--tj-fw-bold);

  font-family: var(--tj-ff-heading);

  -webkit-transition: 0.4s;

  transition: 0.4s;

  display: block;

  margin-bottom: 20px;

}

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

  .sidebar-contact a {

    font-size: 25px;

  }

}

.sidebar-contact a:hover {

  color: var(--tj-color-heading-primary);

}

.sidebar-contact p {

  font-size: 15px;

  line-height: 27px;

  margin-bottom: 0;

}



/* !END: Theme Service CSS */

/**----------------------------------------

START: Theme Contact CSS

----------------------------------------*/

.tj-contact-section {

  padding-top: 120px;

  padding-bottom: 120px;

  background: var(--tj-color-theme-bg);

}

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

  .tj-contact-section {

    padding-top: 80px;

    padding-bottom: 80px;

  }

}

.tj-contact-section.tj-contact-page {

  padding-bottom: 0;

}

.tj-contact-section .tj-sec-heading-two .desc {

  max-width: 535px;

}

.tj-contact-section .tj-sec-heading-two .desc p {

  margin-bottom: 30px;

  font-size: 18px;

  line-height: 2.1;

}

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

  .tj-contact-section .tj-sec-heading-two .desc p {

    font-size: 16px;

    line-height: 1.9;

  }

}



.tj-contact-section-two {

  background: var(--tj-color-light-1);

  padding-top: 120px;

  padding-bottom: 120px;

  position: relative;

  z-index: 2;

}

.tj-contact-section-two .contact-bg-shape {

  position: absolute;

  top: 30px;

  right: 0;

  max-width: 240px;

  width: 100%;

  z-index: -1;

}

.tj-contact-section-two .contact-bottom-shape {

  position: absolute;

  bottom: -2px;

  left: 0;

  z-index: 1;

}

.tj-contact-section-two .contact-left-shape {

  position: absolute;

  left: 80px;

  bottom: 0;

  max-width: 145px;

  width: 100%;

  z-index: -1;

}

.tj-contact-section-two .contact-right-shape {

  position: absolute;

  right: 90px;

  bottom: 0;

  max-width: 105px;

  width: 100%;

  z-index: -1;

}

.tj-contact-section-two .tj-sec-heading-three .title {

  margin-bottom: 20px;

}

@media only screen and (min-width: 1400px) and (max-width: 1599px), 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-contact-section-two .contact-right-shape,

  .tj-contact-section-two .contact-left-shape,

  .tj-contact-section-two .contact-bg-shape {

    max-width: 90px;

  }

}

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

  .tj-contact-section-two {

    padding-top: 80px;

    padding-bottom: 80px;

  }

  .tj-contact-section-two .contact-bottom-shape {

    bottom: -5px;

  }

  .tj-contact-section-two .form-box-three {

    max-width: 100%;

  }

}

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

  .tj-contact-section-two .contact-bg-shape,

  .tj-contact-section-two .contact-right-shape,

  .tj-contact-section-two .contact-left-shape,

  .tj-contact-section-two .contact-bottom-shape {

    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) {

  .contact-left-content {

    margin-bottom: 50px;

  }

}



.contact-left-content-two .desc {

  margin-bottom: 30px;

}

.contact-left-content-two .desc p {

  font-size: 18px;

  line-height: 2.1;

}

.contact-left-content-two .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) {

  .contact-left-content-two {

    margin-bottom: 50px;

  }

}



.contact-map iframe {

  width: 536px;

  height: 227px;

}

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

  .contact-map iframe {

    width: 440px;

  }

}

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

  .contact-map iframe {

    width: 100%;

  }

}



.contact-infos .contact-item {

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  gap: 20px;

  margin-bottom: 20px;

}

.contact-infos .contact-item:last-child {

  margin-bottom: 0;

}

.contact-infos .contact-item .contact-icon {

  font-size: 30px;

  line-height: 1;

  color: var(--tj-color-theme-secondary);

}

.contact-infos .contact-item .contact-text .title {

  margin-bottom: 5px;

  font-family: var(--tj-ff-body);

  font-weight: var(--tj-fw-sbold);

  font-size: 18px;

}

.contact-infos .contact-item .contact-text span {

  font-size: 18px;

}

.contact-infos .contact-item .contact-text a {

  font-size: 18px;

}

.contact-infos .contact-item .contact-text a:hover {

  color: var(--tj-color-theme-primary);

}



.tj-contact-form .form-input {

  margin-bottom: 24px;

}

.tj-contact-form .form-input textarea,

.tj-contact-form .form-input input[type=email],

.tj-contact-form .form-input input[type=text] {

  background: rgba(255, 255, 255, 0.6);

  border: 1px solid rgba(57, 202, 110, 0.6);

  font-size: 14px;

  padding: 18px 20px;

}

.tj-contact-form .form-input textarea::-ms-input-placeholder,

.tj-contact-form .form-input input[type=email]::-ms-input-placeholder,

.tj-contact-form .form-input input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea::-webkit-input-placeholder, .tj-contact-form .form-input input[type=email]::-webkit-input-placeholder, .tj-contact-form .form-input input[type=text]::-webkit-input-placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea::-moz-placeholder, .tj-contact-form .form-input input[type=email]::-moz-placeholder, .tj-contact-form .form-input input[type=text]::-moz-placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea:-ms-input-placeholder, .tj-contact-form .form-input input[type=email]:-ms-input-placeholder, .tj-contact-form .form-input input[type=text]:-ms-input-placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea::-ms-input-placeholder, .tj-contact-form .form-input input[type=email]::-ms-input-placeholder, .tj-contact-form .form-input input[type=text]::-ms-input-placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea::placeholder,

.tj-contact-form .form-input input[type=email]::placeholder,

.tj-contact-form .form-input input[type=text]::placeholder {

  color: var(--tj-color-border-2);

}

.tj-contact-form .form-input textarea {

  resize: none;

  min-height: 192px;

}

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

  .tj-contact-form .form-input textarea {

    min-height: 150px;

  }

}

.tj-contact-form .tj-contact-button {

  margin-top: 6px;

}



/* !END: Theme Contact CSS */

/**----------------------------------------

START: Theme Brand CSS

----------------------------------------*/

.tj-brand-section {

  background: var(--tj-color-theme-secondary);

  padding: 60px 0;

  position: relative;

  z-index: 2;

}

.tj-brand-section .tj-brand-slider .swiper-wrapper {

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

}

.tj-brand-section .brand-sec-shape-wrapper .left-lg-shape {

  position: absolute;

  top: 0;

  left: 0;

  max-width: 600px;

  width: 100%;

  z-index: -1;

}

.tj-brand-section .brand-sec-shape-wrapper .left-sm-one {

  position: absolute;

  bottom: -15px;

  left: 0;

  max-width: 60px;

  width: 100%;

  z-index: -1;

}

.tj-brand-section .brand-sec-shape-wrapper .left-sm-two {

  position: absolute;

  bottom: 0;

  left: 4%;

  max-width: 80px;

  width: 100%;

  z-index: -1;

}

.tj-brand-section .brand-sec-shape-wrapper .right-lg-shape {

  position: absolute;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  right: 0;

  max-width: 510px;

  width: 100%;

  z-index: -1;

}

.tj-brand-section .brand-sec-shape-wrapper .right-sm-shape {

  position: absolute;

  top: -40px;

  right: 0;

  max-width: 130px;

  width: 100%;

  z-index: -1;

}

@media (max-width: 575px) {

  .tj-brand-section .left-sm-two {

    display: none;

  }

}



.brand-item a {

  display: inline-block;

  opacity: 0.5;

  -webkit-transition: all 0.3s ease-in-out 0s;

  transition: all 0.3s ease-in-out 0s;

}

.brand-item:hover a {

  opacity: 1;

}



/* !END: Theme Brand CSS */

/**----------------------------------------

START: Theme Footer CSS

----------------------------------------*/

.tj-footer-area {

  background: var(--tj-color-theme-secondary);

  position: relative;

  overflow: hidden;

}



.tj-footer-two {

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

  position: relative;

  z-index: 1;

}

.tj-footer-two::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  top: 0;

  left: 0;

  background: linear-gradient(-81deg, rgba(3, 9, 13, 0.88) 46.29%, rgba(50, 60, 69, 0.78) 109.9%);

  z-index: 2;

}

.tj-footer-two .footer1-col-4 {

  padding-left: 40px;

}

@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-footer-two .footer1-col-4 {

    padding-left: 0;

    margin-top: 30px;

  }

}

.tj-footer-two .footer1-col-4 .footer-title {

  margin-bottom: 30px;

}



.tj-footer-three {

  position: relative;

  z-index: 1;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}

.tj-footer-three::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: radial-gradient(78.24% 100% at 50% 100%, rgba(50, 60, 69, 0.98) 0%, rgba(50, 60, 69, 0.74) 100%);

  z-index: 2;

}

.tj-footer-three .footer-top-area {

  padding-top: 0;

}

.tj-footer-three .footer-top-area .footer-widget {

  margin-bottom: 0;

}

.tj-footer-three .footer-shape .shape-1 {

  position: absolute;

  top: 38px;

  left: -25px;

  z-index: 2;

}

.tj-footer-three .footer-shape .shape-2 {

  position: absolute;

  right: 56px;

  bottom: 30%;

  z-index: 2;

}

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

  .tj-footer-three .recent-post {

    padding: 25px 15px 25px 15px;

  }

}



.recent-post {

  background-position: center;

  background-size: cover;

  background-repeat: no-repeat;

  position: relative;

  z-index: 3;

  padding: 40px 15px 40px 40px;

  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) {

  .recent-post {

    padding: 20px 15px 20px 20px;

  }

}

.recent-post::before {

  position: absolute;

  content: "";

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;

  background: rgba(50, 60, 69, 0.85);

}

.recent-post .footer-title {

  position: relative;

  z-index: 4;

}

.recent-post .post-content {

  position: relative;

  z-index: 4;

  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;

  margin-bottom: 30px;

}

.recent-post .post-content:last-child {

  margin-bottom: 0;

}

.recent-post .post-content .post-image {

  max-width: 92px;

  width: 100%;

}

.recent-post .post-content .post-text {

  max-width: 180px;

}

.recent-post .post-content .post-text span {

  color: var(--tj-color-common-white);

  font-size: 12px;

  display: block;

  margin-bottom: 5px;

}

.recent-post .post-content .post-text span i {

  margin-right: 5px;

  position: relative;

  top: 2px;

}

.recent-post .post-content .post-text .title {

  margin-bottom: 0;

  line-height: 1.6;

}

.recent-post .post-content .post-text .title a {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-sbold);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.recent-post .post-content .post-text .title a:hover {

  color: var(--tj-color-theme-primary);

}



.footer-section-shape .secton-group-one .shape-one {

  position: absolute;

  left: 35px;

  bottom: 35%;

  opacity: 0.1;

}

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

  .footer-section-shape .secton-group-one .shape-one {

    left: 15px;

  }

}

.footer-section-shape .secton-group-one .shape-two {

  position: absolute;

  left: 9%;

  bottom: 17%;

  opacity: 0.1;

}

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

  .footer-section-shape .secton-group-one .shape-two {

    left: 15%;

  }

}

.footer-section-shape .secton-group-one .shape-three {

  position: absolute;

  left: 26%;

  bottom: 25%;

}

.footer-section-shape .secton-group-one .shape-four {

  position: absolute;

  right: 20%;

  bottom: 15px;

}

.footer-section-shape .secton-group-one .shape-five {

  position: absolute;

  bottom: -10px;

  left: 30px;

  opacity: 0.1;

}

.footer-section-shape .secton-group-two .shape-one {

  position: absolute;

  right: 85px;

  bottom: 0;

  opacity: 0.1;

}

.footer-section-shape .secton-group-two .shape-one .image-2 {

  position: absolute;

  max-width: 170px;

  right: -65px;

  top: -95px;

}

.footer-section-shape .secton-group-two .shape-two {

  position: absolute;

  right: 13%;

  bottom: -70px;

  opacity: 0.1;

}

.footer-section-shape .secton-group-two .shape-two .image-2 {

  position: absolute;

  max-width: 120px;

  right: -45px;

  top: -70px;

}

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

  .footer-section-shape .secton-group-two .shape-two {

    right: 12%;

    bottom: -22%;

  }

  .footer-section-shape .secton-group-two .shape-two .image-2 {

    max-width: 90px;

    right: -30px;

    top: -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) {

  .footer-section-shape {

    display: none;

  }

}



.footer-top-area {

  padding-top: 120px;

  padding-bottom: 10px;

  border-bottom: 2px solid rgba(255, 255, 255, 0.15);

  position: relative;

  z-index: 3;

}

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

  .footer-top-area {

    padding-top: 80px;

  }

}



.footer-widget {

  margin-bottom: 50px;

}

.footer-widget .footer-title {

  margin-bottom: 45px;

}

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

  .footer-widget .footer-title {

    margin-bottom: 25px;

  }

}

.footer-widget .footer-title .title {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}



.footer1-col-2 {

  padding-left: 40px;

}

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

  .footer1-col-2 {

    padding-left: 0;

  }

}

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

  .footer1-col-2 {

    padding-left: 60px;

  }

}

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

  .footer1-col-2 {

    padding-left: 0;

  }

}



.footer1-col-4 {

  padding-left: 60px;

}

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

  .footer1-col-4 {

    padding-left: 0;

  }

}



.footer2-col-1 {

  position: relative;

  z-index: 2;

  padding: 69px 44px;

}

.footer2-col-1::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  opacity: 0.4;

  background: -webkit-gradient(linear, left top, left bottom, from(#323c45), to(rgba(50, 60, 69, 0)));

  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);

}

.footer2-col-1 .footer-title {

  margin-bottom: 36px;

  position: relative;

  z-index: 2;

}

.footer2-col-1 .footer-timer {

  position: relative;

  z-index: 2;

}

.footer2-col-1 .footer-timer ul li {

  color: var(--tj-color-common-white);

  font-size: 18px;

  margin-bottom: 10px;

}

.footer2-col-1 .footer-timer ul li: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), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {

  .footer2-col-1 {

    padding: 45px 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) {

  .footer2-col-1 .footer-title {

    margin-bottom: 25px;

  }

}



.footer2-col-2 {

  position: relative;

  z-index: 1;

  padding: 69px 30px;

}

.footer2-col-2::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  opacity: 0.4;

  background: -webkit-gradient(linear, left top, left bottom, from(#323c45), to(rgba(50, 60, 69, 0)));

  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);

}

.footer2-col-2 .footer-info {

  text-align: center;

}

.footer2-col-2 .footer-info .footer-logo {

  margin-left: auto;

  margin-right: auto;

  margin-bottom: 21px;

}

.footer2-col-2 .footer-info .desc {

  margin-bottom: 30px;

}

.footer2-col-2 .footer-info .desc p {

  line-height: 1.9;

}

.footer2-col-2 .footer-info .footer-share ul {

  -webkit-box-pack: center;

      -ms-flex-pack: center;

          justify-content: center;

}

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

  .footer2-col-2 {

    padding: 45px 15px;

  }

}



.footer2-col-3 {

  position: relative;

  z-index: 1;

  padding: 30px;

}

.footer2-col-3::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  opacity: 0.4;

  background: -webkit-gradient(linear, left top, left bottom, from(#323c45), to(rgba(50, 60, 69, 0)));

  background: linear-gradient(180deg, #323c45 0%, rgba(50, 60, 69, 0) 100%);

  z-index: 2;

}

.footer2-col-3 .footer-title {

  margin-bottom: 30px;

}

.footer2-col-3 .recent-post {

  margin-top: 0;

  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}

.footer2-col-3 .recent-post::before {

  display: none;

}

.footer2-col-3 .recent-post .post-content {

  margin-bottom: 25px;

}

.footer2-col-3 .recent-post .post-image {

  border: 2px solid 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) {

  .footer2-col-3 {

    padding: 15px;

  }

}



.footer-info {

  max-width: 336px;

  width: 100%;

  position: relative;

  z-index: 3;

}

.footer-info .footer-logo {

  max-width: 140px;

  width: 100%;

  margin-bottom: 30px;

}

.footer-info .footer-logo a {

  display: inline-block;

}

.footer-info .footer-logo a img {

  width: 100%;

}

.footer-info .desc {

  margin-bottom: 36px;

}

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

  .footer-info .desc {

    margin-bottom: 20px;

  }

}

.footer-info .desc p {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}

.footer-info .footer-share 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: 15px;

}

.footer-info .footer-share ul li a {

  width: 32px;

  height: 32px;

  line-height: 32px;

  -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-black);

  background: var(--tj-color-common-white);

  position: relative;

  z-index: 3;

  font-size: 14px;

  margin-left: 10px;

}

.footer-info .footer-share ul li a i {

  color: var(--tj-color-common-black);

}

.footer-info .footer-share ul li a:first-child {

  margin-left: 0;

}

.footer-info .footer-share ul li a:hover {

  background-color: var(--tj-color-theme-primary);

  color: var(--tj-color-common-white);

}

.footer-info .footer-share ul li a:hover i {

  color: var(--tj-color-common-white);

}



.widget_nav_menu .footer-menu {

  position: relative;

  z-index: 2;

}

.widget_nav_menu .footer-menu ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.widget_nav_menu .footer-menu ul li {

  margin-bottom: 15px;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

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

  .widget_nav_menu .footer-menu ul li {

    margin-bottom: 10px;

  }

}

.widget_nav_menu .footer-menu ul li a {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  -webkit-transition: 0.4s;

  transition: 0.4s;

  position: relative;

  padding-left: 0;

}

.widget_nav_menu .footer-menu ul li a::before {

  position: absolute;

  content: "";

  width: 10px;

  height: 2px;

  left: 0;

  top: 50%;

  -webkit-transform: translateY(-50%);

      -ms-transform: translateY(-50%);

          transform: translateY(-50%);

  background: var(--tj-color-theme-primary);

  opacity: 0;

  visibility: hidden;

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.widget_nav_menu .footer-menu ul li a:hover {

  color: var(--tj-color-theme-primary);

  padding-left: 20px;

}

.widget_nav_menu .footer-menu ul li a:hover::before {

  opacity: 1;

  visibility: visible;

}

.widget_nav_menu .footer-menu ul li:last-child {

  margin-bottom: 0;

}



.footer-contact {

  position: relative;

  z-index: 2;

}

.footer-contact ul {

  margin: 0;

  padding: 0;

  list-style: none;

}

.footer-contact ul li {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  position: relative;

  padding-left: 45px;

  margin-bottom: 25px;

  line-height: 2;

}

.footer-contact ul li a {

  color: var(--tj-color-common-white);

  font-weight: var(--tj-fw-medium);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.footer-contact ul li a:hover {

  color: var(--tj-color-theme-primary);

}

.footer-contact ul li i {

  font-size: 25px;

  position: absolute;

  top: 0;

  left: 0;

  color: var(--tj-color-theme-primary);

}

.footer-contact ul li:last-child {

  margin-bottom: 0;

}



.footer-newsletter {

  position: relative;

  z-index: 3;

}

.footer-newsletter .desc {

  margin-bottom: 30px;

}

.footer-newsletter .desc p {

  color: var(--tj-color-common-white);

  margin-bottom: 0;

}

.footer-newsletter .footer-form {

  position: relative;

}

.footer-newsletter .footer-form input[type=email] {

  background: transparent;

  border: 1px solid var(--tj-color-common-white);

  color: var(--tj-color-common-white);

  padding: 0 20px;

  height: 55px;

}

.footer-newsletter .footer-form input[type=email]::-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.footer-newsletter .footer-form input[type=email]::-webkit-input-placeholder {

  color: var(--tj-color-grey-1);

}

.footer-newsletter .footer-form input[type=email]::-moz-placeholder {

  color: var(--tj-color-grey-1);

}

.footer-newsletter .footer-form input[type=email]:-ms-input-placeholder {

  color: var(--tj-color-grey-1);

}

.footer-newsletter .footer-form input[type=email]::placeholder {

  color: var(--tj-color-grey-1);

}

.footer-newsletter .footer-form a {

  position: absolute;

  top: 0;

  right: 0;

  width: 53px;

  height: 55px;

  line-height: 55px;

  text-align: center;

  color: var(--tj-color-common-white);

  background: var(--tj-color-theme-primary);

  font-size: 20px;

}



.tj-copyright-area {

  padding: 15px 0;

}



.copyright-content-ara {

  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;

  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) {

  .copyright-content-ara {

    -webkit-box-pack: center;

        -ms-flex-pack: center;

            justify-content: center;

    text-align: 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) {

  .copyright-content-ara .copyright-text {

    margin-bottom: 15px;

  }

}

.copyright-content-ara .copyright-text p {

  margin-bottom: 0;

  color: var(--tj-color-common-white);

}

.copyright-content-ara .copyright-text p a {

  color: var(--tj-color-common-white);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.copyright-content-ara .copyright-text p a:hover {

  color: var(--tj-color-theme-primary);

}

.copyright-content-ara .copyright-menu ul {

  margin: 0;

  padding: 0;

  list-style: none;

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;

  -ms-flex-wrap: wrap;

      flex-wrap: wrap;

  -webkit-box-align: center;

      -ms-flex-align: center;

          align-items: center;

  gap: 30px;

}

.copyright-content-ara .copyright-menu ul li a {

  color: var(--tj-color-common-white);

  -webkit-transition: 0.4s;

  transition: 0.4s;

}

.copyright-content-ara .copyright-menu ul li a:hover {

  color: var(--tj-color-theme-primary);

}



/* !END: Theme Footer CSS */

/**----------------------------------------

START: Theme Breadcrumb CSS

----------------------------------------*/

.breadcrumb-wrapper {

  padding-top: 185px;

  padding-bottom: 55px;

  background-repeat: no-repeat;

  background-position: center;

  background-size: cover;

  position: relative;

  z-index: 1;

  background-position: bottom;

}

.breadcrumb-wrapper::before {

  position: absolute;

  content: "";

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background: -webkit-gradient(linear, left bottom, left top, from(rgba(3, 9, 13, 0.62)), to(rgba(3, 9, 13, 0.62)));

  background: linear-gradient(0deg, rgb(3 9 13 / 0%) 0%, rgb(3 9 13 / 62%) 100%);

  z-index: 2;

}

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

  .breadcrumb-wrapper {

    padding-top: 245px;

    padding-bottom: 90px;

  }

}

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

  .breadcrumb-wrapper {

    padding-top: 225px;

    padding-bottom: 80px;

  }

}

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

  .breadcrumb-wrapper {

    padding-top: 250px;

    padding-bottom: 80px;

  }

}



.breadcrumb-content-area {

  position: relative;

  z-index: 9;

}

.breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {

  color: var(--tj-color-common-white);

  font-size: 52px;

  margin-bottom: 20px;

}

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

  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {

    font-size: 60px;

  }

}

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

  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {

    font-size: 45px;

  }

}

@media (max-width: 575px) {

  .breadcrumb-content-area .breadcrumb-heading .breadcrumb-title {

    font-size: 38px;

  }

}

.breadcrumb-content-area .breadcrumb-link span {

  color: var(--tj-color-common-white);

  font-size: 16px;

  font-family: var(--tj-ff-body);

}

.breadcrumb-content-area .breadcrumb-link i {

  color: var(--tj-color-common-white);

  padding-left: 15px;

  padding-right: 15px;

  font-size: 20px;

  position: relative;

  top: 3px;

}

.breadcrumb-content-area .breadcrumb-link a span {

  color: var(--tj-color-common-white);

  -webkit-transition: 0.4s;

  transition: 0.4s;

  position: relative;

  font-family: var(--tj-ff-body);

}

.breadcrumb-content-area .breadcrumb-link a span::before {

  position: absolute;

  content: "";

  width: 0;

  height: 1px;

  bottom: 0;

  left: 0;

  background: var(--tj-color-common-white);

}

.breadcrumb-content-area .breadcrumb-link a span:hover::before {

  width: 100%;

}

.input-form > textarea{
	height:160px !important;
}

a.text-decoration-line-bottom.text-dark-gray.text-dark-gray-hover.fw-500 {
    font-weight: bold;
}

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