:root {
  /**
     @Font-Family Declaration
   */
  --tj-ff-body: 'Jost', sans-serif;
  --tj-ff-heading: 'Old Standard TT', serif;
  --tj-ff-p: 'Jost', 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: 14px;
  --tj-fs-p: 14px;
  --tj-fs-h1: 85px;
  --tj-fs-h2: 55px;
  --tj-fs-h3: 24px;
  --tj-fs-h4: 20px;
  --tj-fs-h5: 16px;
  --tj-fs-h6: 14px;
  /**
     @Color Declaration
   */
  --tj-color-common-white: #ffffff;
  --tj-color-common-white-2: #fbfbfb;
  --tj-color-common-black: #000000;
  --tj-color-heading-primary: #ffffff;
  --tj-color-heading-light: #102039;
  --tj-color-text-body: #cfcfcf;
  --tj-color-text-body-light: #787878;
  --tj-color-theme-primary: #bd8c62;
  --tj-color-theme-bg-dark: #222326;
  --tj-color-theme-bg-dark-2: #0e1013;
  --tj-color-theme-bg-dark-light: #2b2c30;
  --tj-color-theme-bg-dark-light-2: #1e1f21;
  --tj-color-theme-bg-dark-deep: #1a1b1d;
  --tj-color-theme-bg-dark-deep-2: #181d24;
  --tj-color-theme-bg-primary-blur: rgba(189, 140, 98, 0.2);
  --tj-color-theme-bg-light: #faf7f0;
  --tj-color-grey-1: #c5c5c5;
  --tj-color-grey-2: #aeaeae;
  --tj-color-grey-3: #acacac;
  --tj-color-grey-4: #999999;
  --tj-color-grey-5: #f7f7f7;
  --tj-color-grey-6: #b7b7b7;
  --tj-color-grey-7: #a6aeb5;
  --tj-color-grey-8: #edf2f6;
  --tj-color-grey-9: #ddd;
  --tj-color-grey-10: #c0c0c0;
  --tj-color-border-1: #ededed;
  --tj-color-border-2: #e9e9e9;
  --tj-color-border-3: #999999;
  --tj-color-border-4: #222326;
  --tj-color-border-5: rgba(250, 250, 250, 0.1);
  --tj-color-border-6: rgba(189, 140, 98, 0.3);
  --tj-color-border-7: rgba(227, 227, 227, 0.4);
}

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

  Theme Header CSS
  Theme About CSS
  Theme Amenities CSS
  Theme Apartment Info CSS
  Theme Apartment CSS
  Theme Blog CSS
  Theme Contact CSS
  Theme Counter CSS
  Theme Cover CSS
  Theme CTA CSS
  Theme Faq CSS
  Theme Floor CSS
  Theme Follow CSS
  Theme footer CSS
  Theme Gallery CSS
  Theme Hero CSS
  Theme Page Header CSS
  Theme Plan CSS
  Theme Preloder CSS
  Theme Project Filter CSS
  Theme Project CSS
  Theme Request CSS
  Theme Scroll CSS
  Theme Service CSS
  Theme Sponsor CSS
  Theme Subscribe CSS
  Theme Team CSS
  Theme Testimonial CSS

**********************************************/
/**----------------------------------------
START: Theme Default CSS
----------------------------------------*/
* {
  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: var(--tj-fw-normal);
  color: var(--tj-color-text-body);
  background-color: var(--tj-color-theme-bg-dark-deep);
}

a {
  text-decoration: none;
}

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

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

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

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

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

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

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

p {
  font-family: var(--tj-ff-p);
  font-size: 16px;
  font-weight: var(--tj-fw-normal);
  color: var(--tj-color-text-body);
  margin-bottom: 15px;
  line-height: 1.5;
}

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

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

a:focus,
a:hover {
  color: var(--tj-color-theme-primary);
  text-decoration: none;
}

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

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

::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: var(--tj-color-theme-bg-dark-2);
}

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

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

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

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

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

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

*::-webkit-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;
}

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

/** Background Colors **/
.bg-dark-deep {
  background-color: var(--tj-color-theme-bg-dark-deep);
}

.bg-dark-light {
  background-color: var(--tj-color-theme-bg-dark-light);
}

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

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

img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.b-radius {
  border-radius: 6px;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sm-padding {
    padding: 15px;
  }
}
.padding-15 {
  padding: 15px !important;
}

.pt-0 {
  padding-top: 0;
}

.pb-0 {
  padding-bottom: 0;
}

/* Section Heading */
.section-heading .sub-heading {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
.section-heading .sub-heading i {
  font-size: 35px;
  line-height: 1;
}
.section-heading .section-title {
  font-weight: var(--tj-fw-bold);
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-heading .section-title {
    font-size: 44px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
    margin-bottom: 10px;
  }
}
.section-heading .desc {
  font-size: 18px;
}
.section-heading .desc p {
  font-size: inherit;
  color: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.section-heading .desc p:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-heading .desc p br {
    display: none;
  }
}
.section-heading .section_button {
  margin-top: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-heading.mb-60 {
    margin-bottom: 40px;
  }
  .section-heading {
    margin-bottom: 40px;
  }
}
/* Margin Class */
.mt-10 {
  margin-top: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* overflow */
.oh {
  overflow: hidden;
}

.video-section {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 600px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .video-section {
    height: 400px;
  }
}

.elementor-widget-tj-image a {
  display: inline-block;
}
.elementor-widget-tj-image .tj_image {
  width: 100%;
  display: inline-block;
  position: relative;
  z-index: 1;
}
.elementor-widget-tj-image .tj_image::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
.elementor-widget-tj-image .image {
  -o-object-fit: cover;
     object-fit: cover;
}

.editor_text p,
.editor_text a,
.editor_text h1,
.editor_text h2,
.editor_text h3,
.editor_text h4,
.editor_text h5,
.editor_text h6,
.editor_text ul,
.editor_text ol {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: inherit;
  padding: inherit;
}

main.site-main {
  overflow: hidden;
}

/**
  Buttons CSS
*/
.tj-primary-btn {
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-primary);
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  text-transform: capitalize;
  padding: 20px 35px;
  letter-spacing: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.tj-primary-btn:focus, .tj-primary-btn:hover {
  color: var(--tj-color-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-primary-btn {
    font-size: 15px;
    padding: 15px 25px;
  }
}
.tj-primary-btn span {
  position: relative;
  z-index: 20;
}
.tj-primary-btn:after {
  background: var(--tj-color-common-white);
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  -webkit-transform: rotate(35deg);
      -ms-transform: rotate(35deg);
          transform: rotate(35deg);
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -1;
}
.tj-primary-btn:hover:after {
  left: 120%;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
}
.tj-primary-btn i {
  margin-left: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-primary-btn i {
    margin-left: 10px;
  }
}

/**----------------------------------------
START: Theme Header CSS
----------------------------------------*/
.header {
  position: relative;
  background-color: var(--tj-color-theme-bg-dark);
  border-bottom: 1px solid transparent;
  width: 100%;
  -webkit-transition: 0.4s ease-out;
  transition: 0.4s ease-out;
}
.header.absolute {
  background-color: transparent;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  z-index: 99;
}
.header.header__sticky {
  background-color: var(--tj-color-theme-bg-dark);
  border-bottom: 1px solid #2b2c30;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  -webkit-animation-name: menuSticky;
          animation-name: menuSticky;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
          box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}
.header.header__sticky .header-logo .default_logo {
  display: none;
}
.header.header__sticky .header-logo .sticky_logo {
  display: inline-block;
}
.header .header-logo .default_logo {
  display: inline-block;
}
.header .header-logo .sticky_logo {
  display: none;
}
.header .primary-header {
  padding: 0 40px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .primary-header {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header .primary-header {
    padding: 0 10px;
  }
}
@media (max-width: 575px) {
  .header .primary-header {
    padding: 0;
  }
}
.header .primary-header-inner {
  display: grid;
  grid-template-columns: 250px 1fr 250px;
  grid-column-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 0;
}
@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) {
  .header .primary-header-inner {
    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;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .primary-header-inner {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .primary-header-inner {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header-inner .header-contact-area {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .primary-header-inner .header-contact-area {
    display: none;
  }
}
.header .primary-header-inner .header-contact-area a {
  color: var(--tj-color-common-white);
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header-inner .header-contact-area a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-contact-area a i {
  font-size: 16px;
  margin-right: 15px;
}
.header .primary-header-inner .header-contact-area a:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .primary-header-inner {
    grid-template-columns: 180px 1fr 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .primary-header-inner {
    grid-template-columns: 175px 1fr 175px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .primary-header-inner {
    grid-template-columns: 135px 1fr 135px;
    grid-column-gap: 15px;
  }
  .header .primary-header-inner .header-contact-area a {
    margin-left: 5px;
    font-size: 12px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .primary-header-inner .header-right {
    margin-left: auto;
  }
  .header .primary-header-inner .header-right .header-btn {
    margin-right: 20px;
  }
  .header .primary-header-inner .mobile-side-menu-toggle {
    font-size: 40px;
    line-height: 1;
    color: var(--tj-color-common-white);
  }
  .header .primary-header-inner .mobile-side-menu-toggle:hover {
    content: "/f550";
  }
}
.header .primary-header-inner .header-logo {
  max-width: 200px;
  width: 100%;
}
.header .primary-header-inner .header-logo a {
  display: inline-block;
}
@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 .primary-header-inner .header-logo {
    max-width: 150px !important;
    width: 100%;
  }
}
.header .primary-header-inner .header-logo.vertical {
  max-width: 95px !important;
}
.header .header-menu-wrap {
  text-align: center;
}
.header .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .header-menu-wrap ul {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .header-menu-wrap ul {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .header-menu-wrap ul {
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
.header .header-menu-wrap ul .header-logo {
  max-width: 115px;
  width: 100%;
  padding: 0 10px;
}
.header .header-menu-wrap ul .header-logo .vertical-logo {
  display: inline-block;
}
.header .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
}
.header .header-menu-wrap ul li a {
  display: block;
  font-family: var(--tj-ff-body);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--tj-color-common-white);
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
}
.header .header-menu-wrap ul li a:before {
  content: "";
  background-color: var(--tj-color-common-white);
  width: 0;
  height: 1px;
  position: absolute;
  bottom: 13px;
  -webkit-transform: skewX(30deg);
      -ms-transform: skewX(30deg);
          transform: skewX(30deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.header .header-menu-wrap ul li.has-dropdown, .header .header-menu-wrap ul li.menu-item-has-children {
  position: relative;
}
.header .header-menu-wrap ul li.has-dropdown a, .header .header-menu-wrap ul li.menu-item-has-children a {
  padding-right: 20px;
}
.header .header-menu-wrap ul li.has-dropdown a:after, .header .header-menu-wrap ul li.menu-item-has-children a:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  color: var(--tj-color-common-white);
  font-size: 13px;
  line-height: 1;
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .header-menu-wrap ul li > .sub-menu {
  background-color: var(--tj-color-common-white);
  display: block;
  width: 200px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
          box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  pointer-events: none;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease, visibility 0.5s ease, all 0.5s ease-in-out;
  transition: opacity 0.5s ease, visibility 0.5s ease, all 0.5s ease-in-out;
}
.header .header-menu-wrap ul li > .sub-menu > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid var(--tj-color-common-white);
  text-align: left;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.header .header-menu-wrap ul li > .sub-menu > li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .header-menu-wrap ul li > .sub-menu > li.has-dropdown, .header .header-menu-wrap ul li > .sub-menu > li.menu-item-has-children {
  position: relative;
}
.header .header-menu-wrap ul li > .sub-menu > li.has-dropdown:after, .header .header-menu-wrap ul li > .sub-menu > li.menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  color: var(--tj-color-theme-bg-dark);
  font-size: 13px;
  line-height: 1;
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 7px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
      -ms-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.header .header-menu-wrap ul li > .sub-menu > li > a {
  display: block;
  height: auto;
  color: var(--tj-color-theme-bg-dark);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  width: 100%;
  margin: 0;
  padding: 12px 20px;
}
.header .header-menu-wrap ul li > .sub-menu > li > a::before, .header .header-menu-wrap ul li > .sub-menu > li > a::after {
  display: none;
}
.header .header-menu-wrap ul li > .sub-menu > li > .sub-menu {
  left: 100%;
  top: 0;
}
.header .header-menu-wrap ul li > .sub-menu > li > .sub-menu > li > a {
  color: var(--tj-color-theme-bg-dark);
}
.header .header-menu-wrap ul li > .sub-menu > li > .sub-menu > li:hover > a {
  color: var(--tj-color-common-white);
}
.header .header-menu-wrap ul li > .sub-menu > li:hover {
  background-color: var(--tj-color-theme-primary);
}
.header .header-menu-wrap ul li > .sub-menu > li:hover.has-dropdown:after, .header .header-menu-wrap ul li > .sub-menu > li:hover.menu-item-has-children:after {
  color: var(--tj-color-common-white);
}
.header .header-menu-wrap ul li > .sub-menu > li:hover > a {
  color: var(--tj-color-common-white);
}
.header .header-menu-wrap ul li > .sub-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
  pointer-events: all;
}
.header .header-menu-wrap ul li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  z-index: 99;
  pointer-events: all;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.header .header-menu-wrap ul li:hover a:before {
  width: 100%;
}
.header .header-right {
  text-align: right;
}
.header .header-right .tj-primary-btn {
  background-color: transparent;
  font-size: 16px;
  padding: 15px 20px;
  border: 1px solid var(--tj-color-common-white);
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header .header-right .tj-primary-btn {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header .header-right .tj-primary-btn i {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header .header-right .tj-primary-btn {
    font-size: 14px;
    padding: 15px 20px;
  }
  .header .header-right .tj-primary-btn i {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .header-right .tj-primary-btn {
    font-size: 14px;
    padding: 15px;
  }
  .header .header-right .tj-primary-btn i {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    position: relative;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header .header-right .header-logo img {
    width: 70px;
  }
}
.header.header-2 {
  background-color: var(--tj-color-theme-bg-dark);
}
.header.header-2.absolute {
  background-color: transparent;
}
.header.header-2.header__sticky {
  background-color: var(--tj-color-theme-bg-dark);
  -webkit-box-shadow: 0 0 0;
          box-shadow: 0 0 0;
}
.header.header-2 .primary-header-inner {
  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;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .primary-header-inner {
    padding: 15px 0;
  }
}
.header.header-2 .primary-header-inner .header-menu-wrap ul li:hover > a {
  color: var(--tj-color-theme-primary);
}
.header.header-2 .primary-header-inner .header-menu-wrap ul li:hover > a::before {
  background-color: var(--tj-color-theme-primary);
}
.header.header-2 .primary-header-inner .header-menu-wrap ul li:hover > a::after {
  color: var(--tj-color-theme-primary);
}
.header.header-2 .primary-header-inner .header-menu-wrap ul li > .sub-menu > li:hover > a {
  color: var(--tj-color-common-white);
}
.header.header-2 .primary-header-inner .header-right {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-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) {
  .header.header-2 .primary-header-inner .header-right .header-contact-area {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header.header-2 .primary-header-inner .header-right .tj-primary-btn {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .primary-header-inner .header-right {
    margin-left: auto;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header.header-2 .primary-header-inner .mean-push {
    display: none;
  }
}

.sticky-header-wrap.fixed .primary-header-inner {
  padding: 10px 0;
}

.header-3 .side-menu-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 9;
  width: 46px;
  height: 46px;
  border: 1px solid var(--tj-color-theme-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.header-3 .side-menu-icon > span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: var(--tj-color-theme-primary);
  -webkit-transform-origin: right;
      -ms-transform-origin: right;
          transform-origin: right;
}
.header-3 .side-menu-icon > span:nth-child(2) {
  -webkit-transform: scale(0.9);
      -ms-transform: scale(0.9);
          transform: scale(0.9);
}
.header-3 .side-menu-icon > span:last-child {
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}
.header-3 .side-menu-icon:hover > span:nth-child(2) {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.header-3 .side-menu-icon:hover > span:last-child {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(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) {
  .header-3 .side-menu-icon {
    display: none;
  }
}
.header-3 .primary-header {
  padding: 0;
}
.header-3 .primary-header .primary-header-inner {
  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;
  padding: 20px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-3 .primary-header .primary-header-inner {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-3 .primary-header .primary-header-inner .header-right {
    margin-right: 3%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-3 .primary-header .primary-header-inner .header-right {
    margin-right: 4%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-3 .primary-header .primary-header-inner .header-right {
    margin-right: 6%;
  }
}
.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
      -ms-transform: translateX(850px);
          transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--tj-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--tj-color-theme-primary) var(--tj-color-theme-bg-dark-2);
}
.side-menu-wrapper::-webkit-scrollbar {
  height: 4px;
  width: 4px;
  background: var(--tj-color-theme-bg-dark-2);
}
.side-menu-wrapper::-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);
}
.side-menu-wrapper::-webkit-scrollbar-corner {
  background: transparent;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 25px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--tj-color-common-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.side-menu-wrapper .side-menu-close:hover {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

.side-menu-content .side-menu-header {
  font-family: var(--tj-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  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;
  padding: 25px;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  width: 150px;
  height: 120px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--tj-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--tj-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--tj-color-theme-primary);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item .side-menu-arrow i {
  font-weight: 200;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--tj-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 99;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .side-menu-overlay {
    display: none;
  }
}

.header-4 {
  background-color: var(--tj-color-theme-bg-dark-light);
  position: inherit;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-4.sticky-header {
  position: fixed;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-4.sticky-header.header__sticky {
  visibility: visible;
  opacity: 1;
}
.header-4.header__sticky {
  background-color: var(--tj-color-theme-bg-dark-light);
  border-bottom: 1px solid #2b2c30;
  position: fixed;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.header-4.header__sticky .top-bar {
  display: none;
}
.header-4 .top-bar {
  background-color: var(--tj-color-theme-bg-dark-deep);
  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: 12px 40px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 10px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .header-4 .top-bar {
    padding: 12px 30px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-4 .top-bar {
    padding: 12px 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-4 .top-bar {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 12px 15px;
  }
}
.header-4 .top-bar .top-left-content ul {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  list-style: none;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-4 .top-bar .top-left-content ul {
    -webkit-column-gap: 30px;
       -moz-column-gap: 30px;
            column-gap: 30px;
    row-gap: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header-4 .top-bar .top-left-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.header-4 .top-bar .top-left-content ul li i {
  color: var(--tj-color-theme-primary);
  font-size: 16px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin-right: 10px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-4 .top-bar .top-left-content ul li i {
    font-size: 15px;
  }
}
.header-4 .top-bar .top-left-content ul li a {
  color: var(--tj-color-grey-9);
  font-size: 16px;
  font-weight: 400;
  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: 576px) and (max-width: 767px), (max-width: 575px) {
  .header-4 .top-bar .top-left-content ul li a {
    font-size: 15px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-4 .top-bar .top-left-content ul li:nth-child(2) i {
    font-size: 15px;
  }
}
.header-4 .top-bar .top-left-content ul li:nth-child(2) a {
  line-height: 1;
}
.header-4 .top-bar .top-right-content .top-social-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.header-4 .top-bar .top-right-content .top-social-list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 20px;
}
.header-4 .top-bar .top-right-content .top-social-list li a {
  color: var(--tj-color-grey-9);
  font-size: 18px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header-4 .top-bar .top-right-content .top-social-list li a:hover {
  color: var(--tj-color-theme-primary);
}
.header-4 .top-bar .top-right-content .top-social-list li:last-child {
  margin-right: 0;
}
.header-4 .primary-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 27.5px 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-4 .primary-header-inner {
    padding: 20px 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-4 .primary-header-inner {
    padding: 15px 10px;
  }
}
.header-4 .primary-header-inner .header-right {
  position: initial;
  display: block;
}
.header-4 .primary-header-inner .header-right .tj-primary-btn {
  background-color: var(--tj-color-theme-primary);
  border: none;
  padding: 19px 20px;
  margin-right: 0;
}
.header-4 .primary-header-inner .mobile-side-menu-toggle {
  margin-left: 20px;
}

.sticky-header-wrap {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
}
.sticky-header-wrap.fixed {
  background-color: var(--tj-color-theme-bg-dark);
  display: block;
  -webkit-animation-name: menuSticky;
          animation-name: menuSticky;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
          box-shadow: 0px 1px 3px 0px rgba(255, 255, 255, 0.1);
}
.sticky-header-wrap .header {
  position: relative;
  top: 0;
}
.sticky-header-wrap .header .top-bar {
  display: none;
}

@-webkit-keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

.mobile-side-menu {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 450px;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  height: 100%;
  display: block;
  background-color: var(--tj-color-theme-bg-dark-deep);
  z-index: 101;
  padding: 50px 40px;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu {
    padding: 40px 20px;
    max-width: 320px;
    width: 100%;
  }
}
.mobile-side-menu.is-open {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.mobile-side-menu .side-menu-head {
  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: 50px;
}
.mobile-side-menu .side-menu-head .mobile_logo {
  max-width: 200px;
  width: 100%;
}
.mobile-side-menu .side-menu-head .mobile_logo a {
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu .side-menu-head .mobile_logo {
    max-width: 160px;
  }
}
.mobile-side-menu .side-menu-head .mobile-side-menu-close {
  position: fixed;
  top: 40px;
  right: 40px;
  color: var(--tj-color-common-white);
  font-size: 20px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  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;
  border: 1px solid var(--tj-color-border-6);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 20px;
    width: 40px;
    height: 40px;
  }
}
.mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.mobile-side-menu .side-menu-search {
  position: relative;
  margin-bottom: 40px;
}
.mobile-side-menu .side-menu-search input {
  background-color: var(--tj-color-theme-bg-dark-2);
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-border-6);
  height: 52px;
  width: 100%;
  font-size: 20px;
  padding: 0 25px;
}
.mobile-side-menu .side-menu-search input::-webkit-input-placeholder {
  color: var(--tj-color-grey-10);
  font-size: 20px;
}
.mobile-side-menu .side-menu-search input:-moz-placeholder {
  color: var(--tj-color-grey-10);
  font-size: 20px;
}
.mobile-side-menu .side-menu-search input::-moz-placeholder {
  color: var(--tj-color-grey-10);
  font-size: 20px;
}
.mobile-side-menu .side-menu-search input:-ms-input-placeholder {
  color: var(--tj-color-grey-10);
  font-size: 20px;
}
.mobile-side-menu .side-menu-search button {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  width: 60px;
  height: 52px;
  position: absolute;
  top: 0;
  right: 0;
}
.mobile-side-menu .side-menu-wrap {
  overflow: hidden;
  margin-bottom: 50px;
}
.mobile-side-menu p {
  margin-bottom: 50px;
}
.mobile-side-menu .list-header {
  color: var(--tj-color-common-white);
  font-family: var(--tj-ff-body);
  font-weight: 400;
  margin-bottom: 30px;
}
.mobile-side-menu .side-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 50px;
}
.mobile-side-menu .side-menu-list li {
  font-size: 20px;
  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;
  margin-bottom: 20px;
  gap: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu .side-menu-list li {
    gap: 10px;
    font-size: 16px;
  }
}
.mobile-side-menu .side-menu-list li p {
  font-size: 20px;
  margin-bottom: 0;
  word-break: break-word;
  width: calc(100% - 50px);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu .side-menu-list li p {
    font-size: 16px;
    width: calc(100% - 40px);
  }
}
.mobile-side-menu .side-menu-list li i {
  background-color: var(--tj-color-theme-primary);
  font-size: 12px;
  color: var(--tj-color-common-white);
  width: 30px;
  height: 30px;
  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;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.mobile-side-menu .side-menu-list li :last-child {
  margin-bottom: 0;
}
.mobile-side-menu .side-menu-social ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  list-style: none;
}
.mobile-side-menu .side-menu-social ul li a {
  background-color: var(--tj-color-theme-bg-dark-deep);
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  width: 50px;
  height: 50px;
  line-height: 1;
  border: 1px solid var(--tj-color-border-6);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.mobile-side-menu .side-menu-social ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .mobile-side-menu .side-menu-social ul li a {
    width: 40px;
    height: 40px;
  }
}
.mobile-side-menu .mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mobile-side-menu .mean-bar .meanmenu-reveal {
  display: none !important;
}
.mobile-side-menu .mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 10px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li {
  float: none;
  display: block;
  width: auto;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--tj-color-common-white);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  border-top: none;
  float: none;
  width: 100%;
  padding: 20px 0 20px 0;
  border-bottom: 1px solid var(--tj-color-border-5);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 16px;
  }
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
  padding: 0;
  top: 15px;
  position: absolute;
  width: 22px;
  height: 22px;
  margin: 0;
  line-height: 22px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: 200;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
  font-size: 22px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
  font-size: 22px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li {
  padding-left: 20px;
}
.mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 20px 0 20px 0;
  font-size: 18px;
  font-weight: 400;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

.mobile-side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 100;
  display: block;
}
.mobile-side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
}

/* !END: Theme Header CSS */
/**----------------------------------------
START: Theme Hero CSS
----------------------------------------*/
.hero-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-section.e-con {
  height: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-section.e-con.e-flex .e-con-inner {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .hero-section {
    height: auto;
    padding: 200px 0;
  }
}
.hero-section .hero-text {
  position: absolute;
  bottom: 50px;
  left: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section .hero-text {
    bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section .hero-text {
    left: 30px;
    bottom: 15px;
  }
}
.hero-section .hero-text p {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section .hero-text p {
    font-size: 15px;
  }
}
.hero-section .text-2 {
  left: auto;
  right: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section .text-2 {
    right: 30px;
    bottom: 25px;
  }
}

.hero-content .hero-sub-title {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 35px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-content .hero-sub-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content .hero-sub-title {
    margin-bottom: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content .hero-sub-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.hero-content .hero-title {
  max-width: 760px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .hero-title {
    max-width: 625px;
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 40px;
  }
}
.hero-content.text-center .hero-title {
  margin-left: auto;
}
.hero-content.text-end .hero-title {
  margin-left: auto;
  margin-right: 0;
}
.hero-content p {
  max-width: 520px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
}
.hero-content p:last-child {
  margin-bottom: 0;
}
.hero-content .tj-primary-btn {
  margin-top: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content .tj-primary-btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content .tj-primary-btn {
    margin-top: 20px;
  }
}

.hero-section-2 {
  position: relative;
  min-height: 1000px;
  z-index: 1;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .hero-section-2 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-2 {
    min-height: 650px;
    padding: 80px 0 100px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-2 {
    min-height: 100%;
    z-index: 1;
    padding: 100px 0 140px 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section-2 {
    min-height: 100%;
    padding: 60px 0 110px 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.hero-section-2 .hero-bg {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -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) {
  .hero-section-2 .hero-bg {
    width: 100%;
  }
  .hero-section-2 .hero-bg::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: rgba(0, 0, 0, 0.6);
  }
}
.hero-section-2 .hero-container {
  max-width: 1475px;
  margin: auto;
  padding: 0 15px;
  width: 100%;
}
.hero-section-2 .hero-container .hero-content .hero-content-wrap {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  margin-bottom: 30px;
  padding-left: 0;
}
.hero-section-2 .hero-container .hero-content .hero-content-wrap .content-box {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.hero-section-2 .hero-container .hero-content .hero-content-wrap .content-box i {
  color: var(--tj-color-theme-primary);
  font-size: 30px;
  line-height: 1;
}
.hero-section-2 .hero-container .hero-content .hero-content-wrap .content-box h4 {
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
.hero-section-2 .hero-container .hero-content .hero-content-wrap .content-box:nth-child(2) i {
  font-size: 25px;
}
.hero-section-2 .hero-container .hero-content .hero-title {
  font-size: 75px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section-2 .hero-container .hero-content .hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-2 .hero-container .hero-content .hero-title {
    font-size: 50px;
    margin: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section-2 .hero-container .hero-content .hero-title {
    font-size: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-2 .hero-container .hero-content {
    max-width: 550px;
    width: 100%;
  }
}
.hero-section-2 .hero-text {
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px 25px;
}
.hero-section-2 .hero-text i {
  color: var(--tj-color-common-white);
  font-size: 25px;
  margin-right: 10px;
  line-height: 1;
}
.hero-section-2 .hero-text h4 {
  font-family: var(--tj-ff-body);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section-2 .hero-text h4 {
    font-size: 16px;
  }
}
.hero-section-2 .hero-box {
  background-color: var(--tj-color-common-white);
  position: absolute;
  right: 40px;
  bottom: 40px;
  padding: 15px 26px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  border-radius: 80px;
}
.hero-section-2 .hero-box .hero-box-thumb {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.hero-section-2 .hero-box .hero-box-thumb img {
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-section-2 .hero-box h3 {
  font-size: 22px;
  color: var(--tj-color-common-black);
  margin-bottom: 0;
  line-height: 1;
}
.hero-section-2 .hero-box h3 span {
  display: block;
  margin-top: 15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-section-2 .hero-box {
    right: 15px;
    bottom: 15px;
    gap: 10px;
    padding: 10px 12px;
  }
  .hero-section-2 .hero-box .hero-box-thumb {
    width: 50px;
    height: 50px;
  }
  .hero-section-2 .hero-box h3 {
    font-size: 20px;
  }
  .hero-section-2 .hero-box h3 span {
    font-size: 16px;
    margin-top: 5px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-section-2 .hero-box {
    position: relative;
    right: auto;
    left: 15px;
    bottom: 0;
    margin-top: 30px;
  }
}

.hero-3 {
  height: 1000px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-3 {
    height: 650px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 {
    height: 650px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-3 {
    height: auto;
    padding: 180px 0 120px 0;
  }
}
.hero-3 .hero-content {
  margin-top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 .hero-content {
    margin-top: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-3 .hero-content {
    margin-top: 10px;
  }
}
.hero-3 .hero-content .hero-sub-title {
  margin-bottom: 37px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 .hero-content .hero-sub-title {
    margin-bottom: 25px;
  }
}
.hero-3 .hero-content .hero-title {
  margin: 0 0 30px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 .hero-content .hero-title {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-3 .hero-content .hero-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
.hero-3 .hero-sidebar {
  background-color: var(--tj-color-theme-bg-dark-deep-2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 90px;
  width: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(90deg) scaleX(-1);
      -ms-transform: rotate(90deg) scaleX(-1);
          transform: rotate(90deg) scaleX(-1);
  -webkit-transform-origin: top right;
      -ms-transform-origin: top right;
          transform-origin: top right;
  z-index: 9;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-3 .hero-sidebar {
    width: 800px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding-left: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 .hero-sidebar {
    display: none;
  }
}
.hero-3 .hero-sidebar .hero-sidemenu-list {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 55px;
     -moz-column-gap: 55px;
          column-gap: 55px;
  list-style: none;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-3 .hero-sidebar .hero-sidemenu-list {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
  }
}
.hero-3 .hero-sidebar .hero-sidemenu-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li i {
  color: var(--tj-color-theme-primary);
  font-size: 16px;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li a {
  color: var(--tj-color-common-white);
  font-size: 18px;
  margin-left: 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-3 .hero-sidebar .hero-sidemenu-list li a {
    font-size: 15px;
  }
}
.hero-3 .hero-sidebar .hero-sidemenu-list li .hero-social-list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 15px;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li .hero-social-list li i {
  color: var(--tj-color-common-white);
  font-size: 18px;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li .hero-social-list li a {
  margin-left: 0;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li .hero-social-list li:nth-child(2) i {
  font-size: inherit;
  line-height: inherit;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li .hero-social-list li:last-child {
  margin-right: 0;
}
.hero-3 .hero-sidebar .hero-sidemenu-list li:nth-child(2) i {
  font-size: 18px;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.hero-section-4 {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 900px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 170px 0 100px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .hero-section-4 {
    min-height: 650px;
    padding: 150px 0 80px;
  }
}
@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) {
  .hero-section-4 {
    min-height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 150px 0 80px;
  }
}
.hero-section-4::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.hero-section-4 .hero-content .hero-title {
  margin-bottom: 0;
}

.hero-content.content-2 .hero-sub-title {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content.content-2 .hero-sub-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero-content.content-2 .hero-sub-title {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-content.content-2 .hero-title {
    font-size: 85px;
    max-width: inherit;
  }
}

.hero_form {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 50px 40px;
  max-width: 480px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.hero_form .form_title {
  font-size: 30px;
  margin-bottom: 30px;
}
.hero_form .form-group {
  margin-bottom: 20px;
}
.hero_form .form-group textarea {
  height: 120px;
}
.hero_form .form-btn .submit {
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .hero_form {
    margin-top: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_form {
    padding: 40px 30px;
  }
  .hero_form .form_title {
    font-size: 25px;
    margin-bottom: 25px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .hero_form {
    padding: 40px 25px;
  }
}

.tj_content_block {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 50px 30px;
}
.tj_content_block .feature_items {
  padding: 0;
  margin: 0 0 30px 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 20px;
}
.tj_content_block .feature_items .feature {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.tj_content_block .feature_items .feature i {
  font-size: 30px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
.tj_content_block .feature_items .feature h4 {
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  line-height: 1;
}
.tj_content_block .hero-title {
  font-size: 75px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_content_block .hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_content_block .hero-title {
    font-size: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_content_block .feature_items {
    margin: 0 0 20px 0;
  }
  .tj_content_block .hero-title {
    font-size: 40px;
  }
}

/* !END: Theme Hero CSS */
/**----------------------------------------
START: Theme About CSS
----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-section .about-thumb {
  max-width: 518px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-thumb {
    width: 100%;
    max-width: inherit;
  }
}

.about-content {
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content {
    margin-bottom: 40px;
  }
}
.about-content .about-sub-title {
  color: var(--tj-color-theme-primary);
  margin-bottom: 20px;
  line-height: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-sub-title {
    font-size: 20px;
  }
}
.about-content .about-sub-title i {
  font-size: 35px;
  margin-right: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content .about-sub-title i {
    font-size: 20px;
  }
}
.about-content .about-title {
  margin-bottom: 22px;
  max-width: 500px;
  width: 100%;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content .about-title {
    font-size: 36px;
  }
}
.about-content p {
  margin-bottom: 50px;
  max-width: 600px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-content p {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-2 .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.about-section-2 .about-thumb {
  max-width: 520px;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-2 .about-thumb {
    max-width: inherit;
  }
}
.about-section-2 .about-content .about-sub-title {
  color: var(--tj-color-theme-primary);
  margin-bottom: 27px;
  line-height: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-section-2 .about-content .about-sub-title {
    font-size: 20px;
  }
}
.about-section-2 .about-content .about-title {
  color: var(--tj-color-grey-9);
  font-size: 48px;
  line-height: 1;
  letter-spacing: 5px;
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-section-2 .about-content .about-title {
    font-size: 36px;
  }
}
.about-section-2 .about-content p {
  margin-bottom: 45px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section-2 .about-content p {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .about-section-2 .about-content p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-section .about-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* !END: Theme About CSS */
/**----------------------------------------
START: Theme Counter CSS
----------------------------------------*/
.counter-section {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 105px 0 95px 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-section {
    padding: 90px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-section {
    padding: 50px 0 25px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-section {
    padding: 30px 0 10px 0;
  }
}

.counter-item {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item {
    margin-bottom: 20px;
  }
}
.counter-item .counter-title {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-theme-primary);
  font-size: 80px;
  font-weight: 400;
  margin-bottom: 0;
  opacity: 0.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .counter-item .counter-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item .counter-title {
    font-size: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item .counter-title {
    font-size: 55px;
  }
}
.counter-item .counter-title .odometer.odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.counter-item .counter-content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.counter-item .counter-content .counter-text {
  font-family: var(--tj-ff-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 8px;
  margin-bottom: 5px;
  line-height: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item .counter-content .counter-text {
    font-size: 12px;
    letter-spacing: 4px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }
}
.counter-2 {
  padding: 75px 0 70px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-2 {
    padding: 50px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-2 {
    padding: 30px 0 10px 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .counter-item.item-2 .counter-title {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .counter-item.item-2 .counter-title {
    font-size: 50px;
  }
}
.counter-item.item-2 .counter-title .odometer-formatting-mark {
  display: none;
}
.counter-item.item-2 .counter-text {
  letter-spacing: 4px;
}

.counter-3 .counter-container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* !END: Theme Counter CSS */
/**----------------------------------------
START: Theme Plan CSS
----------------------------------------*/
.plan-section .plan-content {
  margin-right: 32.5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .plan-section .plan-content {
    margin-right: 0;
    margin-bottom: 40px;
  }
}

.plan-content p {
  margin-bottom: 35px;
}
.plan-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-content ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.plan-content ul li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tj-color-border-6);
}
.plan-content ul li h3 {
  font-family: var(--tj-ff-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}

.pdf-box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
.pdf-box a i {
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
.pdf-box a h3 {
  font-family: var(--tj-ff-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  margin-bottom: 0;
}

.plan-tab .nav {
  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;
  border-bottom: none;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .plan-tab .nav {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .plan-tab .nav {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
    row-gap: 10px;
  }
}
.plan-tab .nav-tabs {
  border-bottom: none;
}
.plan-tab .nav-tabs .nav-link {
  background-color: transparent;
  border: 1px solid transparent;
  color: var(--tj-color-common-white);
  font-size: 18px;
}
.plan-tab .nav-tabs .nav-link:hover {
  color: var(--tj-color-theme-primary);
  border-right: 1px solid var(--tj-color-theme-primary);
  border-bottom: 1px solid var(--tj-color-theme-primary);
}
.plan-tab .nav-tabs .nav-link.active {
  color: var(--tj-color-theme-primary);
  border-right: 1px solid var(--tj-color-theme-primary);
  border-bottom: 1px solid var(--tj-color-theme-primary);
}

/* !END: Theme Plan CSS */
/**----------------------------------------
START: Theme Amenities CSS
----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-section {
    padding-bottom: 30px;
  }
}
.amenities-section .section-heading {
  margin-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-section .section-heading {
    margin-bottom: 40px;
  }
}
.amenities-section .section-heading .sub-heading {
  margin-bottom: 15px;
}
.amenities-section .section-heading .section-title {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-section .section-heading .section-title {
    width: 100%;
    line-height: 1.2;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-item {
    margin-bottom: 40px;
  }
}
.amenities-item .amenities-icon {
  color: var(--tj-color-theme-primary);
  font-size: 75px;
  line-height: 1;
  display: inline-block;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.amenities-item .amenities-icon i {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
}
.amenities-item .amenities-icon svg {
  max-width: 75px;
  height: auto;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.amenities-item .amenities-icon.image {
  width: 75px;
  height: 75px;
}
.amenities-item .amenities-item-title {
  margin: 25px 0 25px 0;
  line-height: 1;
}
.amenities-item p:last-child {
  margin-bottom: 0;
}
.amenities-item:hover .amenities-icon {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.amenities-2 {
  padding-bottom: 95px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-2 {
    padding-bottom: 45px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .amenities-2 {
    padding-bottom: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .amenities-2 .section-heading {
    padding-bottom: 25px;
  }
}
.amenities-2 .section-heading .section-title {
  line-height: 1.2;
}

.amenities-box {
  position: relative;
  z-index: 1;
  padding: 60px 20px;
  border: 1px solid var(--tj-color-theme-primary);
  overflow: hidden;
}
@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) {
  .amenities-box {
    padding: 40px 20px;
  }
}
.amenities-box .amenities-icon {
  color: var(--tj-color-theme-primary);
  font-size: 75px;
  height: 75px;
  width: 75px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 30px;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
  -webkit-transition: 0.6s all ease-in-out;
  transition: 0.6s all ease-in-out;
}
.amenities-box .amenities-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.amenities-box .amenities-icon svg {
  max-width: 75px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.amenities-box .amenities-item-title {
  margin-bottom: 25px;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .amenities-box .amenities-item-title {
    font-size: 20px;
  }
}
.amenities-box .amenities-thumb {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.amenities-box .overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
}
.amenities-box p:last-child {
  margin-bottom: 0;
}
.amenities-box:hover .overlay, .amenities-box:hover .amenities-thumb {
  visibility: visible;
  opacity: 1;
}
.amenities-box:hover .amenities-icon {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

/* !END: Theme Amenities CSS */
/**----------------------------------------
START: Theme Gallery CSS
----------------------------------------*/
.gallery-section {
  position: relative;
}

.beauly-property-tabs {
  position: relative;
  overflow: hidden;
}
.beauly-property-tabs .gallery-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 60px;
  gap: 50px;
  padding-left: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-property-tabs .gallery-filter {
    margin-bottom: 40px;
    gap: 40px;
  }
}
.beauly-property-tabs .gallery-filter li {
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-text-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-property-tabs .gallery-filter li {
    font-size: 18px;
  }
}
.beauly-property-tabs .gallery-filter li:hover {
  color: var(--tj-color-theme-primary);
}
.beauly-property-tabs .gallery-filter li.active {
  color: var(--tj-color-theme-primary);
  text-decoration: line-through;
}
.beauly-property-tabs .property-gallery {
  position: relative;
}
.beauly-property-tabs .property-gallery .item {
  width: 1030px;
  height: 620px;
  margin: 0 auto;
  position: relative;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .beauly-property-tabs .property-gallery .item {
    max-width: 730px;
    width: 100%;
    height: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-property-tabs .property-gallery .item {
    max-width: 500px;
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-property-tabs .property-gallery .item {
    max-width: 100%;
    height: 350px;
  }
}
.beauly-property-tabs .property-gallery .item img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.beauly-property-tabs .property-gallery .item .video-btn a {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  font-size: 45px;
  width: 120px;
  height: 120px;
  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;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.beauly-property-tabs .property-gallery .item .video-btn a:hover {
  background-color: var(--tj-color-common-white);
  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) {
  .beauly-property-tabs .property-gallery .item .video-btn a {
    font-size: 30px;
    width: 80px;
    height: 80px;
  }
}
@media (max-width: 575px) {
  .beauly-property-tabs .property-gallery .item .video-btn a {
    font-size: 25px;
    width: 70px;
    height: 70px;
  }
}
.beauly-property-tabs .property-gallery .item iframe {
  width: 100%;
  height: 100%;
}
.beauly-property-tabs .owl-carousel .owl-nav > div {
  font-size: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div {
    font-size: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div {
    font-size: 40px;
  }
}
.beauly-property-tabs .owl-carousel .owl-nav > div.owl-next {
  left: auto;
  right: 60px;
}
.beauly-property-tabs .owl-carousel .owl-nav > div.owl-next.disabled button {
  opacity: 0.5;
  cursor: default;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-next {
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-next {
    right: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-next {
    right: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-next {
    right: 10px;
  }
}
.beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev {
  left: 60px;
}
.beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev.disabled button {
  opacity: 0.5;
  cursor: default;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev {
    left: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev {
    left: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev {
    left: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-property-tabs .owl-carousel .owl-nav > div.owl-prev {
    left: 10px;
  }
}

.gallery-section-2 .gallery-top {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  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) {
  .gallery-section-2 .gallery-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: left;
        -ms-flex-align: left;
            align-items: left;
    margin-bottom: 40px;
  }
}
.gallery-section-2 .gallery-top .nav-tabs {
  border-bottom: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
.gallery-section-2 .gallery-top .nav-tabs .nav-link {
  color: var(--tj-color-text-body);
  font-size: 22px;
  font-weight: var(--tj-fw-medium);
  border: none;
  padding: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .gallery-section-2 .gallery-top .nav-tabs .nav-link {
    font-size: 18px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .gallery-section-2 .gallery-top .nav-tabs .nav-link {
    font-size: 18px;
    gap: 40px;
  }
}
.gallery-section-2 .gallery-top .nav-tabs .active {
  background-color: transparent;
  color: var(--tj-color-theme-primary);
  text-decoration: line-through;
}
.gallery-section-2 .tab-content {
  position: relative;
}
.gallery-section-2 .tab-content .property-gallery {
  position: relative;
}
.gallery-section-2 .tab-content .property-gallery .item {
  min-height: 480px;
}
.gallery-section-2 .tab-content .property-gallery .item img {
  min-height: 480px;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery-section-2 .tab-content .property-gallery .item iframe {
  min-height: 480px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .gallery-section-2 .tab-content .property-gallery .item {
    min-height: 400px;
  }
  .gallery-section-2 .tab-content .property-gallery .item iframe,
  .gallery-section-2 .tab-content .property-gallery .item img {
    min-height: 400px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .gallery-section-2 .tab-content .floor-design {
    margin-top: 20px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .carousel {
  position: inherit;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gallery-section-2 .beauly-gallery-wrap .carousel {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .carousel-inner {
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .gallery-section-2 .beauly-gallery-wrap .carousel-inner {
    margin-bottom: 15px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .carousel-inner .gallery-inner-thumb img {
  width: 100%;
  height: 395px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .gallery-section-2 .beauly-gallery-wrap .carousel-inner .gallery-inner-thumb img {
    height: 300px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav {
  position: inherit;
  margin: 0;
  -webkit-column-gap: 25px;
     -moz-column-gap: 25px;
          column-gap: 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) {
  .gallery-section-2 .beauly-gallery-wrap .gallery-nav {
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav [data-bs-target] {
  background-color: transparent;
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  text-indent: inherit;
  border: none;
  opacity: 1;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav [data-bs-target] img {
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .gallery-section-2 .beauly-gallery-wrap .gallery-nav [data-bs-target] img {
    height: 90px;
  }
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right [data-bs-slide-to] {
  background-color: var(--tj-color-theme-bg-primary-blur);
  position: absolute;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right [data-bs-slide-to="0"] {
  width: 153px;
  height: 153px;
  left: 19.2%;
  top: 8.9%;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right [data-bs-slide-to="1"] {
  top: 9%;
  right: 24%;
  height: 183px;
  width: 141px;
  left: auto;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right [data-bs-slide-to="2"] {
  bottom: 26.5%;
  left: 19.2%;
  height: 156px;
  width: 154px;
}
.gallery-section-2 .beauly-gallery-wrap .gallery-nav.right [data-bs-slide-to="3"] {
  bottom: 13%;
  right: 5%;
  height: 175px;
  width: 275px;
}
.gallery-section-2 .gallery-item-wrap .owl-nav {
  display: none;
}
.gallery-section-2 .gallery-box-wrap .owl-nav {
  display: none;
}

.video-btn a {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  font-size: 35px;
  width: 120px;
  height: 120px;
  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;
  line-height: 1;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 2;
}
.video-btn a:hover {
  background-color: var(--tj-color-common-white);
  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) {
  .video-btn a {
    font-size: 20px;
    width: 80px;
    height: 80px;
    margin-top: 10px;
  }
}

/* !END: Theme Gallery CSS */
/**----------------------------------------
START: Theme Apartment CSS
----------------------------------------*/
.apartment-section {
  padding-bottom: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-section {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-section .apartment-content {
    overflow: hidden;
    overflow: scroll;
  }
}

.beauly-table {
  background-color: transparent;
  margin-bottom: 0;
}
.beauly-table thead {
  background: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.beauly-table thead th {
  color: var(--tj-color-common-white);
}
.beauly-table tbody tr {
  border-bottom: 1px solid rgba(189, 140, 98, 0.3);
}
.beauly-table tbody tr:last-child {
  border-bottom: 1px solid transparent;
  padding-bottom: 0;
}
.beauly-table tbody tr:hover th, .beauly-table tbody tr:hover td {
  color: var(--tj-color-theme-primary);
  vertical-align: middle;
}
.beauly-table tbody tr th,
.beauly-table tbody tr td {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.beauly-table tbody tr th a,
.beauly-table tbody tr td a {
  text-decoration: underline;
}

.beauly-table > :not(caption) > * > * {
  color: var(--tj-color-grey-1);
  font-size: 18px;
  font-weight: 400;
  padding: 19px 45px;
  vertical-align: middle;
  background-color: transparent;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .beauly-table > :not(caption) > * > * {
    padding: 19px 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-table > :not(caption) > * > * {
    padding: 25px 10px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-table > :not(caption) > * > * {
    font-size: 16px;
    padding: 15px 10px;
  }
}

.apartment-2 {
  padding-top: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-2 {
    padding-top: 20px;
  }
}
.apartment-2 .apartment-content .beauly-table thead {
  background-color: var(--tj-color-theme-bg-dark-light);
}

.beauly-apartment-carousel .item {
  max-width: 1020px;
  margin: 0 auto;
  width: 100%;
}
.beauly-apartment-carousel .owl-nav > div {
  font-size: 80px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .beauly-apartment-carousel .owl-nav > div {
    font-size: 60px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-apartment-carousel .owl-nav > div {
    font-size: 40px;
  }
}
.beauly-apartment-carousel .owl-nav > div.owl-next {
  left: auto;
  right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-apartment-carousel .owl-nav > div.owl-next {
    right: 10px;
  }
}
.beauly-apartment-carousel .owl-nav > div.owl-prev {
  left: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .beauly-apartment-carousel .owl-nav > div.owl-prev {
    left: 10px;
  }
}

.apartment-item {
  position: relative;
}
.apartment-item .apartment-thumb img {
  width: 100%;
}
.apartment-item .apartment-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;
  row-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 80px;
  width: 100%;
  padding: 15px 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) {
  .apartment-item .apartment-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apartment-item .apartment-content {
    padding: 15px 10px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-item .apartment-content .apartment-content-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    row-gap: 10px;
  }
}
.apartment-item .apartment-content .apartment-content-right .apartment-title {
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 1;
  border-right: 1px solid var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-item .apartment-content .apartment-content-right .apartment-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apartment-item .apartment-content .apartment-content-right .apartment-title {
    font-size: 15px;
    padding-right: 10px;
    margin-right: 10px;
  }
}
.apartment-item .apartment-content .apartment-content-right .apartment-price {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-theme-primary);
  padding-right: 20px;
  margin-right: 20px;
  margin-bottom: 0;
  line-height: 1;
  border-right: 1px solid var(--tj-color-common-white);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-item .apartment-content .apartment-content-right .apartment-price {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apartment-item .apartment-content .apartment-content-right .apartment-price {
    font-size: 15px;
    padding-right: 10px;
    margin-right: 10px;
  }
}
.apartment-item .apartment-content .apartment-content-right .apartment-information-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.apartment-item .apartment-content .apartment-content-right .apartment-information-list li {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
}
.apartment-item .apartment-content .apartment-content-right .apartment-information-list li i {
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-item .apartment-content .apartment-content-right .apartment-information-list li {
    font-size: 15px;
  }
}
.apartment-item .apartment-content .apartment-btn-wrap .apartment-btn {
  color: var(--tj-color-common-white);
  font-size: 16px;
  padding: 8px 25px;
  border: 1px solid var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .apartment-item .apartment-content .apartment-btn-wrap .apartment-btn {
    font-size: 15px;
    padding: 6px 10px;
  }
}
.apartment-item .apartment-content .apartment-btn-wrap .apartment-btn:hover {
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
}

/* !END: Theme Apartment CSS */
/**----------------------------------------
START: Theme Request CSS
----------------------------------------*/
.beauly-contact-form {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
}
.beauly-contact-form .form-group {
  margin-bottom: 30px;
}
.beauly-contact-form .tj-primary-btn {
  width: 100%;
}

.form-group .form-control {
  background-color: var(--tj-color-theme-bg-dark-2);
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  padding: 15px;
  letter-spacing: 2px;
  border: 1px solid var(--tj-color-border-6);
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
}
.form-group .form-control::-webkit-input-placeholder {
  color: var(--tj-color-grey-10);
}
.form-group .form-control:-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.form-group .form-control::-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.form-group .form-control:-ms-input-placeholder {
  color: var(--tj-color-grey-10);
}
.form-group .address {
  height: 120px;
}

/* !END: Theme Request CSS */
/**----------------------------------------
START: Theme Follow CSS
----------------------------------------*/
.follow-section .follow-container {
  max-width: 1428px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.follow-section .follow-item-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .follow-section .follow-item-wrap {
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 15px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .follow-section .follow-item-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
.follow-section .follow-item-wrap .follow-item {
  position: relative;
}
.follow-section .follow-item-wrap .follow-item:before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}
.follow-section .follow-item-wrap .follow-item:hover:before {
  visibility: visible;
  opacity: 1;
}
.follow-section .follow-item-wrap .follow-item img {
  width: 100%;
}
.follow-section .follow-item-wrap .follow-item .follow-icon {
  color: var(--tj-color-common-white);
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
      -ms-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.follow-section .follow-item-wrap .follow-item:hover .follow-icon {
  -webkit-transform: translate(-50%, -50%) scale(1);
      -ms-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
}
.follow-section .follow-btn {
  line-height: 1;
}
.follow-section .follow-btn.btn-2 .tj-primary-btn {
  color: var(--tj-color-theme-primary);
  background-color: transparent;
  border: 1px solid var(--tj-color-theme-primary);
}

/* !END: Theme Follow CSS */
/**----------------------------------------
START: Theme Project CSS
----------------------------------------*/
.project-section {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-section {
    padding-bottom: 30px;
  }
}

.project-item {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.project-item .project-text {
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  right: 15px;
  top: 15px;
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.project-item .project-text span {
  color: var(--tj-color-common-white);
  font-size: 18px;
  font-weight: 400;
  display: block;
}
.project-item .project-thumb {
  overflow: hidden;
}
.project-item .project-thumb a {
  display: block;
}
.project-item .project-thumb a img {
  min-height: 540px;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-item .project-thumb a img {
    min-height: 400px;
  }
}
@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) {
  .project-item .project-thumb a img {
    min-height: 350px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-item .project-thumb a img {
    min-height: 400px;
  }
}
.project-item .project-content {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 25px 30px;
}
.project-item .project-content .project-item-title {
  margin-bottom: 15px;
}
.project-item .project-content .project-list {
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.project-item .project-content .project-list li {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.project-item .project-content .project-list li i {
  font-size: 16px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.project-item .project-content .project-list li span {
  font-size: 16px;
}
.project-item:hover .project-thumb img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.project-2 {
  padding-bottom: 0;
  overflow: hidden;
}
.project-2 .custom-next-prev-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  max-width: 160px;
  width: 100%;
  margin-left: auto;
  margin-bottom: 60px;
}
.project-2 .custom-next-prev-wrap.disabled {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-2 .custom-next-prev-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-2 .custom-next-prev-wrap {
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}
.project-2 .custom-next-prev-wrap .owl-next,
.project-2 .custom-next-prev-wrap .owl-prev {
  color: var(--tj-color-common-white);
  font-size: 20px;
  width: 60px;
  line-height: 1;
  padding: 20px 0;
  text-align: center;
  border: 1px solid var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.project-2 .custom-next-prev-wrap .owl-next button,
.project-2 .custom-next-prev-wrap .owl-prev button {
  -webkit-transition: none;
  transition: none;
}
.project-2 .custom-next-prev-wrap .owl-next button i,
.project-2 .custom-next-prev-wrap .owl-prev button i {
  -webkit-transition: none;
  transition: none;
}
.project-2 .custom-next-prev-wrap .owl-next:hover,
.project-2 .custom-next-prev-wrap .owl-prev:hover {
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
}

.project-item.item-2 {
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
}
.project-item.item-2 .project-thumb img {
  min-height: 545px;
  max-height: 545px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .project-item.item-2 .project-thumb img {
    min-height: 450px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-item.item-2 .project-thumb img {
    min-height: 400px;
  }
}
@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) {
  .project-item.item-2 .project-thumb img {
    min-height: 350px;
  }
}
.project-item.item-2 .project-content {
  width: 90%;
  position: absolute;
  bottom: -200px;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-item.item-2 .project-content {
    width: 95%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-item.item-2 .project-content {
    padding: 20px 15px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-item.item-2 .project-content {
    bottom: 20px;
    width: 85%;
    padding: 15px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-item.item-2 .project-content .project-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-item.item-2 .project-content .project-title {
    font-size: 16px;
  }
}
.project-item.item-2 .project-content h4 {
  font-family: var(--tj-ff-body);
  font-size: 30px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .project-item.item-2 .project-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.project-item.item-2 .project-text {
  background-color: transparent;
  padding: 0;
  top: 25px;
  right: 15px;
}
.project-item.item-2 .project-text span {
  font-size: 24px;
  line-height: 1;
}
.project-item.item-2 .round-shape {
  background-color: var(--tj-color-theme-primary);
  height: 200px;
  width: 200px;
  border-radius: 50%;
  position: absolute;
  top: -100px;
  right: -100px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-item.item-2:hover .project-content {
  bottom: 30px;
}

/* !END: Theme Project CSS */
/**----------------------------------------
START: Theme Faq CSS
----------------------------------------*/
.faq-section {
  width: 100%;
  height: 700px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section {
    height: auto;
  }
}
.faq-section.interactive-image .icon-radio-checked {
  display: block;
}
.faq-section.interactive-image .hotspot {
  font-size: inherit;
}
.faq-section.interactive-image .hotspot::before {
  content: "";
}
.faq-section.interactive-image .hotspot > span {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-bg-dark-light);
  width: 40px;
  height: 40px;
  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;
  border-radius: 50%;
  line-height: 1;
  font-family: var(--tj-ff-body);
  font-size: var(--tj-fs-body);
  font-weight: var(--tj-fw-sbold);
  -webkit-animation: ripple_white 2s linear infinite;
          animation: ripple_white 2s linear infinite;
}
.faq-section.interactive-image .hotspot:hover span, .faq-section.interactive-image .hotspot.active span {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.faq-section.interactive-image .item {
  margin-top: 10px;
  display: block !important;
  visibility: hidden;
}
.faq-section.interactive-image .hotspot:hover + .item {
  visibility: visible;
}
.faq-section .location-mark {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section .location-mark {
    display: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-section .location-mark {
    display: none;
  }
}
.faq-section .location-mark > div {
  position: absolute;
  right: 28%;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-animation: ripple_white 2s linear infinite;
  animation: ripple_white 2s linear infinite;
  border-radius: 50%;
}
.faq-section .location-mark > div:nth-child(2) {
  right: 40%;
  top: 60%;
}
.faq-section .location-mark > div:nth-child(3) {
  right: 50%;
  top: 30%;
}
.faq-section .location-mark > div:nth-child(4) {
  right: 57%;
  top: 67%;
}
.faq-section .location-mark > div > span {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-bg-dark-light);
  font-weight: 600;
  width: 40px;
  padding: 12px 0;
  line-height: 1;
  text-align: center;
  display: block;
  border-radius: 50%;
}
.faq-section .location-mark > div h3 {
  background-color: var(--tj-color-theme-bg-dark-light);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 20px;
  margin-bottom: 0;
  width: 155px;
  position: absolute;
  left: 50%;
  top: -15px;
  -webkit-transform: translate(-50%, -100%);
      -ms-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  visibility: hidden;
  opacity: 0;
}
.faq-section .location-mark > div h3:before {
  background-color: var(--tj-color-theme-bg-dark-light);
  width: 15px;
  height: 15px;
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7.5px;
  -webkit-transform: translateX(-50%) rotate(45deg);
      -ms-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}
.faq-section .location-mark > div h3 span {
  display: block;
  font-size: 18px;
  margin-top: 10px;
}
.faq-section .location-mark > div:hover h3 {
  visibility: visible;
  opacity: 1;
}
.faq-section .faq-content {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 30px;
  width: 400px;
  border-radius: 5px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section .faq-content {
    width: 100%;
  }
}
.faq-section .faq-content .accordion-item {
  background-color: transparent;
  border: none;
}
.faq-section .faq-content .accordion-item:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--tj-color-border-7);
}
.faq-section .faq-content .accordion-item .accordion-button {
  background-color: transparent;
  color: var(--tj-color-common-white);
  font-size: 20px;
  padding: 0;
}
.faq-section .faq-content .accordion-item .accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-section .faq-content .accordion-item .accordion-button:not(.collapsed) {
  color: var(--tj-color-theme-primary);
  line-height: 1;
  margin-bottom: 15px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-section .faq-content .accordion-item .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  content: "+";
  font-weight: 500;
  height: auto;
  width: auto;
  font-size: 16px;
}
.faq-section .faq-content .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f068";
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.faq-section .faq-content .accordion-item .accordion-collapse .accordion-body {
  position: relative;
  padding: 0;
  z-index: 2;
}

@-webkit-keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.08), 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
  }
}
@keyframes ripple_white {
  0% {
    -webkit-box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2), 0px 0px 0px 5px rgba(255, 255, 255, 0.2), 0px 0px 0px 12px rgba(255, 255, 255, 0.2);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.2), 0px 0px 0px 5px rgba(255, 255, 255, 0.2), 0px 0px 0px 12px rgba(255, 255, 255, 0.2);
  }
  100% {
    -webkit-box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
    box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.08), 0px 0px 0px 12px rgba(255, 255, 255, 0.08), 0px 0px 0px 18px rgba(255, 255, 255, 0);
  }
}
.faq-section-2 {
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-section-2 {
    padding-bottom: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-section-2 {
    padding-bottom: 40px;
  }
}

.faq-info .accordion .accordion-item {
  background-color: transparent;
  border: 1px solid var(--tj-color-border-5);
  margin-bottom: 20px;
  border: 1px solid var(--tj-color-border-5);
}
.faq-info .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-info .accordion .accordion-item .accordion-button {
  background-color: transparent;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-size: 20px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-info .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: var(--tj-color-theme-bg-dark-light);
  color: var(--tj-color-theme-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-info .accordion .accordion-item .accordion-button:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  content: "\f078";
  font-weight: 500;
  height: auto;
  width: auto;
  font-size: 16px;
}
.faq-info .accordion .accordion-item .accordion-button:not(.collapsed):after {
  content: "\f077";
  color: var(--tj-color-theme-primary);
  -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
          transform: rotate(0);
}
.faq-info .accordion .accordion-item .accordion-body:not(.collapsed) {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding-top: 0;
  color: var(--tj-color-common-white);
}

/* !END: Theme Faq CSS */
/**----------------------------------------
START: Theme Interactive Image CSS
----------------------------------------*/
@-webkit-keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
            transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
            transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.tj_interactive_image {
  display: block;
  position: relative;
  z-index: 1;
  max-height: 700px;
}
.tj_interactive_image .tj_interactive_image_media {
  position: relative;
  z-index: 1;
}
.tj_interactive_image .tj_interactive_image_media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
}
.tj_interactive_image .tj_interactive_image_media img {
  width: 100%;
}
@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_interactive_image .tj_interactive_image_media {
    display: inline-block;
  }
}
.tj_interactive_image .tj_interactive_image_item_dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 2;
  font-family: var(--tj-ff-body);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  cursor: pointer;
  background: var(--tj-color-common-white);
  color: var(--tj-color-theme-bg-dark-light);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 800ms ease;
  transition: all 800ms ease;
}
.tj_interactive_image .tj_interactive_image_item_dot::after {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  width: 4em;
  height: 4em;
  z-index: -2;
  position: absolute;
  top: -20%;
  left: -20%;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: pulsate 1.2s ease-out infinite;
          animation: pulsate 1.2s ease-out infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj_interactive_image .tj_interactive_image_item_dot {
    width: 30px !important;
    height: 30px !important;
  }
  .tj_interactive_image .tj_interactive_image_item_dot::after {
    width: 3em;
    height: 3em;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_interactive_image .tj_interactive_image_item_dot {
    font-size: 12px;
    width: 25px !important;
    height: 25px !important;
  }
  .tj_interactive_image .tj_interactive_image_item_dot::after {
    width: 2.5em;
    height: 2.5em;
  }
}
.tj_interactive_image .tj_interactive_image_item_dot.tj_interactive_image_item_dot_on {
  background: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.tj_interactive_image .tj_interactive_image_item_dot.tj_interactive_image_item_dot_on::after {
  -webkit-animation: none;
          animation: none;
}
.tj_interactive_image .tj_interactive_image_item_dot .tj_interactive_image_item_dot_tooltip {
  font-size: 18px;
  line-height: 1;
  font-family: var(--tj-ff-heading);
  text-transform: capitalize;
  width: 150px;
  position: absolute;
  margin-top: -8em;
  padding: 15px 10px;
  background: var(--tj-color-theme-bg-dark-light);
  color: var(--tj-color-common-white);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  opacity: 0;
}
.tj_interactive_image .tj_interactive_image_item_dot .tj_interactive_image_item_dot_tooltip::after {
  content: "";
  display: block;
  border: 10px solid var(--tj-color-theme-bg-dark-light);
  border-right-color: transparent !important;
  border-left-color: transparent !important;
  border-bottom-color: transparent !important;
  position: absolute;
  left: 50%;
  bottom: -20px;
  margin: 0 -0.5em;
}
.tj_interactive_image .tj_interactive_image_item_dot .tj_interactive_image_item_dot_tooltip span {
  display: block;
  font-size: 80%;
  margin-top: 10px;
}
.tj_interactive_image .tj_interactive_image_item_dot:hover .tj_interactive_image_item_dot_tooltip {
  opacity: 1;
}
.tj_interactive_image .tj_interactive_image_content {
  background-color: var(--tj-color-theme-bg-dark-light);
  position: absolute;
  left: 15%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  max-width: 450px;
  width: 100%;
  padding: 30px;
  border-radius: 5px;
}
@media only screen and (min-width: 1400px) and (max-width: 1600px) {
  .tj_interactive_image .tj_interactive_image_content {
    left: 10%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .tj_interactive_image .tj_interactive_image_content {
    left: 6%;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj_interactive_image .tj_interactive_image_content {
    left: 1%;
    max-width: 400px;
  }
}
@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_interactive_image .tj_interactive_image_content {
    position: relative;
    top: initial;
    left: 50%;
    -webkit-transform: translateY(0) translateX(-50%);
        -ms-transform: translateY(0) translateX(-50%);
            transform: translateY(0) translateX(-50%);
    margin: 60px 0;
  }
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item {
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item:not(:last-child) {
  border-bottom: 1px solid var(--tj-color-border-5);
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item:first-child {
  padding-top: 0;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item:last-child {
  padding-bottom: 0;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_title,
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_number {
  font-size: 20px;
  line-height: 1.1;
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
  text-transform: capitalize;
  position: relative;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_title {
  padding-right: 20px;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_title::after {
  content: "\f067";
  font-family: "Font Awesome 6 Pro";
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  width: auto;
  height: auto;
  position: absolute;
  right: 0;
  top: 4px;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_number {
  float: left;
  padding-right: 15px;
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_text {
  padding: 0;
  display: block;
  overflow: hidden;
  height: 0;
  opacity: 0;
  -webkit-transition: 350ms ease all;
  transition: 350ms ease all;
  width: 95%;
}
@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) {
  .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_text {
    width: 100%;
  }
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_title,
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_number {
  color: var(--tj-color-theme-primary);
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_title::after {
  content: "\f068";
}
.tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_text {
  display: block;
  opacity: 1;
  height: auto;
  padding-top: 15px;
}

/* !END: Theme Interactive Image CSS */
/**----------------------------------------
START: Theme Blog CSS
----------------------------------------*/
.tj_blog_inner {
  display: grid;
  gap: 24px;
  grid-template-columns: 49% 49%;
  grid-template-rows: 185px 185px 185px;
  overflow: hidden;
}
@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_blog_inner {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }
}
.tj_blog_inner .post-card:first-child {
  grid-column: 1/2;
  grid-row: 1/4;
}
.tj_blog_inner .post-card .post-thumb {
  max-height: 370px;
}
.tj_blog_inner .post-card .post-thumb a {
  display: inline-block;
  height: 100%;
  width: 100%;
}
.tj_blog_inner .post-card .post-thumb a img {
  width: 100%;
  height: 370px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj_blog_inner .post-card .post-thumb {
    max-height: 300px;
  }
  .tj_blog_inner .post-card .post-thumb a img {
    height: 300px;
  }
}

.post-card {
  background-color: var(--tj-color-theme-bg-dark-light);
}
.post-card .post-content {
  padding: 30px;
}
@media (max-width: 575px) {
  .post-card .post-content {
    padding: 30px 20px;
  }
}
.post-card .post-content .post-content-title {
  display: inline-block;
  max-width: 420px;
  width: 100%;
  line-height: 1.4;
  margin: 0 0 15px 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .post-content-title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-card .post-content .post-content-title br {
    display: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .post-card .post-content .post-content-title {
    font-size: 22px;
  }
}
.post-card .post-content p {
  max-width: 450px;
  width: 100%;
}
.post-card .post-content p:last-child {
  margin-bottom: 0;
}
.post-card .post-thumb {
  overflow: hidden;
}
.post-card:hover .post-thumb img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.post-card.sticky .post-content {
  border-top: 3px solid var(--tj-color-theme-primary);
}
.post-card:hover .post-content .post-content-title a {
  background-size: 100% 2px;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px transparent;
            box-shadow: 0 0 0 40px transparent;
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
  }
  100% {
    -webkit-box-shadow: 0 0 0 40px transparent;
            box-shadow: 0 0 0 40px transparent;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.blog__standard {
  padding-right: 20px;
}
@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) {
  .blog__standard {
    padding-right: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog__standard {
    margin-bottom: 60px;
  }
}
.blog__standard .post-card {
  margin-bottom: 40px;
}
.blog__standard .post-card:last-child {
  margin-bottom: 0;
}
.blog__standard .post-card .tj_post-thumb {
  overflow: hidden;
  height: 470px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog__standard .post-card .tj_post-thumb {
    height: 350px;
  }
}
.blog__standard .post-card .tj_post-thumb.tj__video {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  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;
}
.blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary);
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px dashed var(--tj-color-theme-primary);
  border-radius: 50%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
@media (max-width: 575px) {
  .blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  .blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video::after {
    width: 80px;
    height: 80px;
  }
}
.blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video i {
  margin-left: 5px;
}
.blog__standard .post-card .tj_post-thumb.tj__video .video-play-btn .play-video:hover {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
}
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev,
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
  width: 50px;
  height: 50px;
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  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;
  line-height: 1;
}
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev i,
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next i {
  -webkit-transition: none;
  transition: none;
}
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev:hover,
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev,
  .blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
    width: 40px;
    height: 40px;
  }
}
.blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
  left: auto;
  right: 25px;
}
@media (max-width: 575px) {
  .blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev {
    left: 10px;
  }
  .blog__standard .post-card .tj_post-thumb.tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
    left: auto;
    right: 10px;
  }
}
.blog__standard .post-card .tj_post-thumb .post-thumb {
  display: block;
  height: 100%;
}
.blog__standard .post-card .tj_post-thumb .post-thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}
.blog__standard .post-card .post-content .post-content-title {
  max-width: 100%;
  width: auto;
  text-decoration: none;
}
.blog__standard .post-card .post-content .post-content-title a {
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(0, currentColor), to(currentColor));
  background-image: linear-gradient(to right, currentColor 0, currentColor 100%);
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 0 2px;
  -webkit-transition: all 0.3s, background-size 0.8s;
  transition: all 0.3s, background-size 0.8s;
}
.blog__standard .post-card .post-content .blog-stander__text {
  max-width: 100%;
  font-size: 16px;
}
.blog__standard .post-card .post-content .blog-stander__text p:last-child {
  margin-bottom: 0;
}
.blog__standard .post-card .post-content .tj-post__btn {
  margin-top: 30px;
}
.blog__standard .post-card .post-content .tj-post__btn .tj-primary-btn {
  font-size: 16px;
  padding: 17px 30px;
}
.blog__standard .post-card .post-content .tj-post__btn .tj-primary-btn i {
  margin-left: 5px;
}
.blog__standard .post-card.format-audio .tj_post-thumb {
  height: auto;
}
@media (max-width: 575px) {
  .blog__standard .post-card.format-audio .tj_post-thumb {
    height: 350px;
  }
}
.blog__standard .post-card.format-audio .tj_post-thumb iframe {
  width: 100%;
  overflow: hidden;
  border: none;
  margin-bottom: -6px;
}
.blog__standard .post-card:hover .post-content .post-content-title a {
  background-size: 100% 2px;
}
.blog__standard .not-found .search-form {
  position: relative;
}
.blog__standard .not-found .search-form .form-control {
  background-color: transparent;
  font-size: 16px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  height: 50px;
  border: 1px solid var(--tj-color-theme-primary);
  padding-right: 40px;
  color: var(--tj-color-common-white);
}
.blog__standard .not-found .search-form .form-control::-webkit-input-placeholder {
  color: var(--tj-color-grey-10);
}
.blog__standard .not-found .search-form .form-control:-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.blog__standard .not-found .search-form .form-control::-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.blog__standard .not-found .search-form .form-control:-ms-input-placeholder {
  color: var(--tj-color-grey-10);
}
.blog__standard .not-found .search-form .search-btn {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  font-size: 15px;
}

.blog-details .format-video .tj-post__thumb.tj__video {
  position: relative;
  z-index: 1;
}
.blog-details .format-video .tj-post__thumb.tj__video .popup-video {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--tj-color-theme-primary);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 35px;
  line-height: 1;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
  -webkit-animation: pulse 2s infinite;
          animation: pulse 2s infinite;
}
.blog-details .format-video .tj-post__thumb.tj__video .popup-video::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px dashed var(--tj-color-theme-primary);
  border-radius: 50%;
  -webkit-animation: rotate 20s linear infinite;
          animation: rotate 20s linear infinite;
}
@media (max-width: 575px) {
  .blog-details .format-video .tj-post__thumb.tj__video .popup-video {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  .blog-details .format-video .tj-post__thumb.tj__video .popup-video::after {
    width: 80px;
    height: 80px;
  }
}
.blog-details .format-video .tj-post__thumb.tj__video .popup-video i {
  margin-left: 5px;
}
.blog-details .format-video .tj-post__thumb.tj__video .popup-video:hover {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
}
.blog-details .format-audio .tj-post__thumb iframe {
  width: 100%;
  overflow: hidden;
  border: none;
  margin-bottom: -6px;
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery {
  height: 470px;
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev,
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
  width: 50px;
  height: 50px;
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  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;
  line-height: 1;
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev i,
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next i {
  -webkit-transition: none;
  transition: none;
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev:hover,
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media (max-width: 575px) {
  .blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev,
  .blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
    width: 40px;
    height: 40px;
  }
}
.blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
  left: auto;
  right: 25px;
}
@media (max-width: 575px) {
  .blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__prev {
    left: 10px;
  }
  .blog-details .format-gallery .tj-post__thumb .tj-post__gallery .tj-post-gallery__nav .tj-gallery-button__next {
    left: auto;
    right: 10px;
  }
}

.tj__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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.tj__pagination ul li .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
  height: 45px;
  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;
  border-radius: 50%;
  font-size: 18px;
  background-color: transparent;
  font-weight: var(--tj-fw-medium);
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.tj__pagination ul li .page-numbers:hover, .tj__pagination ul li .page-numbers.current {
  background-color: var(--tj-color-theme-primary);
}

.post-meta {
  margin-bottom: 20px;
}
.post-meta ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  align-items: center;
  gap: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .post-meta ul {
    gap: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .post-meta ul {
    gap: 15px;
  }
}
.post-meta ul li {
  font-size: 16px;
  line-height: 1;
}
.post-meta ul li a {
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.post-meta ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.post-meta ul li i {
  color: var(--tj-color-theme-primary);
  margin-right: 8px;
}
.post-meta ul li.category a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: transparent;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 30px;
  color: var(--tj-color-theme-primary);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: var(--tj-fw-medium);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.post-meta ul li.category a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.post-items {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 21px;
}
.post-items .post-item .post-content {
  padding: 40px 30px;
}
.post-items .post-item .post-content h3 {
  margin-bottom: 0;
}

.blog-2 .post-card {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-2 .post-card .post-content .post-content-title {
    font-size: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-wrapper {
    margin-bottom: 60px;
  }
}
.blog-wrapper .tj-blog .blog-details-thumb {
  margin-bottom: 40px;
  border-radius: 5px;
  overflow: hidden;
}
.blog-wrapper .tj-blog .tj-blog-title {
  font-size: 35px;
  margin-bottom: 20px;
}
.blog-wrapper .tj-blog .post-meta {
  margin-bottom: 15px;
}
.blog-wrapper .tj-blog .tj-entry__content {
  margin-top: 25px;
}
.blog-wrapper .tj-blog .desc {
  margin-bottom: 20px;
}
.blog-wrapper .tj-blog .blog-details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .blog-wrapper .tj-blog .blog-details-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 25px;
  }
}
.blog-wrapper .tj-blog .blog-details-box .blog-details-list {
  list-style: none;
}
.blog-wrapper .tj-blog .blog-details-box .blog-details-list li {
  font-size: 18px;
  color: var(--tj-color-common-white);
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin-bottom: 20px;
}
.blog-wrapper .tj-blog .blog-details-box .blog-details-list li:last-child {
  margin-bottom: 0;
}
.blog-wrapper .tj-blog .blog-details-box .blog-details-list li i {
  font-size: 25px;
  margin-top: 4px;
}
.blog-wrapper .tj-blog .details-para {
  max-width: 765px;
  width: 100%;
  margin-bottom: 50px;
}

.tj-comments__container .tj-post-comment__title {
  display: inline-block;
  font-size: 30px;
  line-height: 1;
  position: relative;
  margin-bottom: 60px;
}
.tj-comments__container .tj-post-comment__title:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.tj-comments__container .form-input .tj-form-control {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--tj-color-border-3);
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  padding: 15px;
  letter-spacing: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: 30px;
}
.tj-comments__container .form-input .tj-form-control::-webkit-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj-comments__container .form-input .tj-form-control:-moz-placeholder {
  color: var(--tj-color-grey-4);
}
.tj-comments__container .form-input .tj-form-control::-moz-placeholder {
  color: var(--tj-color-grey-4);
}
.tj-comments__container .form-input .tj-form-control:-ms-input-placeholder {
  color: var(--tj-color-grey-4);
}
.tj-comments__container .form-input .tj-form-control.msg-box {
  margin-bottom: 20px;
}
.tj-comments__container .form-input .tj-form-control.msg-box:focus-visible {
  outline: none;
}
.tj-comments__container .form-input .tj-form-control:focus {
  border-color: var(--tj-color-theme-primary);
}
.tj-comments__container .tj-primary-btn {
  width: auto;
  margin-top: 20px;
}
.tj-comments__container .tj-comments__wrap {
  margin-bottom: 50px;
}
.tj-comments__container .tj-comments__wrap .tj-comment__title h3 {
  font-size: 30px;
  line-height: 1;
  position: relative;
  margin-bottom: 60px;
}
.tj-comments__container .tj-comments__wrap .tj-comment__title h3:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -25px;
  left: 0;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--tj-color-border-5);
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__avatar {
  max-width: 120px;
  width: 100%;
  height: 120px;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__avatar img {
  width: 100%;
  height: 100%;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text {
  width: calc(100% - 140px);
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 {
  margin-bottom: 15px;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 a {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  text-decoration: none;
  text-transform: capitalize;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 a:hover {
  color: var(--tj-color-theme-primary);
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name span {
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text p {
  margin-bottom: 25px;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .comment__reply .comment-reply-link {
  color: var(--tj-color-theme-primary);
  font-size: 16px;
  padding: 5px 20px;
  border: 1px solid var(--tj-color-theme-primary);
  text-decoration: none;
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .comment__reply .comment-reply-link:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 25px;
  }
  .tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text {
    width: 100%;
  }
}
.tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .children {
  padding-left: 35px;
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
  list-style: none;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-wrapper {
    padding-top: 61px;
    border-top: 1px solid var(--tj-color-border-5);
  }
}

.sidebar-item {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 30px;
  font-size: 16px;
}
@media (max-width: 575px) {
  .sidebar-item {
    padding: 30px 20px;
  }
}
.sidebar-item:not(:last-child) {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-item.item-2 {
    margin-bottom: 0;
  }
}
.sidebar-item .sidebar-title {
  font-size: 30px;
  line-height: 1;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575px) {
  .sidebar-item .sidebar-title {
    font-size: 24px;
  }
}
.sidebar-item .sidebar-title:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.sidebar-item.widget_block .wp-block-archives__label,
.sidebar-item.widget_block .wp-block-search__label,
.sidebar-item.widget_block .wp-block-heading {
  font-size: 30px;
  font-weight: var(--tj-fw-sbold);
  font-family: var(--tj-ff-heading);
  color: var(--tj-color-common-white);
  line-height: 1;
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-item.widget_block .wp-block-archives__label,
  .sidebar-item.widget_block .wp-block-search__label,
  .sidebar-item.widget_block .wp-block-heading {
    font-size: 24px;
  }
}
.sidebar-item.widget_block .wp-block-archives__label:before,
.sidebar-item.widget_block .wp-block-search__label:before,
.sidebar-item.widget_block .wp-block-heading:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  width: 70px;
  height: 2px;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.sidebar-item .thumb-post {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-item .thumb-post > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.sidebar-item .thumb-post > li:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar-item .thumb-post > li .thumb {
  max-width: 110px;
  width: 100%;
  overflow: hidden;
}
.sidebar-item .thumb-post > li .thumb a {
  display: inline-block;
}
.sidebar-item .thumb-post > li .thumb a img {
  -webkit-transition: all 0.8s ease-in-out 0s;
  transition: all 0.8s ease-in-out 0s;
}
.sidebar-item .thumb-post > li .thumb-post-info {
  width: calc(100% - 130px);
}
.sidebar-item .thumb-post > li .thumb-post-info .post-meta {
  margin-bottom: 5px;
}
.sidebar-item .thumb-post > li .thumb-post-info .post-meta {
  margin-bottom: 15px;
}
.sidebar-item .thumb-post > li .thumb-post-info .post-meta li:not(:last-of-type) {
  margin-bottom: 0;
}
.sidebar-item .thumb-post > li .thumb-post-info .thumb-post-title {
  font-size: 17px;
  font-family: var(--tj-ff-body);
  line-height: 1.5em;
  max-width: 200px;
  width: 100%;
  margin-bottom: 0;
}
.sidebar-item .thumb-post > li .thumb-post-info .thumb-post-title a {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-item .thumb-post > li .thumb-post-info .thumb-post-title a:hover {
  color: var(--tj-color-theme-primary);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .sidebar-item .thumb-post > li .thumb-post-info {
    width: 100%;
  }
}
.sidebar-item .thumb-post > li:hover .thumb a img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.sidebar-item.widget_archive ul,
.sidebar-item .category-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-item.widget_archive ul li,
.sidebar-item .category-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidebar-item.widget_archive ul li a,
.sidebar-item .category-list li a {
  font-size: 16px;
  color: var(--tj-color-grey-9);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-item.widget_archive ul li a:hover,
.sidebar-item .category-list li a:hover {
  color: var(--tj-color-theme-primary);
}
.sidebar-item.widget_archive ul li span,
.sidebar-item .category-list li span {
  font-size: 16px;
  color: var(--tj-color-theme-primary);
}
.sidebar-item.widget_archive ul li:not(:last-of-type),
.sidebar-item .category-list li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 21px;
  border-bottom: 1px solid var(--tj-color-border-5);
}
.sidebar-item .tagcloud {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.sidebar-item .tagcloud 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;
  background-color: transparent;
  color: var(--tj-color-grey-1);
  text-transform: capitalize;
  font-size: 16px !important;
  padding: 8px 20px;
  border: 1px solid var(--tj-color-grey-9);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-item .tagcloud a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  border: 1px solid var(--tj-color-theme-primary);
}

.tj-widget__search .search-form {
  position: relative;
}
.tj-widget__search .search-form .form-control {
  background-color: transparent;
  font-size: 16px;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  height: 50px;
  border: 1px solid var(--tj-color-theme-primary);
  padding-right: 40px;
  color: var(--tj-color-common-white);
}
.tj-widget__search .search-form .form-control::-webkit-input-placeholder {
  color: var(--tj-color-grey-10);
}
.tj-widget__search .search-form .form-control:-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.tj-widget__search .search-form .form-control::-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.tj-widget__search .search-form .form-control:-ms-input-placeholder {
  color: var(--tj-color-grey-10);
}
.tj-widget__search .search-form .search-btn {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  font-size: 15px;
}

blockquote,
.wp-block-quote {
  background-color: var(--tj-color-theme-bg-dark-light);
  padding: 40px 35px;
  border: none;
  position: relative;
}
@media (max-width: 575px) {
  blockquote,
  .wp-block-quote {
    padding: 30px 25px;
  }
}
blockquote::before,
.wp-block-quote::before {
  content: "\f10e";
  font-family: "Font Awesome 6 Sharp";
  font-weight: var(--tj-fw-thin);
  position: static;
  display: block;
  line-height: 1;
  font-size: 40px;
  color: var(--tj-color-theme-primary);
  margin-bottom: 15px;
}
blockquote img,
.wp-block-quote img {
  margin-bottom: 20px;
}
blockquote p,
.wp-block-quote p {
  margin-bottom: 0;
}
blockquote cite,
.wp-block-quote cite {
  display: inline-block;
  font-size: 20px;
  color: var(--tj-color-theme-primary);
  padding-left: 50px;
  position: relative;
  line-height: 1;
  margin-top: 40px;
}
blockquote cite:before,
.wp-block-quote cite:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  width: 40px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.single-blog-tag-share {
  border-top: 1px solid var(--tj-color-border-5);
  padding-top: 31px;
  padding-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
.single-blog-tag-share .tj-tag {
  width: calc(100% - 170px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  gap: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .single-blog-tag-share .tj-tag {
    width: 100%;
  }
}
.single-blog-tag-share .tj-tag .tag__title {
  margin-bottom: 0;
  max-width: 67px;
  width: 100%;
  line-height: 1.6;
}
.single-blog-tag-share .tj-tag .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: 10px;
}
.single-blog-tag-share .tj-tag .tagcloud a {
  display: inline-block;
  background-color: var(--tj-color-theme-bg-dark-light);
  color: var(--tj-color-grey-1);
  font-size: 16px !important;
  text-transform: capitalize;
  padding: 8px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.single-blog-tag-share .tj-tag .tagcloud a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.single-blog-tag-share .shear-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.single-blog-tag-share .shear-link 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;
  border: 1px solid var(--tj-color-theme-primary);
  border-radius: 50%;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.single-blog-tag-share .shear-link a:hover {
  background-color: var(--tj-color-theme-primary);
}
.single-blog-tag-share.no-social-share .tj-tag {
  width: 100%;
}

.blog-details__pagination {
  padding-top: 31px;
  padding-bottom: 30px;
  border-top: 1px solid var(--tj-color-border-5);
  border-bottom: 1px solid var(--tj-color-border-5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.blog-details__pagination .tj_pagination-post {
  max-width: 48%;
  width: 100%;
  min-height: 145px;
  overflow: hidden;
}
.blog-details__pagination .tj_pagination-post.next {
  margin-left: auto;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner {
  padding: 35px 25px;
  background-color: var(--tj-color-theme-bg-dark-light);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img {
  max-width: 85px;
  width: 100%;
  height: 85px;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img a {
  display: inline-block;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-blog-img a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav {
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
  color: var(--tj-color-theme-primary);
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_nav i {
  margin-right: 10px;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner .tj-content .post_pagination_title .title {
  margin: 0;
  line-height: 1.4;
  word-break: break-word;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner.next_post {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.blog-details__pagination .tj_pagination-post .tj_pagination_post-inner.next_post .tj-content {
  text-align: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-details__pagination .tj_pagination-post {
    max-width: 335px;
  }
  .blog-details__pagination .tj_pagination-post.next {
    margin-left: auto;
  }
}
@media (max-width: 575px) {
  .blog-details__pagination .tj_pagination-post {
    max-width: 100%;
  }
}

/* !END: Theme Blog CSS */
/**----------------------------------------
START: Theme Sponsor CSS
----------------------------------------*/
.sponsor-section .sponsor-carousel .item img {
  max-width: 110px;
  margin: 0 auto;
  height: 40px;
}

.sponsor-2 {
  padding: 90px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sponsor-2 {
    padding: 60px 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sponsor-2 {
    padding: 50px 0;
  }
}

/* !END: Theme Sponsor CSS */
/**----------------------------------------
START: Theme Testimonial CSS
----------------------------------------*/
.testimonial-carousel .testi-item .testi-content {
  background-color: var(--tj-color-theme-bg-dark-deep);
  padding: 40px 30px;
}
.testimonial-carousel .testi-item .testi-content p {
  color: inherit;
  margin-bottom: 0;
  font-family: inherit;
}
.testimonial-carousel .testi-item .testi-author {
  background-color: var(--tj-color-theme-bg-dark-light-2);
  padding: 40px 30px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  position: relative;
}
.testimonial-carousel .testi-item .testi-author .author-thumb {
  height: 80px;
  width: 80px;
}
.testimonial-carousel .testi-item .testi-author .author-thumb img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-carousel .testi-item .testi-author .author-content .author-name {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-size: 22px;
}
.testimonial-carousel .testi-item .testi-author .author-content .author-prof {
  display: block;
}
.testimonial-carousel .testi-item .testi-author .author-quote {
  position: absolute;
  top: -27.5px;
  right: 40px;
  font-size: 50px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
.testimonial-carousel .owl-nav {
  display: none;
}
.testimonial-carousel .owl-dots {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
.testimonial-carousel .owl-dots span {
  background-color: #fff;
  height: 3px;
  width: 25px;
  display: block;
  border-radius: 30px;
}
.testimonial-carousel .owl-dots .active span {
  background-color: var(--tj-color-theme-primary);
}

/* !END: Theme Testimonial CSS */
/**----------------------------------------
START: Theme Cover CSS
----------------------------------------*/
.cover-wrap .cover-item {
  position: relative;
  height: 414px;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cover-wrap .cover-item {
    height: 300px;
  }
}
.cover-wrap .cover-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.cover-wrap .cover-item .cover-img {
  height: 100%;
}
.cover-wrap .cover-item .cover-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-wrap .cover-item .cover-img .cover-content {
  padding: 0 15px;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  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;
  z-index: 2;
}
.cover-wrap .cover-item .cover-img .cover-content .cover-title {
  margin-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cover-2 {
    padding-bottom: 40px;
  }
}
.cover-2 .cover-wrap > div {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cover-2 .cover-wrap > div {
    padding: 0 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cover-2 .cover-wrap .cover-item {
    margin-bottom: 20px;
  }
}
.cover-2 .cover-wrap .cover-item .cover-title {
  text-align: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cover-2 .cover-wrap .cover-item .cover-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .cover-2 .cover-wrap .cover-item .cover-img {
    height: 300px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cover-2 .cover-wrap .cover-item .cover-img {
    height: 200px;
  }
}

/* !END: Theme Cover CSS */
/**----------------------------------------
START: Theme Team CSS
----------------------------------------*/
.team-section.team-archive {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media (only screen and (min-width: 768px) and (max-width: 991px)) {
  .team-section.team-archive {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}
@media ((max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px)) {
  .team-section.team-archive {
    padding-top: 60px;
    padding-bottom: 30px;
  }
}

.team-item {
  margin-bottom: 30px;
}
.team-item .team-thumb {
  position: relative;
  overflow: hidden;
}
.team-item .team-thumb a {
  display: block;
  width: 100%;
}
.team-item .team-thumb a img {
  width: 100%;
}
.team-item .team-thumb .team-social {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.team-item .team-thumb .team-social li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  visibility: hidden;
  opacity: 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-item .team-thumb .team-social li {
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
    visibility: visible;
    opacity: 1;
  }
}
.team-item .team-thumb .team-social li:nth-child(2) {
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
}
.team-item .team-thumb .team-social li:nth-child(3) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.team-item .team-thumb .team-social li:nth-child(4) {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.team-item .team-thumb .team-social li a {
  background-color: var(--tj-color-theme-bg-dark-light);
  color: var(--tj-color-common-white);
  font-size: 18px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.team-item .team-thumb .team-social li a:hover {
  background-color: var(--tj-color-theme-primary);
}
.team-item:hover .team-social li {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.team-item .team-content {
  padding: 25px;
  border: 1px solid var(--tj-color-grey-9);
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.team-item .team-content .team-member {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-weight: 500;
  margin-bottom: 10px;
}
.team-item .team-content .team-member a:hover {
  color: var(--tj-secondary-color);
}
.team-item .team-content .member-prof {
  display: block;
  color: var(--tj-color-grey-9);
  line-height: 1;
}
.team-item:hover .team-content {
  background-color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
}
.team-item:hover .member-prof, .team-item:hover .team-member {
  color: var(--tj-color-common-white);
}

.team-2 .team-item {
  margin-bottom: 30px;
}
.team-2 .team-item .team-thumb .team-social a {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-theme-primary);
}
.team-2 .team-item .team-thumb .team-social a:hover {
  color: var(--tj-color-common-white);
}

.team-details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 45px;
     -moz-column-gap: 45px;
          column-gap: 45px;
  padding: 65px;
  max-width: 1075px;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-details-box {
    padding-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    row-gap: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-box {
    padding: 35px;
  }
}
.team-details-box .right-details .team-author {
  font-size: 30px;
  font-family: var(--tj-ff-body);
  font-weight: 500;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details-box .left-details {
    width: 100%;
  }
  .team-details-box .left-details img {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 576px) and (max-width: 767px) and (max-width: 575px), only screen and (max-width: 575px) and (min-width: 768px) and (max-width: 991px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px), only screen and (max-width: 575px) and (min-width: 576px) and (max-width: 767px), (max-width: 575px) and (max-width: 575px) {
  .team-details-box .left-details img {
    width: 100%;
  }
}

.team-details-social {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}
.team-details-social li a {
  background-color: var(--tj-color-theme-bg-dark-deep);
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  width: 50px;
  height: 50px;
  padding: 5px;
  line-height: 1;
  border: 1px solid var(--tj-color-border-6);
  border-radius: 2px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-details-social li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}

.team-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.team-details-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-list li {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}
.team-details-list li:last-child {
  margin-bottom: 0;
}
.team-details-list li .desc {
  color: var(--tj-color-grey-9);
  width: 200px;
  font-size: 18px;
  display: block;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-details-list li .desc {
    width: 135px;
  }
}
.team-details-list li .value {
  display: inline-block;
}

.team-details-content {
  background-color: var(--tj-color-theme-bg-dark-light);
  max-width: 1075px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 65px 65px 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-details-content {
    padding: 0 40px 40px 40px;
  }
}
.team-details-content .content-header {
  color: var(--tj-color-grey-9);
  font-family: var(--tj-ff-body);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
.team-details-content p:last-child {
  margin-bottom: 0;
}

/* !END: Theme Team CSS */
/**----------------------------------------
START: Theme CTA CSS
----------------------------------------*/
.cta-section {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  min-height: 600px;
  padding: 50px 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}
.cta-section::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: -1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .cta-section {
    min-height: 450px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-section {
    min-height: 350px;
  }
}

.cta-content .cta-btn a {
  background-color: var(--tj-color-common-white);
  height: 115px;
  width: 115px;
  text-align: center;
  border-radius: 50%;
  border: 5px solid var(--tj-color-theme-primary);
  margin: 0 auto;
  margin-bottom: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 50px;
  line-height: 1;
  color: var(--tj-color-theme-primary);
}
.cta-content .cta-btn a i {
  line-height: 1;
  width: 50px;
  height: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-content .cta-btn a {
    font-size: 40px;
    height: 80px;
    width: 80px;
  }
  .cta-content .cta-btn a i {
    width: 40px;
    height: 40px;
  }
}
.cta-content .cta-header {
  font-size: 45px;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  text-transform: capitalize;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .cta-content .cta-header {
    font-size: 24px;
  }
}

/* !END: Theme CTA CSS */
/**----------------------------------------
START: Theme Floor CSS
----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .floor-section {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .floor-section {
    padding-bottom: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .floor-item {
    margin-bottom: 40px;
  }
}
.floor-item .floor-thumb {
  height: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.floor-item .floor-thumb a img {
  height: 100%;
  width: auto;
}
.floor-item .floor-content .floor-title {
  color: var(--tj-color-grey-9);
  margin-bottom: 15px;
}
.floor-item .floor-content .floor-list {
  list-style: none;
  margin: 0;
  padding: 0;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.floor-item .floor-content .floor-list li {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.floor-item .floor-content .floor-list li i {
  font-size: 16px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.floor-item .floor-content .floor-list li span {
  font-size: 16px;
}
.floor-item.sold {
  position: relative;
}
.floor-item.sold .floor-thumb img {
  opacity: 0.5;
}
.floor-item.sold .floor-text {
  position: absolute;
  top: 20px;
  right: 70px;
}
.floor-item.sold .floor-text span {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  padding: 5px 15px;
}

/* !END: Theme Floor CSS */
/**----------------------------------------
START: Theme Page Header CSS
----------------------------------------*/
.page-header {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  min-height: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-header {
    min-height: 350px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-header {
    min-height: 100%;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .page-header {
    min-height: 250px;
    padding-top: 80px;
    padding-bottom: 80px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
@media (max-width: 575px) {
  .page-header {
    min-height: 250px;
    padding-top: 60px;
    padding-bottom: 60px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.page-header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(27, 28, 29, 0.5);
  z-index: -1;
}
.page-header .page-header-content .title {
  font-size: 70px;
  margin-bottom: 0;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-header .page-header-content .title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-header .page-header-content .title {
    font-size: 50px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .page-header .page-header-content .title {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .page-header .page-header-content .title {
    font-size: 35px;
  }
}
.page-header .page-header-content .breadcrumb__link {
  margin-top: 15px;
  font-size: 20px;
  color: var(--tj-color-common-white);
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .page-header .page-header-content .breadcrumb__link {
    margin-top: 10px;
  }
}
.page-header .page-header-content .breadcrumb__link span a {
  -webkit-transition: none;
  transition: none;
  color: var(--tj-color-common-white);
}
.page-header .page-header-content .breadcrumb__link span a:hover {
  text-decoration: underline;
}
.page-header .page-header-content .breadcrumb__link span.dvdr {
  padding: 0 10px 0 10px;
}
.page-header .page-header-content .breadcrumb__link span.dvdr i {
  font-size: 6px;
  position: relative;
  top: -3px;
  color: var(--tj-color-theme-primary);
}
.page-header .page-header-content .breadcrumb__link span.current-item {
  color: var(--tj-color-common-white);
  text-transform: none;
}
.page-header .page-header-content p {
  max-width: 560px;
  margin-bottom: 0;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

body.absolute_header .page-header {
  padding-top: 150px;
  padding-bottom: 100px;
  min-height: 450px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  body.absolute_header .page-header {
    min-height: 400px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  body.absolute_header .page-header {
    min-height: 100%;
    padding-top: 180px;
    padding-bottom: 70px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  body.absolute_header .page-header {
    min-height: 300px;
    padding-top: 140px;
    padding-bottom: 70px;
  }
}
@media (max-width: 575px) {
  body.absolute_header .page-header {
    min-height: 300px;
    padding-top: 150px;
    padding-bottom: 60px;
  }
}

/* !END: Theme Page Header CSS */
/**----------------------------------------
START: Theme Project Filter CSS
----------------------------------------*/
.project-filter-section {
  padding-bottom: 90px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-section {
    padding-bottom: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-filter-section {
    padding-bottom: 30px;
  }
}
.project-filter-section.tj_apartment {
  padding-bottom: 0;
}
.project-filter-section .filter-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-filter-section .filter-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-section .filter-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-filter-section .filter-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    margin-bottom: 40px;
  }
}
.project-filter-section .filter-box .project-filter {
  padding: 0;
  margin: 0;
  list-style: none;
}
.project-filter-section .filter-box .project-filter li {
  font-size: 18px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  line-height: 1;
  margin-right: 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .project-filter-section .filter-box .project-filter li {
    font-size: 16px;
    margin-right: 20px;
  }
}
.project-filter-section .filter-box .project-filter li:last-child {
  margin-right: 0;
}
.project-filter-section .filter-box .project-filter li.active {
  color: var(--tj-color-theme-primary);
  border-bottom: 1px solid var(--tj-color-theme-primary);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-filter-section .filter-box .project-filter li {
    margin-right: 20px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-filter-section .filter-box .project-filter li {
    margin-bottom: 20px;
  }
}
.project-filter-section .filter-box .project-location-search .ddl-select {
  background-color: transparent;
  font-size: 18px;
  border: 1px solid var(--tj-color-theme-primary);
  width: 412px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-filter-section .filter-box .project-location-search .ddl-select {
    width: 250px;
  }
}
.project-filter-section .filter-box .project-location-search .ddl-select:after {
  height: 12px;
  width: 12px;
  margin-top: -8px;
  right: 25px;
}
.project-filter-section .filter-box .project-location-search .ddl-select .list {
  width: 100%;
  border-radius: 0;
}
.project-filter-section .filter-box .project-location-search .ddl-select .list li {
  background-color: var(--tj-color-theme-primary);
  font-size: 16px;
  color: var(--tj-color-common-white);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.project-filter-section .filter-box .project-location-search .ddl-select .list li:hover {
  background-color: var(--tj-color-common-black);
}

/* !END: Theme Project Filter CSS */
/**----------------------------------------
START: Theme Apartment Info CSS
----------------------------------------*/
.apartment-info-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--tj-color-border-5);
}
.apartment-info-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item .left-item {
    margin-bottom: 30px;
    text-align: center;
  }
}
.apartment-info-item .left-item .info-number {
  color: var(--tj-color-theme-primary);
}
.apartment-info-item .left-item .info-title {
  color: var(--tj-color-grey-9);
  margin-bottom: 20px;
  line-height: 1;
}
.apartment-info-item .left-item .info-icon {
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.apartment-info-item .left-item .info-icon i {
  font-size: 16px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
}
.apartment-info-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.apartment-info-item ul li {
  font-size: 18px;
  color: var(--tj-color-grey-9);
  margin-bottom: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item ul li {
    margin-bottom: 10px;
  }
}
.apartment-info-item ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item ul {
    text-align: center;
    margin-bottom: 30px;
  }
}
.apartment-info-item .mid-item {
  margin-left: 60px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-info-item .mid-item {
    margin-left: 0;
    margin-top: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item .mid-item {
    margin-bottom: 30px;
    margin-left: 0;
    text-align: center;
  }
}
.apartment-info-item .mid-item.item-2 {
  margin-left: 0;
}
.apartment-info-item .mid-item img {
  max-width: 330px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .apartment-info-item .mid-item img {
    max-width: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-info-item .mid-item img {
    max-width: 230px;
  }
}
.apartment-info-item .right-item {
  text-align: right;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .apartment-info-item .right-item {
    text-align: left;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item .right-item {
    text-align: center;
  }
}
.apartment-info-item .right-item .right-title {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 400;
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .apartment-info-item .right-item .right-title {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .apartment-info-item .right-item .right-title {
    font-size: 32px;
  }
}

/* !END: Theme Apartment Info CSS */
/**----------------------------------------
START: Theme Contact CSS
----------------------------------------*/
.contact-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    grid-row-gap: 30px;
  }
}

.contact-item {
  border-right: 1px solid var(--tj-color-border-5);
}
.contact-item:last-child {
  border: none;
}
.contact-item .contact-icon {
  font-size: 45px;
  color: var(--tj-color-theme-primary);
  line-height: 1;
  margin-bottom: 15px;
}
.contact-item .contact-icon i {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.contact-item .contact-icon svg {
  max-width: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
}
.contact-item .contact-title {
  color: var(--tj-color-grey-9);
  line-height: 1;
  margin-bottom: 15px;
}
.contact-item .contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-item .contact-list li {
  font-size: 18px;
  margin-bottom: 0;
}

.map-wrapper iframe {
  height: 525px;
  width: 100%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .map-wrapper iframe {
    height: 450px;
  }
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Theme footer CSS
----------------------------------------*/
.footer-area {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area {
    background-size: 60%;
  }
}
.footer-area .footer-top {
  padding: 100px 0 25px 0;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top {
    padding: 50px 0 0 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top {
    padding: 60px 0 10px 0;
  }
}
.footer-area .footer-top .beauly-widget {
  margin-bottom: 50px;
  font-size: 16px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .beauly-widget {
    padding: 0;
  }
}
.footer-area .footer-top .beauly-widget .footer-thumb {
  margin-bottom: 40px;
}
.footer-area .footer-top .beauly-widget .footer-thumb a {
  display: inline-block;
}
.footer-area .footer-top .beauly-widget .footer-thumb a img {
  max-width: 215px;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area .footer-top .beauly-widget .footer-thumb a img {
    max-width: 200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .beauly-widget .footer-thumb a img {
    max-width: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .beauly-widget .footer-thumb {
    margin-bottom: 20px;
  }
}
.footer-area .footer-top .beauly-widget p {
  margin-bottom: 22px;
}
.footer-area .footer-top .beauly-widget .widget-social-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area .footer-top .beauly-widget .widget-social-list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.footer-area .footer-top .beauly-widget .widget-social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.footer-area .footer-top .beauly-widget .widget-social-list li a {
  background-color: var(--tj-color-theme-bg-dark-deep);
  color: var(--tj-color-theme-primary);
  font-size: 18px;
  width: 50px;
  padding: 15px 0;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--tj-color-border-6);
  border-radius: 0;
  display: block;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-area .footer-top .beauly-widget .widget-social-list li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-area .footer-top .beauly-widget .widget-social-list li a {
    width: 40px;
    padding: 10px 0;
  }
}
.footer-area .footer-top .beauly-widget .widget-header-title {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  font-weight: var(--tj-fw-medium);
  line-height: 1;
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .beauly-widget .widget-header-title {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .beauly-widget .widget-header-title {
    margin-bottom: 20px;
  }
}
.footer-area .footer-top .beauly-widget.widget_block .wp-block-search__label,
.footer-area .footer-top .beauly-widget.widget_block .wp-block-heading {
  font-size: 24px;
  font-family: var(--tj-ff-body);
  color: var(--tj-color-common-white);
  line-height: 1;
  font-weight: var(--tj-fw-medium);
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-top .beauly-widget.widget_block .wp-block-search__label,
  .footer-area .footer-top .beauly-widget.widget_block .wp-block-heading {
    margin-bottom: 30px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-top .beauly-widget.widget_block .wp-block-search__label,
  .footer-area .footer-top .beauly-widget.widget_block .wp-block-heading {
    margin-bottom: 20px;
  }
}
.footer-area .footer-top .beauly-widget .hours-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area .footer-top .beauly-widget .hours-list ul li {
  display: block;
}
.footer-area .footer-top .beauly-widget .hours-list ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul li {
  width: 100%;
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul li a {
  display: block;
  color: var(--tj-color-text-body);
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-area .footer-top .beauly-widget.widget_nav_menu nav ul li .sub-menu {
  margin-top: 20px;
  padding-left: 20px;
}
.footer-area .footer-top .beauly-widget .widget-contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li i {
  color: var(--tj-color-theme-primary);
  font-size: 30px;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li .footer-info-heading {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-text-body);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li .footer-info-heading span {
  display: block;
  font-size: 16px;
  margin-top: 10px;
}
.footer-area .footer-top .beauly-widget .widget-contact-list li .footer-info-heading a {
  font-size: 16px;
  display: block;
  margin-top: 10px;
}
.footer-area .footer-top .beauly-widget .subscribe-form .form-control {
  background-color: var(--tj-color-theme-bg-dark-2);
  color: var(--tj-color-common-white);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid var(--tj-color-border-6);
  padding: 15px 20px;
  border-radius: 0;
}
.footer-area .footer-top .beauly-widget .subscribe-form .form-control::-webkit-input-placeholder {
  color: var(--tj-color-grey-10);
}
.footer-area .footer-top .beauly-widget .subscribe-form .form-control:-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.footer-area .footer-top .beauly-widget .subscribe-form .form-control::-moz-placeholder {
  color: var(--tj-color-grey-10);
}
.footer-area .footer-top .beauly-widget .subscribe-form .form-control:-ms-input-placeholder {
  color: var(--tj-color-grey-10);
}
.footer-area .footer-top .beauly-widget .subscribe-form .tj-primary-btn {
  padding: 15px 42.5px;
  margin-top: 20px;
}
.footer-area .footer-1-col-1.tj_widget_info {
  margin-top: -15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area .footer-1-col-1.tj_widget_info {
    margin-top: 0;
  }
}
.footer-area .footer-1-col-2 {
  padding-left: 30px;
}
@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) {
  .footer-area .footer-1-col-2 {
    padding-left: 0;
  }
}
.footer-area .footer-1-col-2 .widget-list li {
  font-size: 16px;
}
.footer-area .footer-bottom {
  border-top: 1px solid var(--tj-color-border-5);
}
.footer-area .footer-bottom .footer-content {
  padding: 20px 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-area .footer-bottom .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
  }
}
.footer-area .footer-bottom .footer-content .footer-left p {
  font-family: var(--tj-ff-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-area .footer-bottom .footer-content .footer-left p a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer-area .footer-bottom .footer-content .footer-left p a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-area .footer-bottom .footer-content .footer-right ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.footer-area .footer-bottom .footer-content .footer-right ul li a {
  font-family: var(--tj-ff-body);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer-area .footer-bottom .footer-content .footer-right ul li a:hover {
  color: var(--tj-color-theme-primary);
}
.footer-area.footer-2 .footer-1-col-1 {
  margin-top: -15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area.footer-2 .footer-1-col-1 {
    margin-top: 0;
  }
}
.footer-area.footer-2 .footer-2-col-2 {
  padding-left: 65px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area.footer-2 .footer-2-col-2 {
    padding-left: 0;
  }
}
.footer-area.footer-3 {
  background-position: bottom left;
}
.footer-area.footer-3 .tj_widget_author_info {
  background-color: var(--tj-color-theme-bg-dark-light);
}
.footer-area.footer-3 .tj_widget_author_info .footer-thumb {
  background-color: var(--tj-color-theme-primary);
  padding: 15px 20px;
  margin-bottom: 0;
  margin-top: 0;
  position: relative;
}
.footer-area.footer-3 .tj_widget_author_info .footer-thumb:before {
  background-color: var(--tj-color-theme-primary);
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  bottom: -10px;
  left: 45px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.footer-area.footer-3 .tj_widget_author_info .footer-thumb a {
  display: inline-block;
  max-width: 160px;
  width: 100%;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box {
  padding: 35px 20px;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-author {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-bottom: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-area.footer-3 .tj_widget_author_info .footer-box .footer-author {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 20px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-author img {
  height: 70px;
  width: 70px;
  border-radius: 50%;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-author .author-content .author-name {
  font-family: var(--tj-ff-body);
  color: var(--tj-color-grey-9);
  font-size: 18px;
  font-weight: 400;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-author .author-content .author-cert {
  font-family: var(--tj-ff-body);
  font-size: 16px;
  color: var(--tj-color-theme-primary);
  font-weight: 400;
  margin-bottom: 0;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-number,
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-mail {
  color: var(--tj-color-grey-9);
  font-size: 16px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-number:hover,
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-mail:hover {
  color: var(--tj-color-theme-primary);
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-btn {
  font-family: var(--tj-ff-body);
  font-size: 16px;
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
  line-height: 1;
  padding: 12px 36px;
  display: inline-block;
  margin-top: 25px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.footer-area.footer-3 .tj_widget_author_info .footer-box .footer-btn:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.footer-area.footer-3 .footer-3-col-2 {
  padding-left: 55px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-area.footer-3 .footer-3-col-2 {
    padding-left: 0;
  }
}
.footer-area.footer-3 .footer-3-col-3 .hours-list ul li {
  font-size: 16px;
}

/* !END: Theme footer CSS */
/**----------------------------------------
START: Theme Preloder CSS
----------------------------------------*/
:root {
  --loading: var(--tj-color-theme-primary);
  --s: 2s; /* change speed */
}

@-webkit-keyframes mirror1 {
  0%, 47%, 99.99%, 100% {
    -webkit-transform: rotate(180deg) rotateX(0deg);
            transform: rotate(180deg) rotateX(0deg);
  }
  47.01%, 99.98% {
    -webkit-transform: rotate(180deg) rotateX(180deg);
            transform: rotate(180deg) rotateX(180deg);
  }
}

@keyframes mirror1 {
  0%, 47%, 99.99%, 100% {
    -webkit-transform: rotate(180deg) rotateX(0deg);
            transform: rotate(180deg) rotateX(0deg);
  }
  47.01%, 99.98% {
    -webkit-transform: rotate(180deg) rotateX(180deg);
            transform: rotate(180deg) rotateX(180deg);
  }
}
@-webkit-keyframes mirror2 {
  0%, 47%, 99.99%, 100% {
    -webkit-transform: rotate(90deg) rotateX(180deg);
            transform: rotate(90deg) rotateX(180deg);
  }
  47.01%, 99.98% {
    -webkit-transform: rotate(90deg) rotateX(0deg);
            transform: rotate(90deg) rotateX(0deg);
  }
}
@keyframes mirror2 {
  0%, 47%, 99.99%, 100% {
    -webkit-transform: rotate(90deg) rotateX(180deg);
            transform: rotate(90deg) rotateX(180deg);
  }
  47.01%, 99.98% {
    -webkit-transform: rotate(90deg) rotateX(0deg);
            transform: rotate(90deg) rotateX(0deg);
  }
}
@-webkit-keyframes grow {
  0%, 25% {
    background-position-x: -297%;
  }
  45%, 55% {
    background-position-x: -250%;
  }
  75%, 100% {
    background-position-x: -203%;
  }
}
@keyframes grow {
  0%, 25% {
    background-position-x: -297%;
  }
  45%, 55% {
    background-position-x: -250%;
  }
  75%, 100% {
    background-position-x: -203%;
  }
}
#loading {
  position: fixed;
  z-index: 999999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--tj-color-theme-bg-dark-light-2);
}
#loading .content {
  width: 60px;
  height: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  margin: auto;
}
#loading .content .bars {
  width: 100%;
  height: 100%;
  position: absolute;
  padding: 0;
  -webkit-animation: mirror1 calc(var(--s) * 2) ease 0s infinite;
          animation: mirror1 calc(var(--s) * 2) ease 0s infinite;
}
#loading .content .bars + .bars {
  -webkit-transform: rotate(90deg) rotateX(180deg);
          transform: rotate(90deg) rotateX(180deg);
  -webkit-animation: mirror2 calc(var(--s) * 2) ease calc(var(--s) / 2) infinite;
          animation: mirror2 calc(var(--s) * 2) ease calc(var(--s) / 2) infinite;
}
#loading .content .bars .bar {
  width: 65px;
  height: 4px;
  margin: 4px 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(33%, rgba(255, 255, 255, 0)), color-stop(33%, var(--loading)), color-stop(67%, rgba(255, 255, 255, 0)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 33%, var(--loading) 33% 67%, rgba(255, 255, 255, 0) 67% 100%);
  -webkit-animation: grow var(--s) ease-in-out 0s infinite alternate;
          animation: grow var(--s) ease-in-out 0s infinite alternate;
  background-size: 300%;
  background-position-x: -203%;
}
#loading .content .bars .bar:nth-child(2) {
  -webkit-animation-delay: calc(var(--s) * -0.02);
          animation-delay: calc(var(--s) * -0.02);
}
#loading .content .bars .bar:nth-child(3) {
  -webkit-animation-delay: calc(var(--s) * -0.04);
          animation-delay: calc(var(--s) * -0.04);
}
#loading .content .bars .bar:nth-child(4) {
  -webkit-animation-delay: calc(var(--s) * -0.06);
          animation-delay: calc(var(--s) * -0.06);
}
#loading .content .bars .bar:nth-child(5) {
  -webkit-animation-delay: calc(var(--s) * -0.08);
          animation-delay: calc(var(--s) * -0.08);
}
#loading .content .bars .bar:nth-child(6) {
  -webkit-animation-delay: calc(var(--s) * -0.1);
          animation-delay: calc(var(--s) * -0.1);
}
#loading .content .bars .bar:nth-child(7) {
  -webkit-animation-delay: calc(var(--s) * -0.12);
          animation-delay: calc(var(--s) * -0.12);
}
#loading .content .bars:nth-child(2) .bar:nth-child(1) {
  -webkit-animation-delay: calc(var(--s) * -0.001 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.001 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(2) {
  -webkit-animation-delay: calc(var(--s) * -0.02 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.02 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(3) {
  -webkit-animation-delay: calc(var(--s) * -0.04 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.04 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(4) {
  -webkit-animation-delay: calc(var(--s) * -0.06 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.06 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(5) {
  -webkit-animation-delay: calc(var(--s) * -0.08 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.08 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(6) {
  -webkit-animation-delay: calc(var(--s) * -0.1 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.1 - var(--s) / 2);
}
#loading .content .bars:nth-child(2) .bar:nth-child(7) {
  -webkit-animation-delay: calc(var(--s) * -0.12 - var(--s) / 2);
          animation-delay: calc(var(--s) * -0.12 - var(--s) / 2);
}
#loading .closeLoader {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
}

/* !END: Theme Preloder CSS */
/**----------------------------------------
START: Theme Scroll CSS
----------------------------------------*/
.beauly-scroll-top {
  position: fixed;
  right: 30px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  -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);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.75rem);
      -ms-transform: translateY(0.75rem);
          transform: translateY(0.75rem);
  -webkit-transition: all 0.2s linear, margin-right 0s;
  transition: all 0.2s linear, margin-right 0s;
}

.beauly-scroll-top.progress-done {
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

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

.beauly-scroll-top > svg path {
  fill: none;
}

.beauly-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) {
  .beauly-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 404 CSS
----------------------------------------*/
.tj-error__content .tj-error__title {
  font-size: 180px;
  line-height: 1;
  margin: 0;
}
.tj-error__content .tj-primary-btn {
  margin-top: 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .tj-error__content .tj-error__title {
    font-size: 140px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .tj-error__content .tj-error__title {
    font-size: 100px;
  }
  .tj-error__content .tj-primary-btn {
    margin-top: 20px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .tj-error__content .tj-error__title {
    font-size: 80px;
  }
  .tj-error__content .tj-primary-btn {
    margin-top: 10px;
  }
}

/* !END: Theme 404 CSS */
/**----------------------------------------
START: Theme Light CSS
----------------------------------------*/
body.light-mode {
  color: var(--tj-color-text-body-light);
  background-color: var(--tj-color-common-white);
}

.light-mode p {
  color: var(--tj-color-text-body-light);
}
.light-mode h1,
.light-mode h2,
.light-mode h3,
.light-mode h4,
.light-mode h5,
.light-mode h6 {
  color: var(--tj-color-heading-light);
}
.light-mode .bg-dark-deep {
  background-color: var(--tj-color-common-white);
}
.light-mode .bg-dark-light {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode #loading {
  background-color: var(--tj-color-common-white);
}
.light-mode .header.header__sticky {
  background-color: var(--tj-color-common-white-2);
  border-bottom-color: var(--tj-color-border-1);
}
.light-mode .header.header__sticky .primary-header-inner .header-contact-area a,
.light-mode .header.header__sticky .primary-header-inner .header-contact-area i {
  color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .primary-header-inner .mobile-side-menu-toggle {
  color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .header-menu-wrap ul > li > a {
  color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .header-menu-wrap ul > li > a::before {
  background-color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .header-menu-wrap ul > li > a::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .header-menu-wrap ul > .has-dropdown::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header.header__sticky .header-menu-wrap ul > .has-dropdown > ul > li:hover > a {
  color: var(--tj-color-common-white);
}
.light-mode .header.header__sticky .header-right .tj-primary-btn {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-primary);
}
.light-mode .header.header__sticky .header-right .tj-primary-btn i {
  color: var(--tj-color-common-white);
}
.light-mode .header.header__sticky .header-right .mobile-side-menu-toggle {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 {
  background-color: var(--tj-color-common-white);
  border-bottom-color: var(--tj-color-border-1);
}
.light-mode .header-2 .header-menu-wrap ul > li > a {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-menu-wrap ul > li > a::before {
  background-color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-menu-wrap ul > li > a::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-menu-wrap ul > li.has-dropdown::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-menu-wrap ul > li.has-dropdown > ul > li:hover > a {
  color: var(--tj-color-common-white);
}
.light-mode .header-2 .primary-header-inner .header-contact-area a,
.light-mode .header-2 .primary-header-inner .header-contact-area i {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .primary-header-inner .mobile-side-menu-toggle {
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-right .tj-primary-btn {
  border-color: var(--tj-color-heading-light);
  color: var(--tj-color-heading-light);
}
.light-mode .header-2 .header-right .tj-primary-btn:after {
  background-color: var(--tj-color-theme-primary);
}
.light-mode .header-2 .header-right .mobile-side-menu-toggle {
  color: var(--tj-color-heading-light);
}
.light-mode .header-4 {
  background-color: var(--tj-color-common-white-2);
  border-bottom-color: var(--tj-color-border-1);
}
.light-mode .header-4 .header-menu-wrap ul > li > a {
  color: var(--tj-color-heading-light);
}
.light-mode .header-4 .header-menu-wrap ul > li > a::before {
  background-color: var(--tj-color-heading-light);
}
.light-mode .header-4 .header-menu-wrap ul > li > a::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header-4 .header-menu-wrap ul > .has-dropdown::after {
  color: var(--tj-color-heading-light);
}
.light-mode .header-4 .header-menu-wrap ul > .has-dropdown ul > li:hover.has-dropdown::after {
  color: var(--tj-color-common-white);
}
.light-mode .header-4 .header-menu-wrap ul > .has-dropdown ul > li > a:hover {
  color: var(--tj-color-common-white);
}
.light-mode .header-4 .primary-header-inner .mobile-side-menu-toggle {
  color: var(--tj-color-heading-light);
}
.light-mode .mobile-side-menu {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .mobile-side-menu .side-menu-search input {
  background-color: var(--tj-color-common-white);
  color: var(--tj-color-heading-light);
  border: none;
}
.light-mode .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--tj-color-heading-light);
  border-bottom-color: var(--tj-color-border-1);
}
.light-mode .mobile-side-menu .mean-bar .mean-nav.mean-nav > ul li a:last-of-type {
  border-bottom: none;
}
.light-mode .mobile-side-menu p {
  color: var(--tj-color-text-body-light);
}
.light-mode .mobile-side-menu .list-header {
  color: var(--tj-color-heading-light);
}
.light-mode .mobile-side-menu .side-menu-list li p {
  color: var(--tj-color-text-body-light);
}
.light-mode .mobile-side-menu .side-menu-list li a {
  color: var(--tj-color-text-body-light);
}
.light-mode .mobile-side-menu .side-menu-head .mobile-side-menu-close {
  color: var(--tj-color-text-body-light);
}
.light-mode .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
  color: var(--tj-color-common-white);
}
.light-mode .mobile-side-menu .side-menu-social ul li a {
  background-color: transparent;
  border-color: var(--tj-color-theme-primary);
}
.light-mode .mobile-side-menu .side-menu-social ul li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.light-mode .page-header .page-header-content h1,
.light-mode .page-header .page-header-content h2,
.light-mode .page-header .page-header-content h3,
.light-mode .page-header .page-header-content h4,
.light-mode .page-header .page-header-content h5,
.light-mode .page-header .page-header-content h6 {
  color: var(--tj-color-common-white);
}
.light-mode .page-header .page-header-content p {
  color: var(--tj-color-common-white);
}
.light-mode .about-section .about-content .about-title {
  color: var(--tj-color-heading-light);
}
.light-mode .about-section .about-content p {
  color: var(--tj-color-text-body-light);
}
.light-mode .counter-section {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .counter-section .counter-item .counter-title {
  color: var(--tj-color-theme-primary);
}
.light-mode .counter-section .counter-item .counter-content .counter-text {
  color: var(--tj-color-heading-light);
}
.light-mode .plan-section .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .plan-section .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .plan-section .plan-content ul li h3 {
  color: var(--tj-color-heading-light);
}
.light-mode .plan-section .plan-content .pdf-box h3 {
  color: var(--tj-color-heading-light);
}
.light-mode .amenities-section .amenities-item .amenities-item-title {
  color: var(--tj-color-heading-light);
}
.light-mode .amenities-section .amenities-item p {
  color: var(--tj-color-text-body-light);
}
.light-mode .gallery-filter li {
  color: var(--tj-color-heading-light);
}
.light-mode .gallery-filter li.active, .light-mode .gallery-filter li:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .beauly-property-tabs .owl-carousel .owl-nav > div {
  color: var(--tj-color-heading-light);
}
.light-mode .beauly-table tbody tr:hover th,
.light-mode .beauly-table tbody tr:hover td {
  color: var(--tj-color-theme-primary);
}
.light-mode .beauly-table tbody tr th,
.light-mode .beauly-table tbody tr td {
  color: var(--tj-color-text-body-light);
}
.light-mode .beauly-contact-form .form-group .form-control {
  background-color: var(--tj-color-theme-bg-light);
  color: var(--tj-color-heading-light);
}
.light-mode .follow-section .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .follow-section .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .footer-area.bg-dark-deep {
  background-color: var(--tj-color-theme-bg-dark-deep);
}
.light-mode .hero-section-2.bg-dark-light {
  background-color: var(--tj-color-common-white);
}
.light-mode .hero-section-2 .hero-container .hero-title {
  color: var(--tj-color-heading-light);
}
.light-mode .hero-section-2 .hero-content p {
  color: var(--tj-color-text-body-light);
}
.light-mode .hero-section-2 .hero-text h4 {
  color: var(--tj-color-common-white);
}
.light-mode .hero-3 .hero-sidebar {
  background-color: var(--tj-color-common-white);
}
.light-mode .hero-3 .hero-sidebar .hero-sidemenu-list li a {
  color: var(--tj-color-heading-light);
}
.light-mode .hero-3 .hero-sidebar .hero-sidemenu-list li a i {
  color: var(--tj-color-heading-light);
}
.light-mode .hero-3 .hero-content .hero-title {
  color: var(--tj-color-common-white);
}
.light-mode .side-menu-wrapper {
  background-color: var(--tj-color-common-white);
}
.light-mode .hero-content .hero-title {
  color: var(--tj-color-common-white);
}
.light-mode .project-item .project-content {
  background-color: var(--tj-color-common-white);
}
.light-mode .project-section .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .project-section .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .project-section .project-item .project-content {
  background-color: var(--tj-color-common-white);
}
.light-mode .project-section .project-item .project-content .project-list li span {
  color: var(--tj-color-text-body-light);
}
.light-mode .project-section .project-item .project-item-title {
  color: var(--tj-color-heading-light);
}
.light-mode .project-section.bg-dark-deep .project-item .project-content {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .project-2 .project-top .custom-next-prev-wrap .owl-next,
.light-mode .project-2 .project-top .custom-next-prev-wrap .owl-prev {
  color: var(--tj-color-heading-light);
  border-color: var(--tj-color-heading-light);
}
.light-mode .project-2 .project-top .custom-next-prev-wrap .owl-next:hover,
.light-mode .project-2 .project-top .custom-next-prev-wrap .owl-prev:hover {
  color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
}
.light-mode .project-filter-section .filter-box .project-filter li {
  color: var(--tj-color-heading-light);
}
.light-mode .project-filter-section .filter-box .project-filter li.active {
  color: var(--tj-color-theme-primary);
  border-bottom-color: var(--tj-color-theme-primary);
}
.light-mode .amenities-2.bg-dark-light {
  background-color: var(--tj-color-common-white);
}
.light-mode .amenities-2 .amenities-box .amenities-item-title {
  color: var(--tj-color-heading-light);
}
.light-mode .amenities-2 .amenities-box p {
  color: var(--tj-color-text-body-light);
}
.light-mode .gallery-section-2.bg-dark-deep {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .gallery-section-2 .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .gallery-section-2 .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .gallery-section-2 .gallery-top .nav-tabs .nav-link {
  color: var(--tj-color-heading-light);
}
.light-mode .gallery-section-2 .gallery-top .nav-tabs .nav-link.active, .light-mode .gallery-section-2 .gallery-top .nav-tabs .nav-link:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content {
  background-color: var(--tj-color-common-white);
}
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item:not(:last-child) {
  border-bottom-color: var(--tj-color-border-1);
}
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_number,
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item .tj_interactive_image_item_title {
  color: var(--tj-color-heading-light);
}
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_number,
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item.on .tj_interactive_image_item_title {
  color: var(--tj-color-theme-primary);
}
.light-mode .interactive-img-section .tj_interactive_image .tj_interactive_image_content .tj_interactive_image_item_text {
  color: var(--tj-color-text-body-light);
}
.light-mode .blog-section .post-meta ul li {
  color: var(--tj-color-text-body-light);
}
.light-mode .post-card {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .post-card .post-content {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .post-card .post-content .post-content-title {
  color: var(--tj-color-heading-light);
}
.light-mode .post-card .post-content .post-content-title:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .post-card .post-content p {
  color: var(--tj-color-text-body-light);
}
.light-mode .tj__pagination ul li .page-numbers {
  color: var(--tj-color-heading-light);
}
.light-mode .tj__pagination ul li .page-numbers.current, .light-mode .tj__pagination ul li .page-numbers:hover {
  color: var(--tj-color-common-white);
}
.light-mode .about-section-2 .about-content .about-title {
  color: var(--tj-color-heading-light);
}
.light-mode .about-section-2 .about-content p {
  color: var(--tj-color-text-body-light);
}
.light-mode .project-2.bg-dark-deep {
  background-color: var(--tj-color-common-white);
}
.light-mode .project-2 .project-item .project-content h3 {
  color: var(--tj-color-heading-light);
}
.light-mode .apartment-2 .beauly-table thead {
  background-color: var(--tj-color-theme-primary);
}
.light-mode .testimonial-carousel .testi-item .testi-content,
.light-mode .testimonial-carousel .testi-item .testi-author {
  background-color: var(--tj-color-common-white);
}
.light-mode .testimonial-carousel .testi-item .testi-content p,
.light-mode .testimonial-carousel .testi-item .testi-author p {
  color: var(--tj-color-text-body-light);
}
.light-mode .testimonial-carousel .testi-item .testi-content .author-content .author-name,
.light-mode .testimonial-carousel .testi-item .testi-author .author-content .author-name {
  color: var(--tj-color-heading-light);
}
.light-mode .testimonial-carousel .testi-item .testi-content .author-content .author-prof,
.light-mode .testimonial-carousel .testi-item .testi-author .author-content .author-prof {
  color: var(--tj-color-text-body-light);
}
.light-mode .testimonial-carousel .testi-item .testi-author {
  background-color: var(--tj-color-common-white-2);
}
.light-mode .testimonial-carousel .owl-dots .active span {
  background-color: var(--tj-color-theme-primary);
}
.light-mode .testimonial-carousel .owl-dots span {
  background-color: var(--tj-color-text-body-light);
}
.light-mode .cover-section .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .cover-section .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .cover-item .cover-img .cover-content .cover-title {
  color: var(--tj-color-common-white);
}
.light-mode .cta-content .cta-header {
  color: var(--tj-color-common-white);
}
.light-mode .apartment-section-3 .section-heading .section-title {
  color: var(--tj-color-heading-light);
}
.light-mode .apartment-section-3 .section-heading p {
  color: var(--tj-color-text-body-light);
}
.light-mode .apartment-section-3 .apartment-item .apartment-content .apartment-title {
  color: var(--tj-color-heading-light);
  border-right: 1px solid var(--tj-color-heading-light);
}
.light-mode .apartment-section-3 .apartment-item .apartment-content .apartment-price {
  border-right: 1px solid var(--tj-color-heading-light);
}
.light-mode .apartment-section-3 .apartment-item .apartment-content .apartment-btn-wrap .apartment-btn {
  color: var(--tj-color-heading-light);
  border: 1px solid var(--tj-color-heading-light);
}
.light-mode .apartment-section-3 .apartment-item .apartment-content .apartment-btn-wrap .apartment-btn:hover {
  color: var(--tj-color-theme-primary);
  border: 1px solid var(--tj-color-theme-primary);
}
.light-mode .apartment-section-3 .apartment-item .apartment-information-list li span {
  color: var(--tj-color-text-body-light);
}
.light-mode .beauly-apartment-carousel .owl-nav > div.owl-next,
.light-mode .beauly-apartment-carousel .owl-nav > div.owl-prev {
  color: var(--tj-color-heading-light);
}
.light-mode .team-item .team-content .team-member {
  color: var(--tj-color-heading-light);
}
.light-mode .team-item .team-content .team-member a {
  -webkit-transition: none;
  transition: none;
}
.light-mode .team-item .team-content .team-member a:hover {
  color: var(--tj-color-common-white);
}
.light-mode .team-item .team-content .member-prof {
  color: var(--tj-color-text-body-light);
}
.light-mode .team-item:hover .team-content .team-member,
.light-mode .team-item:hover .team-content .member-prof {
  color: var(--tj-color-common-white);
}
.light-mode .plan-tab .nav-tabs .nav-link {
  color: var(--tj-color-heading-light);
}
.light-mode .plan-tab .nav-tabs .nav-link.active {
  color: var(--tj-color-theme-primary);
}
.light-mode .plan-tab .nav-tabs .nav-link:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .floor-item .floor-content .floor-title {
  color: var(--tj-color-heading-light);
}
.light-mode .floor-item .floor-content .floor-list li span {
  color: var(--tj-color-text-body-light);
}
.light-mode .contact-item {
  border-right-color: var(--tj-color-border-1);
}
.light-mode .contact-item .contact-title {
  color: var(--tj-color-heading-light);
}
.light-mode .sidebar-item {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .sidebar-item .category-list li:not(:last-of-type) {
  border-bottom-color: var(--tj-color-grey-9);
}
.light-mode .sidebar-item .category-list li a {
  color: var(--tj-color-text-body-light);
}
.light-mode .sidebar-item .category-list li a:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .sidebar-item .tags li a {
  border-color: var(--tj-color-grey-9);
  color: var(--tj-color-text-body-light);
}
.light-mode .sidebar-item .tags li a:hover {
  background-color: var(--tj-color-theme-primary);
  border-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.light-mode .blog-wrapper .tj-blog blockquote {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .blog-wrapper .tj-blog .blog-details-box .blog-details-list li {
  color: var(--tj-color-heading-light);
}
.light-mode .blog-wrapper .tj-blog .comment-wrap .comment-box {
  border-bottom-color: var(--tj-color-grey-9);
}
.light-mode .blog-wrapper .tj-blog .comment-wrap .comment-box .comment-content .comment-title {
  color: var(--tj-color-heading-light);
}
.light-mode .beauly-contact-form .form-group .form-control {
  color: var(--tj-color-heading-light);
}
.light-mode .team-details-content {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .team-details-content .content-header {
  color: var(--tj-color-heading-light);
}
.light-mode .team-details-box .right-details .team-details-list li .desc {
  color: var(--tj-color-heading-light);
}
.light-mode .team-details-box .right-details .team-details-social li a {
  background-color: var(--tj-color-common-white);
  border-color: var(--tj-color-theme-primary);
}
.light-mode .team-details-box .right-details .team-details-social li a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.light-mode .faq-info .accordion .accordion-item {
  border-color: var(--tj-color-grey-9);
}
.light-mode .faq-info .accordion .accordion-item .accordion-button {
  color: var(--tj-color-heading-light);
}
.light-mode .faq-info .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: var(--tj-color-theme-primary);
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .faq-info .accordion .accordion-item .accordion-body:not(.collapsed) {
  background-color: var(--tj-color-theme-bg-light);
  color: var(--tj-color-heading-light);
}
.light-mode .apartment-info-item {
  border-bottom-color: var(--tj-color-grey-9);
}
.light-mode .apartment-info-item .left-item .info-title {
  color: var(--tj-color-heading-light);
}
.light-mode .apartment-info-item .right-item .right-title {
  color: var(--tj-color-heading-light);
}
.light-mode .apartment-info-item ul li {
  color: var(--tj-color-text-body-light);
}
.light-mode .hero_form {
  background-color: var(--tj-color-common-white);
}
.light-mode .hero_form .form-group .form-control {
  background-color: var(--tj-color-theme-bg-light);
  color: var(--tj-color-heading-light);
}
.light-mode .sidebar-item.widget_block .wp-block-archives__label,
.light-mode .sidebar-item.widget_block .wp-block-search__label,
.light-mode .sidebar-item.widget_block .wp-block-heading {
  color: var(--tj-color-heading-light);
}
.light-mode .wp-block-search__input,
.light-mode .post-password-form input[type=password] {
  color: var(--tj-color-heading-light);
}
.light-mode .tj-sidebar__widget .wp-block-latest-comments li a,
.light-mode .tj-sidebar__widget .wp-block-latest-posts li a,
.light-mode .tj-sidebar__widget .wp-block-archives li a,
.light-mode .tj-sidebar__widget .wp-block-rss li a {
  color: var(--tj-color-text-body-light);
}
.light-mode .tj-widget__search .search-form .form-control {
  color: var(--tj-color-heading-light);
}
.light-mode .sidebar-item .tagcloud a {
  color: var(--tj-color-heading-light);
}
.light-mode .sidebar-item .tagcloud a:hover {
  color: var(--tj-color-common-white);
}
.light-mode .single-blog-tag-share .tj-tag .tagcloud a {
  background-color: var(--tj-color-theme-bg-light);
  color: var(--tj-color-heading-light);
}
.light-mode .single-blog-tag-share .tj-tag .tagcloud a:hover {
  background-color: var(--tj-color-theme-primary);
  color: var(--tj-color-common-white);
}
.light-mode .single-blog-tag-share .shear-link a {
  color: var(--tj-color-heading-light);
}
.light-mode .single-blog-tag-share .shear-link a:hover {
  color: var(--tj-color-common-white);
}
.light-mode .blog-details__pagination .tj_pagination-post .tj_pagination_post-inner {
  background-color: var(--tj-color-theme-bg-light);
}
.light-mode .tj-comments__container .form-input .tj-form-control {
  color: var(--tj-color-heading-light);
}
.light-mode .tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 a {
  color: var(--tj-color-heading-light);
}
.light-mode .tj-comments__container .tj-comments__wrap .tj-latest__comments > ul .tj__comment .tj-comment__wrap .comment__text .avatar__name h5 a:hover {
  color: var(--tj-color-theme-primary);
}
.light-mode .tj_content_block {
  background-color: var(--tj-color-theme-bg-light);
}

/* !END: Theme Light CSS *//*# sourceMappingURL=beauly-core.css.map */