@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");

:root {
  --theme-color: #f7b034;
  --theme-color2: #d27722;
  --title-color: #0D0D0D;
  --body-color: #6E6E6E;
  --smoke-color: #fffbf5;
  --smoke-color2: #ffebcc;
  --smoke-color3: #fff5e6;
  --black-color: #000000;
  --blue-color: #17253f;
  --black-color2: #1b1b1b;
  --gray-color: #B2B2B2;
  --white-color: #ffffff;
  --light-color: #CDCDCD;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E0E0E0;
  --title-font:  'Cormorant Garamond', serif;
  --body-font: 'DM Sans', sans-serif;
  --style-font: 'Red Hat Display', cursive;
  --icon-font: "Font Awesome 6 Pro";
  --main-container: 1220px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}


html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-theme2 {
  background-color: var(--theme-color2) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.text-smoke {
  color: var(--smoke-color) !important;
}

.bg-smoke2 {
  background-color: var(--smoke-color2) !important;
}

.bg-smoke3 {
  background-color: var(--smoke-color3) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-black2 {
  background-color: var(--black-color2) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

.bg-top-center {
  background-size: auto;
  background-position: top center;
}

.bg-bottom-center {
  background-size: auto;
  background-position: bottom center;
}

.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-theme2 {
  color: var(--theme-color2) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}

.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}


/*
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}*/

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 1em;
  line-height: 25px;
  color: #333333;
}

.arg_li{
  padding-left: 16px;
   font-size: 1em;
  line-height: 25px;
  color: #333333;
}
.arg_li::before{
  content: "•";
  padding-right: 8px;
  font-size: 1em;
  line-height: 25px;
  color: #333333;
}

/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color3);
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle, .th-menu-wrapper .lg-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color2);
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover, .th-menu-wrapper .lg-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: none;
  color: var(--title-color);
  padding-left: 18px;
}

.th-mobile-menu ul li a:before {
  content: '\f105';
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active > a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active > a:before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .menu-item-has-children > a .th-mean-expand:before {
  content: '\f067';
  font-family: var(--icon-font);
}

.th-mobile-menu ul .menu-item-has-children > a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .menu-item-has-children.th-active > a .th-mean-expand:before {
  content: '\f068';
}

.th-mobile-menu ul .menu-item-has-children.th-active > a:after {
  content: "\f068";
}

.th-mobile-menu > ul {
  padding: 0 40px;
}

.th-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.th-menu-toggle, .lg-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 0;
}

.th-menu-toggle:hover, .lg-menu-toggle:hover {
  background-color: var(--title-color);
}

.th-menu-toggle.style-text, .th-menu-toggle.style-text-white, .lg-menu-toggle.style-text, .lg-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i, .th-menu-toggle.style-text-white i, .lg-menu-toggle.style-text i, .lg-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white, .lg-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .th-mobile-menu > ul {
    padding: 0 20px;
  }
}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 41;
}

.header-absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.sticky-wrapper {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sticky-wrapper.sticky {
  top: 0;
}

.sticky-wrapper.sticky .header-logo {
  padding-bottom: 0;
  margin-left: 0px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .sticky-wrapper.sticky .header-logo {
    margin-top: 0;
  }
}

.th-header .sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-header .sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  z-index: 999;
  -webkit-animation: headerSticky .95s ease forwards;
          animation: headerSticky .95s ease forwards;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.09);
}

.main-menu a {
  display: block;
  position: relative;
  font-family: var(--body-font);
  font-weight: 500;
  font-size: 14px;
  color: var(--title-color);
  text-transform: uppercase;
}

.main-menu a:hover, .main-menu a.active {
  color: var(--theme-color);
}

.main-menu > ul > li {
  margin: 0 17px;
}

.main-menu > ul > li > a {
  padding: 26.5px 0;
}

.main-menu > ul > li > a:hover {
  color: var(--theme-color);
}

.main-menu ul {
  margin: 0;
  padding: 0;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children > a:after {
  content: "\2b";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: var(--title-color);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul li.menu-item-has-children > a:hover:after {
  color: var(--theme-color);
  content: "\f068";
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  z-index: 9;
}

.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  -webkit-transform: scaleY(1) translateX(-50%);
      -ms-transform: scaleY(1) translateX(-50%);
          transform: scaleY(1) translateX(-50%);
}

.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-bottom: 2px solid var(--theme-color);
  border-radius: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\2b";
  float: right;
  top: 1px;
  display: inline-block;
}

.main-menu ul.sub-menu li.menu-item-has-children > a:hover:after {
  content: "\f068";
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: none;
}

.main-menu ul.sub-menu li a:before {
  content: "\f2b5";
  /*content: "\f085";*/
  position: absolute;
  top: 8px;
  left: 10px;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 1em;
  line-height: 1;
  color: var(--theme-color);
  font-weight: 900;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.main-menu ul.sub-menu li a:hover {
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

.main-menu .mega-menu-wrap {
  position: static;
}

.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: scaleY(0) translateX(-50%);
      -ms-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
}

.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}

.main-menu ul.mega-menu li li {
  padding: 2px 0;
}

.main-menu ul.mega-menu li a {
  display: inline-block;
  text-transform: none;
}

.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 15px;
  margin-bottom: 10px;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}

.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}

.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}

@media (max-width: 1500px) {
  .main-menu > ul > li {
    margin: 0 15px;
  }
}

.header-button {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.header-button .th-btn {
  margin-left: 15px;
}

@media (max-width: 1399px) {
  .header-button .th-btn {
    display: none;
  }
}

.header-button .icon-btn .badge {
  font-size: 12px;
  top: 0;
  right: 0;
}

.header-button .icon-btn:hover .badge {
  background-color: var(--white-color);
  color: var(--title-color);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .header-layout1 .header-button .icon-btn:nth-child(3) {
    display: none;
  }
}

.social-links .social-title {
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  color: var(--gray-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.social-links a {
  font-size: 14px;
  font-weight: 400;
  display: inline-block;
  color: var(--gray-color);
  margin: 0 0 0 15px;
}

.social-links a:hover {
  color: var(--theme-color);
}

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.header-links li {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 400;
}

.header-links li:not(:last-child) {
  margin: 0 40px 0 0;
}

.header-links li:not(:last-child):after {
  content: '';
  height: 15px;
  width: 1px;
  background-color: var(--body-color);
  position: absolute;
  top: 5px;
  right: -20px;
}

.header-links li > i {
  margin-right: 6px;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--body-color);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links b,
.header-links strong {
  font-weight: 600;
  margin-right: 6px;
}

.header-notice {
  margin: 0;
}

.header-top {
  position: relative;
  padding: 12px 0;
  background-color: var(--title-color);
  --body-color: #B2B2B2;
}

.header-top a:hover {
  color: var(--theme-color);
}

/* ------------------------------ Header 2 Start ---------------------------------- */
.header-layout2 {
  position: relative;
}

.header-layout2 .header-top {
  position: relative;
  padding: 12px 0;
  background-color: var(--theme-color);
  --body-color: #fff;
}

.header-layout2 .header-links li:after {
  background-color: var(--white-color);
}

@media (max-width: 1399px) {
  .header-layout2 .header-links li:nth-child(3) {
    display: none;
  }
  .header-layout2 .header-links li:nth-child(4) {
    display: none;
  }
  .header-layout2 .header-links li:nth-child(2):after {
    display: none;
  }
}

.header-layout2 .header-links li a {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout2 .header-links li a:hover {
  color: var(--title-color);
}

.header-layout2 .header-links li i {
  color: var(--white-color);
}

.header-layout2 .social-links .social-title {
  color: var(--title-color);
}

.header-layout2 .social-links a {
  color: var(--title-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-layout2 .social-links a:hover {
  color: var(--white-color);
}

.header-layout2 .header-button .icon-btn {
  background-color: #353535;
  border-color: #353535;
  color: var(--white-color);
}

.header-layout2 .header-button .icon-btn .badge:hover {
  background-color: var(--white-color);
  color: var(--theme-color);
}

.header-layout2 .menu-area {
  position: relative;
  z-index: 3;
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout2 .menu-area {
    padding: 0;
  }
}

.header-layout2 .main-menu {
  padding-left: 93px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .header-layout2 .main-menu {
    padding-left: 50px;
  }
}

.header-layout2 .main-menu > ul > li > a {
  color: var(--title-color);
  padding: 36.5px 0;
}

.header-layout2 .main-menu > ul > li > a:hover {
  color: var(--theme-color);
}

.header-layout2 .main-menu ul li.menu-item-has-children > a:after {
  color: var(--title-color);
}

.header-layout2 .main-menu ul li.menu-item-has-children > a:hover:after {
  color: var(--theme-color);
}

.header-layout2 .sticky-wrapper {
  position: relative;
  background-color: var(--smoke-color3);
}
@supports (-moz-appearance: none) {
  /* Styles specific to Firefox */
  .header-layout2 .sticky-wrapper  {
    top: 0; /* Your desired top position for Firefox */
  }
}

.header-layout2 .sticky-wrapper.sticky {
  background-color: var(--smoke-color3);
  /* Medium devices */
}

.header-layout2 .sticky-wrapper.sticky .header-logo {
  padding: 0;
}

@media (max-width: 991px) {
  .header-layout2 .sticky-wrapper.sticky .menu-area {
    padding: 7px 0;
  }
}

.header-layout2 .sticky-wrapper.sticky .logo-bg {
  /* Medium devices */
}

@media (max-width: 991px) {
  .header-layout2 .sticky-wrapper.sticky .logo-bg {
    height: 74px;
  }
}

.header-layout2 .logo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 23.4%;
  height: 100px;
  background-color: var(--white-color);
  -webkit-clip-path: polygon(0% 0%, 100% 0, 95% 100%, 88% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0, 95% 100%, 88% 100%, 0% 100%);
  z-index: 2;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (min-width: 2099px) {
  .header-layout2 .logo-bg {
    width: 29%;
  }
}

@media (max-width: 1799px) {
  .header-layout2 .logo-bg {
    width: 20%;
  }
}

@media (max-width: 1299px) {
  .header-layout2 .logo-bg {
    width: 23%;
  }
}

@media (max-width: 1199px) {
  .header-layout2 .logo-bg {
    width: 29%;
  }
}

@media (max-width: 991px) {
  .header-layout2 .logo-bg {
    width: 45%;
    height: 90px;
  }
}

@media (max-width: 575px) {
  .header-layout2 .logo-bg {
    width: 60%;
  }
}

@media (min-width: 1300px) {
  .header-layout2 .th-container {
    --main-container: 1520px;
  }
}

/* ------------------------------ Header 2 End ---------------------------------- */

.video-box1 {
  position: relative;
}

.video-box1 img {
  width: 100%;
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video-play-btn > i {
  display: inline-block;
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  text-align: center;
  background-color: rgba(194, 133, 101, 0.85);
  border-radius: 50%;
  border: 1px solid var(--white-color);
  color: var(--white-color);
  font-size: var(--icon-font-size, 1.2em);
}


.th-counterup {
  /* Large devices */
  /* Medium devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1199px) {
  .th-counterup {
    border-right: 1px dashed var(--theme-color);
    border-bottom: 1px dashed var(--theme-color);
    padding: 50px;
    margin-right: 0;
    text-align: center;
  }
  .th-counterup:nth-child(2) {
    border-right: 1px dashed transparent;
    margin-right: 0;
  }
  .th-counterup:nth-child(3) {
    border-bottom: 1px dashed transparent;
  }
  .th-counterup:last-child {
    border-bottom: 1px dashed transparent;
  }
}

@media (max-width: 991px) {
  .th-counterup {
    padding: 25px;
  }
}

@media (max-width: 460px) {
  .th-counterup {
    border: none;
    padding: 20px 0;
  }
}

.th-counterup:hover .icon svg path {
  stroke: var(--theme-color) !important;
  stroke-width: 1;
}

@media (max-width: 991px) {
  .th-counterup {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .th-counterup {
    text-align: center;
  }
}

@media (max-width: 460px) {
  .th-counterup {
    border: none;
    padding: 20px 0;
  }
}

.th-counterup .inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 15px;
  max-width: 300px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .th-counterup .inner {
    display: block;
    max-width: 100%;
    margin: auto;
  }
}

@media (max-width: 600px) {
  .th-counterup .inner {
    display: block;
    max-width: 100%;
    margin: auto;
  }
}

.th-counterup:last-child {
  border-right: 1px dashed transparent;
  margin-right: 0;
  padding-right: 0;
}

.th-counterup .content .counter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: var(--title-color);
  margin-bottom: 0;
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
  line-height: 55px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  /* Large devices */
}

@media (max-width: 1199px) {
  .th-counterup .content .counter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 15px;
  }
}

.th-counterup .content .counter-card_text {
  font-family: var(--body-font);
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--body-color);
  margin-top: -7px;
  /* Small devices */
}

@media (max-width: 767px) {
  .th-counterup .content .counter-card_text {
    font-size: 14px;
    line-height: 28px;
  }
}

.th-counterup.style2 {
  background-color: var(--smoke-color3);
  padding: 0 16px 30px 16px;
  text-align: center;
  /* Large devices */
}

@media (max-width: 1199px) {
  .th-counterup.style2 {
    border: none;
  }
}

.th-counterup.style2 .inner {
  display: block;
}

.th-counterup.style2 .inner .icon {
  background-color: var(--smoke-color);
  width: 99px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  margin-top: -30px;
}

.th-counterup.style2 .counter {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.th-counterup.style2 .counter-card_text {
  line-height: 20px;
  margin-top: -8px;
}

.th-counterup.style3 {
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .th-counterup.style3 {
    border: none;
    padding: 0;
    margin-right: 0;
    text-align: left;
  }
  .th-counterup.style3:nth-child(2) {
    border-right: 1px dashed transparent;
    margin-right: 0;
  }
  .th-counterup.style3:nth-child(3) {
    border-bottom: 1px dashed transparent;
  }
  .th-counterup.style3:last-child {
    border-bottom: 1px dashed transparent;
  }
}

@media (max-width: 991px) {
  .th-counterup.style3 {
    padding: 0;
  }
}

@media (max-width: 460px) {
  .th-counterup.style3 {
    border: none;
    padding: 20px 0;
  }
}

.th-counterup.style3 .inner {
  /* Large devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .th-counterup.style3 .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 575px) {
  .th-counterup.style3 .inner {
    display: block;
  }
}

@media (max-width: 375px) {
  .th-counterup.style3 .inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.th-counterup.style3 .inner .icon {
  background-color: var(--white-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
}

.th-counterup.style3 .content .counter {
  font-weight: 700;
  font-size: 48px;
  line-height: 45px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .th-counterup.style3 .content .counter {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}


.counter-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* Extra small devices */
}

.counter-content.style2 {
  /* Extra small devices */
}

@media (max-width: 375px) {
  .counter-content.style2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 375px) {
  .counter-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Counter 1 ---------------------------------- */
.counter-sec {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 9;
  padding-bottom: 30px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .counter-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 15px;
  }
}

@media (max-width: 460px) {
  .counter-sec {
    grid-template-columns: repeat(1, 1fr);
    padding: 10px;
  }
}

.counter-sec.style4 {
  position: relative;
  background-color: var(--smoke-color);
  border: 6px solid var(--white-color);
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
  padding: 60px;
  z-index: 4;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .counter-sec.style4 {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .counter-sec.style4 {
    padding: 30px;
  }
}

/*------------------*/
/*--social-sidebar--*/
/*------------------*/

#social-sidebar {
 left: 0;
 position: fixed;
 display: none;
 top: 130px;
 z-index:999;
}
#social-sidebar li:first-child a { border-top-right-radius: 5px; }
#social-sidebar li:last-child a { border-bottom-right-radius: 5px; }
 
#social-sidebar a {
 background: rgba(245, 159, 10, .8);
 color: #fff;
 text-decoration: none;
 display: block;
 height: 32px;
 width: 32px;  
 font-size: 18px;
 line-height: 32px;
 position: relative;
 text-align: center;
 cursor: pointer;
}
#social-sidebar a:hover span {
 left: 120%;
 opacity: 1;
}
#social-sidebar a span {
  font: 12px "Open Sans", sans-serif;
  text-transform: uppercase;
 border-radius: 3px;
 line-height: 24px;
 left: -100%;
 margin-top: -16px;
 opacity: 0;
 padding: 4px 8px;
 position: absolute;
 transition: opacity .3s, left .4s;
 top: 50%;
 z-index: -1;
}
 
#social-sidebar a span:before {
 content: "";
 display: block;
 height: 8px;
 width: 8px;
 left: -4px;
 margin-top: -4px;
 position: absolute;
 top: 50%;
 transform: rotate(45deg);
}
 
 
#social-sidebar a[class*="twitter"]:hover,
#social-sidebar a[class*="twitter"] span,
#social-sidebar a[class*="twitter"] span:before {background: #00acee;}

#social-sidebar a[class*="facebook"]:hover,
#social-sidebar a[class*="facebook"] span,
#social-sidebar a[class*="facebook"] span:before {background: #3B5998;}
 
#social-sidebar a[class*="instagram"]:hover,
#social-sidebar a[class*="instagram"] span,
#social-sidebar a[class*="instagram"] span:before {background: #c92bb7;}
 
#social-sidebar a[class*="youtube"]:hover,
#social-sidebar a[class*="youtube"] span,
#social-sidebar a[class*="youtube"] span:before {background: #c4302b;}

#social-sidebar a[class*="envelope"]:hover,
#social-sidebar a[class*="envelope"] span,
#social-sidebar a[class*="envelope"] span:before {background: #f7b034;}
  

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #f7b034;
  color: #fff;
}

::-moz-selection {
  background: #f7b034;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.section-heading {
  text-align: center;
  /*margin-top: 3.5em;
  margin-bottom: 3em;*/
}

.section-heading h2 {
  font-size: 28px;
  font-weight: 800;
  color: #232d39;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.section-heading h2 em {
  font-style: normal;
  color: #f7b034;
}

.section-heading img {
  margin: 20px auto;
}

.dark-bg h2 {
  color: #fff;
}

.dark-bg p {
  color: #fff;
}


/* Sub Header Style */

.sub-header {
	background-color: #f7b034;/*a4c639*/
	height: 32px;
	line-height: 32px;
}

.sub-header ul li {
	display: inline-block;
}

.sub-header ul.left-info li {
	border-left: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}

.sub-header ul.left-info li:last-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.left-info li i {
	margin-right: 10px;
	font-size: 18px;
}

.sub-header ul.right-info li {
	border-right: 1px solid rgba(250,250,250,0.3);
	padding: 0px 20px;
}
.sub-header ul.right-info li:last-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-info li i {
	margin-left: 10px;
	font-size: 18px;
}

.sub-header ul.left-info li a, .sub-header ul.right-info li a {
	color: #fff;
	font-size: 1em;
	font-weight: 600;
}

.sub-header ul.right-icons {
	float: right;
}

.sub-header ul.right-icons li {
	margin-right: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li:first-child {
	border-left: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.right-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.right-icons li a:hover {
	opacity: 0.75;
}

.sub-header ul.left-icons {
	float: left;
}

.sub-header ul.left-icons li {
	margin-left: -4px;
	width: 46px;
	display: inline-block;
	text-align: center;
	border-left: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.left-icons li:first-child {
	border-right: 1px solid rgba(250,250,250,0.3);
}

.sub-header ul.left-icons li a {
	color: #fff;
	transition: all 0.3s;
}

.sub-header ul.left-icons li a:hover {
	opacity: 0.75;
}



/* 
---------------------------------------------
header
--------------------------------------------- 
*/


.header-area {
  position: absolute;
  top: 32px;
  left: 0px;
  right: 0px;
  z-index: 100;
  height: 80px;
  background: rgba(250,250,250,0.1);
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 80px;
  color: #333;
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.header-area .main-nav .logo em {
  font-style: normal;
  color: #f7b034;
  font-weight: 900;
}

.header-area .main-nav .nav {
  float: right;
  margin-top: 27px;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li {
  padding-left: 20px;
  padding-right: 20px;
}

.header-area .main-nav .nav  li > a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #333333;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 78px;
  line-height: 78px;
  border: transparent;
  letter-spacing: 1px;
}
.header-area .main-nav .nav li .dropdown-menu a {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: #333333;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  height: 40px;
  line-height: 40px;
  border: transparent;
  letter-spacing: 1px;
}

.header-area .main-nav .nav li a {
  color: #333;
}

.header-area .main-nav .nav li:hover > a,
.header-area .main-nav .nav li > a.active {
  color: #f7b034!important;
  opacity: 1;
}

.background-header .main-nav .nav li:hover > a,
.background-header .main-nav .nav li > a.active {
  color: #f7b034!important;
  opacity: 1;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 23px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 5px;
  display: none;
}
.header-area .main-nav .menu-trigger1 {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 20px;
  width: 42px;
  height: 40px;
  border: none;
  background: none;
  /*text-indent: -9999em;*/
  z-index: 9999;
  right: 54px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger1 span,
.header-area .main-nav .menu-trigger1 span:before,
.header-area .main-nav .menu-trigger1 span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger1 span,
.background-header .main-nav .menu-trigger1 span:before,
.background-header .main-nav .menu-trigger1 span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger1 span:before,
.header-area .main-nav .menu-trigger1 span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}
#anchor-for-dropdown {
  anchor-name: --my-anchor;
}

#dropdown {
  margin: 0;
  position-anchor: --my-anchor;
  position-area: block-end span-inline-end;
}

.background-header .main-nav .menu-trigger1 span:before,
.background-header .main-nav .menu-trigger1 span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav {
  margin-top: 0px !important;
}

.header-area.header-sticky .nav li a.active {
  color: #f7b034;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 12px;
    padding-right: 12px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 992px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #f7b034!important;
    opacity: 1;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area .main-nav .nav li:last-child {
    width: 100%;
    background-color: #f7b034;
    color: #fff;
  }

  .header-area.header-sticky .nav {
    margin-top: 12px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #232d39 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #f7b034!important;
  }
  .header-area .main-nav .nav li.submenu ul {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    transition-delay: 0s, 0s, 0.3s;
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.submenu ul.active {
    height: auto !important;
  }
  .header-area .main-nav .nav li.submenu:after {
    color: #3B566E;
    right: 25px;
    font-size: 1em;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 992px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}


/* 
---------------------------------------------
banner
--------------------------------------------- 
*/

.main-banner {
  position: relative;
}

#bg-video {
    min-width: 100%;
    min-height: 100vh;
    max-width: 100%;
    max-height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#bg-video::-webkit-media-controls {
    display: none !important;
}

.video-overlay {
    position: absolute;
    background-color: rgba(35,45,57,0.1);
    top: 0;
    left: 0;
    bottom: 0px;
    width: 100%;
}

.main-banner .caption {
  text-align: center;
  position: absolute;
  width: 80%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.main-banner .caption h6 {
  margin-top: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.5px;
}

.main-banner .caption h2 {
  margin-top: 30px;
  margin-bottom: 25px;
  font-size: 84px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.main-banner .caption h2 em {
  font-style: normal;
  color: #f7b034;
  font-weight: 900;
}


/*
---------------------------------------------
features
---------------------------------------------
*/

#features {
  margin-bottom: 80px;
}

.feature-item {
  display: inline-block;
  margin-bottom: 60px;
}

.feature-item .left-icon img, .feature-item .left-icon .icon {
  float: left;
  margin-right: 30px;
}

.feature-item .right-content {
  display: inline;
}

.feature-item .right-content h4 {
  margin-top: 0px;
  margin-bottom:  7px;
  letter-spacing: 0.25px;
  color: #232d39;
  font-size: 19px;
  font-weight: 600;
  text-transform: capitalize;
}

.feature-item .right-content a.text-button {
  margin-top: 7px;
  display: inline-block;
  font-size: 13px;
  text-transform: uppercase;
  color: #f7b034;
  font-weight: 500;
}

/*
---------------------------------------------
subscribe
---------------------------------------------
*/

#call-to-action {
  padding: 120px 0px;
  background-image: url(../images/cta-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  text-transform: uppercase;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.cta-content h2 em {
  font-style: normal;
  color: #f7b034;
}

.cta-content p {
  font-size: 16px;
  color: #fff;
  margin: 15px 0px 25px 0px;
}



/*
--------------------------------------------
Our Classes
--------------------------------------------
*/

#our-classes {
  margin-bottom: 140px;
}

#tabs ul {
  margin: 0;
  padding: 0;
}
#tabs ul li {
  margin-bottom: 30px;
  display: inline-block;
  width: 100%;
}
#tabs ul li:last-child {
  margin-bottom: 0px;
}
#tabs ul li a {
  text-transform: capitalize;
  width: 100%;
  padding: 30px 30px;
  display: inline-block;
  background-color: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  border-radius: 5px;
  font-size: 19px;
  color: #232d39;
  letter-spacing: 0.5px;
  font-weight: 600;
  transition: all 0.3s;
}
#tabs .main-rounded-button a {
  text-align: center;
  padding: 20px 30px;
  width: 100%;
  border-radius: 5px;
  display: inline-block;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  color: #fff;
  font-size: 19px;
  letter-spacing: 0.5px;
  font-weight: 600;
  background-color: #f7b034;
}
#tabs .main-rounded-button a:hover {
  background-color: #f9735b;
}
#tabs ul li a .fa {
  font-size: 32px;
  height: 32px;
  color: #f7b034;
  margin-right: 15px;
  display: inline-block;
}
#tabs ul .ui-tabs-active span {
  background: #faf5b2;
  border: #faf5b2;
  line-height: 90px;
  border-bottom: none;
}
#tabs ul .ui-tabs-active a {
  color: #f7b034;
}
#tabs ul .ui-tabs-active span {
  color: #1e1e1e;
}
.tabs-content {
  margin-left: 30px;
  text-align: left;
  display: inline-block;
  transition: all 0.3s;
}
.tabs-content img {
  max-width: 100%;
  overflow: hidden;
  border-radius: 5px;
}
.tabs-content h4 {
  font-size: 23px;
  font-weight: 700;
  color: #232d39;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  margin-top: 30px;
}
.tabs-content p {
  font-size: 1em;
  color: #333333;
  margin-bottom: 28px;
}


/* 
---------------------------------------------
schedule
--------------------------------------------- 
*/


.section-bg {
    background-image: url(../images/about-fullscreen-image-1-1920x600.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
    position: relative;
}


.header-bg {
	text-align: center;
	background-image: url(../images/about-fullscreen-image-1-1920x600.jpg);
	background-position: center ;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 175px 0px 95px 0px;
	color: #fff;
	position: relative;
}

.section-bg:before {
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    background-color: rgba(35,45,57,0.8);
    z-index: 1;
}

.header-bg:before {
    content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
    background-color: rgba(35,45,57,0.1);
    z-index: 1;
}



.section-bg > form, .header-bg > form,
.section-bg .container, .header-bg .container {
  position: relative;
  z-index: 2
}

#schedule {
  padding: 0px 0px 140px 0px;
}

#schedule table {
  width: 100%;
  text-align: center;
  border: 1px solid #fff;
}

#schedule table tbody {
  border-top: 1px solid #fff; 
}

#schedule table tbody tr {
  border-bottom: 1px solid #fff;
}

#schedule table tbody tr td {
  border-right: 1px solid #fff;
  height: 100px;
}

#schedule table tr td {
  color: #fff;
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 0.25px;
}

.schedule-table.filtering .ts-item {
    opacity: 0;
    transition: all 0.5s;
}

.schedule-table.filtering .ts-item.show {
    opacity: 1;
    transition: all 0.5s;
}

#schedule .filters {
  margin-bottom: 40px;
}
#schedule .filters ul {
  padding: 0;
  text-align: center;
}
#schedule .filters ul li {
  list-style: none;
  display: inline;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#schedule .filters ul li:after {
  content: "/";
  margin-left: 10px;
  color: #fff;
}
#schedule .filters ul li:last-child {
  margin-right: 0px;
}
#schedule .filters ul li:last-child::after {
  display: none;
}
#schedule .filters ul li.active,
#schedule .filters ul li:hover {
  color: #f7b034;
}
#schedule .filters-content {
  margin-top: 50px;
}
#schedule .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}
#schedule .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}


/* 
---------------------------------------------
packages
--------------------------------------------- 
*/

#packages { 
  padding-bottom: 90px; 
}

#packages .trainer-item {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.1);
  padding: 15px;
  margin-bottom: 30px;
}

#packages .trainer-item img {
  width: 100%;
  border-radius: 5px;
}

#packages .trainer-item span {
  font-size: 13px;
  font-weight: 500;
  color: #f7b034;
  display: inline-block;
  margin-top: 25px;
  margin-bottom: 10px;
}

#packages .trainer-item h4 {
  font-size: 19px;
  font-weight: 600;
  color: #232d39;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

#packages .trainer-item p {
  margin-bottom: 20px;
}

ul.social-icons li {
  display: inline-block;
  margin-right: 12px;
}

ul.social-icons li:last-child {
  margin-right: 0px;
}

ul.social-icons li a {
  color: #232d39;
  transition: all .3s;
}

ul.social-icons li a:hover {
  color: #f7b034;
}



/*///////////////////////////////*************************************/
/*------------------------------contact -----------------------------*/
/********************************************************************/
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-box {
  color: #313030;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}

.contact .info-box i {
  font-size: 0.8em;
  color: #f7b034;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float: left;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 0 10px 68px;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 1em;
  margin: 0 0 0 68px;
}

.contact .info-box-ar {
  color: #313030;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px;
}
.contact .info-box-ar i {
  font-size: 32px;
  color: #ff5821;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #ffded4;
  float: right;
}

.contact .info-box-ar h3 {
  font-size: 20px;
  color: #656262;
  font-weight: 700;
  margin: 10px 68px 10px 0;
}

.contact .info-box-ar p {
  padding: 0;
  line-height: 24px;
  font-size: 1em;
  margin: 0 68px 0 0;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 1em;
}

.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #ff5821;
}

.contact .php-email-form input {
  padding: 20px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #ff5821;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff7e54;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* 
---------------------------------------------
footer
--------------------------------------------- 
*/
footer {
  text-align: center;
  padding: 30px 0px;
}

footer p {
  color: #232d39;
  font-size: 13px;
}

footer p a {
  cursor: pointer;
  color: #f7b034;
}

footer p a:hover {
  color: #f7b034;
}



/* 
---------------------------------------------
preloader
--------------------------------------------- 
*/

.js-preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1d2c48;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    opacity: .75;
    visibility: visible;
    z-index: 9999;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.js-preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@-webkit-keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@keyframes dot {
    50% {
        -webkit-transform: translateX(96px);
        transform: translateX(96px);
    }
}

@-webkit-keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

@keyframes dots {
    50% {
        -webkit-transform: translateX(-31px);
        transform: translateX(-31px);
    }
}

.preloader-inner {
    position: relative;
    width: 142px;
    height: 40px;
    background: #232d39;
}

.preloader-inner .dot {
    position: absolute;
    width: 16px;
    height: 16px;
    top: 12px;
    left: 15px;
    background: #fff;
    border-radius: 50%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-animation: dot 2.8s infinite;
    animation: dot 2.8s infinite;
}

.preloader-inner .dots {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    margin-top: 12px;
    margin-left: 31px;
    -webkit-animation: dots 2.8s infinite;
    animation: dots 2.8s infinite;
}

.preloader-inner .dots span {
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    margin-left: 16px;
    background: #fff;
    border-radius: 50%;
}


/* 
---------------------------------------------
responsive
--------------------------------------------- 
*/


@media (max-width: 992px) {

  .main-banner .caption h2 {
    font-size: 64px;
  }
  #features {
    margin-bottom: 110px;
  }
  #features .feature-item {
    margin-bottom: 30px;
  }
  #our-classes .tabs-content {
    margin-left: 0px;
    margin-top: 30px;
  }
  .trainer-item {
    margin-bottom: 30px;
  }
  #contact-us #map {
    margin-bottom: -7px;
  }
  #contact-us .contact-form {
    padding: 30px;
  }
  #contact-us .contact-form #contact {
    padding: 30px;
  }

}

@media (max-width: 450px) {
  .feature-item .right-content a.text-button {
    margin-left: 130px;
  }
}

.dropdown-menu {
  background: rgba(0,0,0,0.6);
  padding: 0;
  border-radius: 0;
}

.background-header .dropdown-menu {
  background: rgba(250,250,250,0.9);
}

.dropdown-menu a {
  line-height: 1.3;
  color: #fff;
}


.background-header .main-nav .nav li a:hover,
.background-header .main-nav .nav li a.active,
.dropdown-menu a.active,
.dropdown-menu a:hover {
  background: transparent;
  color: #f7b034!important;
}

.pagination-lg .page-link {
  color: #f7b034;
}

.btn-primary {
  border-color: #f7b034;
  background-color: #f7b034;
  border-radius: 0;
  padding: 15px 15px;
  text-transform: uppercase;
}

.btn-primary:not(:disabled):not(.disabled).active, 
.btn-primary:not(:disabled):not(.disabled):active, 
.show>.btn-primary.dropdown-toggle,
.btn-primary:active,
.btn-primary:active:focus,
.btn-primary:focus,
.btn-primary:hover {
  background-color: var(--blue-color);
  border-color: var(--blue-color);
  outline: none;
}
.btn-secondary {
  border-color: #f7b034;
  background-color: #ffffff;
  color: #f7b034;
  border-radius: 0;
  padding: 15px 15px;
  text-transform: uppercase;
}

.btn-secondary:not(:disabled):not(.disabled).active, 
.btn-secondary:not(:disabled):not(.disabled):active, 
.show>.btn-secondary.dropdown-toggle,
.btn-secondary:active,
.btn-secondary:active:focus,
.btn-secondary:focus,
.btn-secondary:hover {
  background-color: var(--blue-color);
  color: #ffffff;
  border-color: var(--blue-color);
  outline: none;
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--smoke-color);
  font-size: 30px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: #f7b034;
}

a:focus,
a:hover {
  color: #f9735b;
}


/* venobox play */

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.78, 0.78);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.78, 0.78);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

.video-box {
  background: url("../images/about-img.jpg") center center no-repeat;
  background-size:100% 100%;
}
.video-box:before {
  content: "";
  background: radial-gradient(rgba(255, 249, 240, 0) 0%,rgba(255, 249, 240, .4) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

.play-btn {
  width: 82px;
  height: 82px;
  background: radial-gradient(#466f8c 50%, rgba(70, 111, 140, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 41px);
  top: calc(50% - 41px);
  overflow: hidden;
}

.play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.play-btn::before {
  content: '';
  position: absolute;
  width: 82px;
  height: 82px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(70, 111, 140, 0.7);
  left: calc(50% - 41px);
  top: calc(50% - 41px);
  background: rgba(198, 16, 0, 0);
}

.play-btn:hover::after {
  border-left: 15px solid #466f8c;
  transform: scale(20);
}

.play-btn:hover::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}


/*--------------------------------------------------------------
# exhibitors
--------------------------------------------------------------*/
.exhibitors {
	background-color: #ffffff;	
}
.exhibitors .member {
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.exhibitors .member .member-img {
  position: relative;
  overflow: hidden;
}

.exhibitors .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
  background: rgba(255, 255, 255, 0.85);
}

.exhibitors .member .social a {
  transition: color 0.3s;
  color: #473d3a;
  margin: 0 10px;
  padding-top: 8px;
  display: inline-block;
}

.exhibitors .member .social a:hover {
  color: #ff5821;
}

.exhibitors .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.exhibitors .member .member-info {
  padding: 25px 15px;
}

.exhibitors .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #473d3a;
}

.exhibitors .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #989595;
}

.exhibitors .member .member-info p {
  font-style: italic;
  font-size: 1em;
  line-height: 26px;
  color: #656262;
}

.exhibitors .member:hover .social {
  opacity: 1;
}

.exhibitors .exhibitors-pagination {
  color: #7f6d68;
}

.exhibitors .exhibitors-pagination ul {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.exhibitors .exhibitors-pagination li {
  border: 1px solid #f2f2f2;
  background: #ffffff;
  margin: 0 3px;
  transition: 0.3s;
}

.exhibitors .exhibitors-pagination li.active {
  background: white;
}

.exhibitors .exhibitors-pagination li a {
  color: #989595;
  padding: 4px 12px;
  display: inline-block;
}

.exhibitors .exhibitors-pagination li.active, .exhibitors .exhibitors-pagination li:hover {
  background: #f7b034;
  border: 1px solid #f7b034;
}

.exhibitors .exhibitors-pagination li.active a, .exhibitors .exhibitors-pagination li:hover a {
  color: #fff;
}

.exhibitors .exhibitors-pagination li.disabled {
  background: #f7f7f7;
  border: 1px solid #fdfcfc;
}

.exhibitors .exhibitors-pagination li.disabled i {
  color: #dedede;
  padding: 5px 12px;
  display: inline-block;
}
.exhibitors .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}

.exhibitors .read-more a {
  display: inline-block;
  background: #ff5821;
  color: #fff;
  padding: 6px 20px;
  transition: 0.3s;
  font-size: 1em;
}

.exhibitors .read-more a:hover {
  background: #ff774a;
}


.exhibitors_list .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #473d3a;
  position: relative;
}

.exhibitors_list .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.exhibitors_list .sidebar .search-exhibitors form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
}

.exhibitors_list .sidebar .search-exhibitors form input[type="text"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 40px);
}

.exhibitors_list .sidebar .search-exhibitors form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: #473d3a;
  color: #fff;
  transition: 0.3s;
}

.exhibitors_list .sidebar .search-exhibitors form button:hover {
  background: #635551;
}

.exhibitors_list .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.exhibitors_list .sidebar .categories ul li + li {
  padding-top: 10px;
}

.exhibitors_list .sidebar .categories ul a {
  color: #8d7973;
}

.exhibitors_list .sidebar .categories ul a:hover {
  color: #ff5821;
}

.exhibitors_list .sidebar .categories ul a span {
  padding-left: 5px;
  color: #afa29e;
  font-size: 1em;
}

.exhibitors_list .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.exhibitors_list .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.exhibitors_list .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.exhibitors_list .sidebar .recent-posts h4 a {
  color: #0f0d0c;
  transition: 0.3s;
}

.exhibitors_list .sidebar .recent-posts h4 a:hover {
  color: #ff5821;
}

.exhibitors_list .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 1em;
  color: #afa29e;
}


.exhibitors_list .sidebar .recent-posts-ar .post-item + .post-item {
  margin-top: 15px;
}

.exhibitors_list .sidebar .recent-posts-ar img {
  width: 80px;
  float: right;
}

.exhibitors_list .sidebar .recent-posts-ar h4 {
  font-size: 15px;
  margin-right: 95px;
  font-weight: bold;
}

.exhibitors_list .sidebar .recent-posts-ar h4 a {
  color: #0f0d0c;
  transition: 0.3s;
}

.exhibitors_list .sidebar .recent-posts-ar h4 a:hover {
  color: #ff5821;
}

.exhibitors_list .sidebar .recent-posts-ar time {
  display: block;
  margin-right: 95px;
  font-style: italic;
  font-size: 1em;
  color: #afa29e;
}

.exhibitors_list .sidebar .tags {
  margin-bottom: -10px;
}

.exhibitors_list .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.exhibitors_list .sidebar .tags ul li {
  display: inline-block;
}

.exhibitors_list .sidebar .tags ul a {
  color: #8d7973;
  font-size: 1em;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid #f4f2f2;
  display: inline-block;
  transition: 0.3s;
}

.exhibitors_list .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid #ff5821;
  background: #ff5821;
}

.exhibitors_list .sidebar .tags ul a span {
  padding-left: 5px;
  color: #ddd7d6;
  font-size: 1em;
}


.detail_inscription
{
   padding: 10px 20px 12px 20px;
   font-size: 18px;
   font-weight: 600;
   line-height: 3;
   text-transform: uppercase;
   color: #313030;
   margin-bottom: 5px;
   transition: all 0.3s ease-in-out;
   border-radius: 50px;
   background: #fffaf0;
}


/*--------------------------------------------------------------
# partenaire
--------------------------------------------------------------*/
#partenaire {
	/*margin-top: 4em;*/
	background-color: #f7f7f7;
	padding: 4vw 0px;
	width:100%;
}
/*#partenaire {
  padding-top: 3em;
  background: #fefefe;
}*/
#partenaire .partenaire-wrap {
  border-top: 1px solid #e7e7e7;
  border-left: 1px solid #e7e7e7;
  width:100%;
}
#partenaire .partenaire-logo {
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e7e7e7;
  border-bottom: 1px solid #e7e7e7;
  overflow: hidden;
  background: #fff;
  height: 100%;
}
#partenaire .partenaire-logo:hover img {
  transform: scale(1.1);
}
#partenaire .partenaire-logo a {
  max-height:95%;
  max-width:100%;
  display: block;
}

#partenaire .partenaire-logo a img {
  /*height:12em;*/
  max-height:95%;
  max-width:100%;
  display: block;
}
#partenaire img {
  transition: all 0.4s ease-in-out;
}

#read_more,#read_more_wtc {display: none;}

/*------------------- 4.00. Service -------------------*/
/* Service Card ---------------------------------- */
.service-card {
  padding: 40px;
  position: relative;
  z-index: 2;
  background-color: var(--theme-color);
  overflow: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  box-shadow: 0px 6px 20px 0px rgba(0, 38, 52, 0.06);
  /* Medium devices */
}

@media (max-width: 991px) {
  .service-card {
    padding: 30px;
  }
}

.service-card:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.service-card:after {
  content: '';
  position: absolute;
  height: 110px;
  width: 110px;
  top: -10px;
  right: -22px;
  background-color: var(--smoke-color);
  border-radius: 50%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: -1;
  -webkit-clip-path: path("M30.2831 74.8414C36.7842 76.2022 42.3987 78.0068 48.6338 79.3973C55.9918 81.0243 60.3948 75.0781 66.8959 74.8414C78.9819 74.4864 81.3164 91.3193 87.7288 99.8098C91.8658 105.224 95.7664 108.566 102.415 109.898C109.034 111.199 113.733 105.667 118.875 106.791C125.524 96.3485 126.646 111.111 129.838 114.453C136.487 121.465 141.599 116.968 146.563 110.578C158.62 95.0764 163.111 76.0543 164.884 57.1505C166.805 36.3238 166.51 14.2547 161.9 -6.0691C159.831 -15.2399 155.724 -43.2258 145.647 -46.1841L150.228 -37.0133C151.616 -23.1387 152.001 -6.63119 145.411 5.85299C140.387 15.3788 120.382 24.668 114.354 10.823C107.882 11.6809 107.35 5.52757 106.996 0.675898C100.672 4.55132 88.2311 13.515 86.8718 0.735032C71.0624 3.78212 93.3433 -26.452 96.8894 -30.8304C103.272 -38.7291 113.378 -51.8642 123.544 -55C116.688 -53.2546 109.655 -52.7516 102.622 -50.5329C64.4728 -38.6108 -18.4156 4.90635 3.68793 53.7781C8.62282 64.6647 18.2562 72.3268 30.2831 74.8414Z");
          clip-path: path("M30.2831 74.8414C36.7842 76.2022 42.3987 78.0068 48.6338 79.3973C55.9918 81.0243 60.3948 75.0781 66.8959 74.8414C78.9819 74.4864 81.3164 91.3193 87.7288 99.8098C91.8658 105.224 95.7664 108.566 102.415 109.898C109.034 111.199 113.733 105.667 118.875 106.791C125.524 96.3485 126.646 111.111 129.838 114.453C136.487 121.465 141.599 116.968 146.563 110.578C158.62 95.0764 163.111 76.0543 164.884 57.1505C166.805 36.3238 166.51 14.2547 161.9 -6.0691C159.831 -15.2399 155.724 -43.2258 145.647 -46.1841L150.228 -37.0133C151.616 -23.1387 152.001 -6.63119 145.411 5.85299C140.387 15.3788 120.382 24.668 114.354 10.823C107.882 11.6809 107.35 5.52757 106.996 0.675898C100.672 4.55132 88.2311 13.515 86.8718 0.735032C71.0624 3.78212 93.3433 -26.452 96.8894 -30.8304C103.272 -38.7291 113.378 -51.8642 123.544 -55C116.688 -53.2546 109.655 -52.7516 102.622 -50.5329C64.4728 -38.6108 -18.4156 4.90635 3.68793 53.7781C8.62282 64.6647 18.2562 72.3268 30.2831 74.8414Z");
}

.service-card_overlay {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}

.service-card_img {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card_img img {
  opacity: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card_icon {
  position: absolute;
  right: 30px;
  top: 25px;
  font-size: 36px;
  font-weight: 600;
  color: var(--theme-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card_overlay2 {
  position: absolute;
  top: -60%;
  left: -6%;
  width: 120px;
  height: 120px;
  z-index: -1;
}

.service-card .box-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card .box-title:hover {
  color: var(--white-color);
}

.service-card .box-title a {
  color: inherit;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card_text {
  border-bottom: 1px dashed #E8CDBF;
  padding-bottom: 20px;
  margin-bottom: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-card .th-btn {
  padding: 14px 25px;
}

.service-card:hover .service-card_overlay {
  opacity: 1;
  visibility: visible;
}

.service-card:hover .service-card_overlay2 {
  opacity: 0.15;
}

.service-card:hover .service-card_img img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

.service-card:hover .service-card_text {
  color: var(--white-color);
}

.service-card:hover .box-title {
  color: var(--white-color);
}

.service-card:hover .th-btn.style2 {
  background-color: var(--title-color);
  color: var(--white-color);
  border-color: var(--title-color);
}

.service-card:hover .th-btn.style2:before, .service-card:hover .th-btn.style2:after {
  background-color: var(--white-color);
}

.service-card:hover .th-btn.style2:hover {
  border-color: var(--white-color);
  color: var(--title-color);
}

.service-card:hover:before {
  height: 0;
}

.service-btn {
  position: relative;
  background-color: var(--smoke-color);
  border: 1px dashed var(--theme-color);
  border-radius: 20px;
  padding: 10px 33px;
  z-index: 2;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .service-btn {
    padding: 10px 10px;
  }
  .service-btn .line-btn {
    font-size: 10px;
  }
}

.service-btn:before, .service-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 770px;
  height: 1px;
  border: 1px dashed var(--theme-color);
  z-index: -1;
}

.service-btn:before {
  left: 0;
}

.service-btn:after {
  right: 0;
}

.service-btn .line-btn:before {
  display: none;
}

/* Service Box ---------------------------------- */
.service-box {
  position: relative;
  background-color: var(--smoke-color);
  text-align: center;
  padding: 30px;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  z-index: 1;
  margin-top: 30px;
}

.service-box .box-title {
  margin-bottom: 8px;
  font-size: 18px;
}

.service-box_icon {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
}

.service-box_text {
  margin: 0 0 -0.5em 0;
}

.service-box .global-icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
      -ms-flex: none;
          flex: none;
  background: var(--white-color);
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 90px;
  border-radius: 50%;
  position: relative;
  border: 5px solid var(--white-color);
  z-index: auto;
  display: block;
  margin: -80px auto auto auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.service-box .global-icon:after {
  content: '';
  position: absolute;
  left: -10px;
  top: -10px;
  height: 104px;
  width: 104px;
  line-height: 95px;
  border: 5px solid var(--theme-color);
  border-radius: 50%;
  z-index: -1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: spin 4s linear infinite;
          animation: spin 4s linear infinite;
          
}

.service-box .global-icon img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding-top:10px;
  display: block;
  margin: auto;
}

.service-box_content {
  position: relative;
  padding: 0 10px 25px 10px;
}

.service-box:hover .global-icon img {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.service-img img {
  width: 100%;
}

/* Service Grid ---------------------------------- */
.service-area {
  background-color: var(--white-color);
  margin: 0 100px;
  /* Extra large devices */
  /* Medium Large devices */
}

@media (max-width: 1500px) {
  .service-area {
    margin: 0 50px;
  }
}

@media (max-width: 1299px) {
  .service-area {
    margin: 0;
  }
}

.service-grid {
  position: relative;
  background-color: var(--smoke-color);
  padding: 25px;
  text-align: center;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 2;
  overflow: hidden;
  /* Large devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .service-grid {
    padding: 30px;
  }
}

@media (max-width: 575px) {
  .service-grid {
    padding: 20px;
  }
}

.service-grid_overlay {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-transform: skewX(10deg);
      -ms-transform: skewX(10deg);
          transform: skewX(10deg);
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-grid_icon {
  margin-top:-15px;
  margin-bottom: 15px;
}

.service-grid_number {
  font-size: 64px;
  font-weight: 500;
  line-height: 74px;
  color: rgba(171, 106, 73, 0.2);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(171, 106, 73, 0.2);
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  position: absolute;
  top: 10px;
  left: 10px;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-grid .box-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}

.service-grid_text {
  margin-bottom: -0.4rem;
}

.service-grid:hover .service-grid_number, .service-box:hover .service-grid_number {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

.service-grid:hover .service-grid_overlay, .service-box:hover .service-grid_overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}

/* Service item ---------------------------------- */
.service-item {
  background-color: var(--white-color);
  padding: 20px;
  margin-top: 30px;
}

.service-item_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-item_img {
  margin-bottom: 10px;
}

.service-item_img img {
  width: 100%;
}

.service-item_icon {
  width: 26px;
  height: 26px;
  line-height: 26px;
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50%;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item_icon i {
  text-align: center;
  font-size: 14px;
  padding: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-item .box-title {
  font-size: 20px;
  margin-bottom: -0.9rem;
}

.service-item:hover .service-item_icon {
  background-color: var(--theme-color);
  color: var(--white-color);
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.service-image {
  margin-top: 40px;
}

.service-image img {
  width: 100%;
}

.service-sec {
  background: -webkit-linear-gradient(left, rgba(232, 205, 191, 0.1) 0%, rgba(232, 205, 191, 0.6) 49.27%, rgba(232, 205, 191, 0) 100%);
  background: linear-gradient(90deg, rgba(232, 205, 191, 0.1) 0%, rgba(232, 205, 191, 0.6) 49.27%, rgba(232, 205, 191, 0) 100%);
}

/* Service Details ---------------------------------- */
.page-title {
  margin-top: -0.22em;
  font-size: 40px;
  margin-bottom: 20px;
}

.service-single {
  background-color: var(--white-color);
  box-shadow: 0px 6px 35px 0px rgba(0, 0, 0, 0.06);
  padding: 40px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .service-single {
    padding: 30px;
  }
}

.page-img {
  margin-bottom: 30px;
  border-radius: 0px;
  overflow: hidden;
}

.page-img img {
  width: 100%;
}

.page-single {
  margin-bottom: 30px;
}

.service-feature {
  background-color: var(--white-color);
  padding: 30px 25px 30px 30px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06);
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.service-feature-wrap {
  display: grid;
  grid-template-columns: auto auto;
  gap: 25px;
}

.service-feature_icon {
  background: var(--theme-color);
  box-shadow: 0px 6px 20px rgba(104, 77, 244, 0.5);
  border-radius: 5px;
  width: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
}

.service-feature_title {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-feature_text {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .page-title {
    font-size: 38px;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .service-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 30px 10px;
  }
  .service-feature_text {
    margin-bottom: -0.5em;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .page-title {
    font-size: 32px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .page-title {
    font-size: 28px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .page-title {
    font-size: 24px;
  }
  .service-feature-wrap {
    grid-template-columns: auto;
  }
}

/*------------------- 4.00. Products  -------------------*/
 .square-div {
  position: relative;
  padding-bottom: 100%; /* Makes height equal to width */
  height: 0; /* Important for padding-bottom trick */
  
  
}

.square-div img {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
 }
 
.th-product {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.th-product.product-grid {
  position: relative;
  background-color: var(--smoke-color);
}

.th-product .product-grid_wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px;
  /* Extra small devices */
}

@media (max-width: 575px) {
  .th-product .product-grid_wrapper {
    padding: 20px;
  }
}

.th-product .box-title {
  margin-bottom: 0px;
}
.product-grid .box-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 10px;
}
.th-product .product-category {
  color: var(--body-color);
  margin-bottom: -0.6rem;
}

.th-product .product-category a {
  color: inherit;
}

.th-product .product-grid_content {
  text-align: right;
}

.th-product .price {
  display: block;
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 600;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
  font-family: var(--title-font);
  margin-bottom: 5px;
}

.th-product .price del {
  margin-left: 10px;
  color: var(--body-color);
}

.th-product .product-img {
  background-color: var(--smoke-color);
  overflow: hidden;
  position: relative;
  margin: 0;
  text-align: center;
  z-index: 2;
}

.th-product .product-img img {
  width: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.th-product .product-action {
  position: absolute;
  top: 30%;
  right: -30px;
  text-align: right;
  width: auto;
  max-width: auto;
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.th-product .product-action a {
  border : 1px solid var(--theme-color);
  display: block;
  max-width: 46px;
  padding: 2px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-color);
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: var(--white-color);
  margin-left: auto;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(60px);
      -ms-transform: translateX(60px);
          transform: translateX(60px);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.th-product .product-action a:hover, .th-product .product-action a:focus {
  background: var(--blue-color);
  max-width: 135px;
}

.th-product .product-action a:hover .action-text, .th-product .product-action a:focus .action-text {
  color: var(--white-color);
  right: 40px;
  border-radius: 0;
}

.th-product .product-action a:hover .icon, .th-product .product-action a:focus .icon {
  background: var(--theme-color);
  color: var(--white-color);
  border-radius: 0;
}

.th-product .product-action a .action-text {
  display: inline-block;
  color: var(--white-color);
  margin-right: 8px;
  position: absolute;
  -webkit-transform: translate(0, 50%);
      -ms-transform: translate(0, 50%);
          transform: translate(0, 50%);
  left: -80px;
  /*top: 50%;*/
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.th-product .product-action a .icon {
  display: inline-block;
  height: 40px;
  width: 40px;
  border-radius: 0;
  background: var(--white-color);
  color: var(--theme-color);
  line-height: 40px;
  text-align: center;
  font-size: 16px;
}

.th-product .star-rating {
  margin: 0 auto 0px auto;
  width: 93px;
}

.th-product .actions {
  height: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  text-align: center;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.th-product .actions .icon-btn {
  --btn-size: 46px;
  font-size: 14px;
  background-color: var(--white-color);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  color: var(--theme-color);
  border-radius: 0;
  border: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.th-product .actions .icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-product .actions > * {
  margin: 0 var(--icon-gap-x, 5px);
}

.th-product .actions > * > a {
  margin: 0;
}

.th-product .icon-btn {
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}

.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
  position: relative;
  top: 0;
  left: 0;
  line-height: inherit;
  margin: 0;
  font-size: 24px;
}

.th-product .tinv-wishlist a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--white-color);
  color: var(--title-color);
  border-radius: 50%;
}

.th-product .tinv-wishlist a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-product .add_to_cart_button.added {
  display: none;
}

.th-product .added_to_cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--white-color);
  color: var(--white-color);
  font-size: 0;
  text-align: center;
  border-radius: 50%;
}

.th-product .added_to_cart:after {
  content: "\f07a";
  position: relative;
  font-family: var(--icon-font);
  font-size: 16px;
  font-weight: 700;
}

.th-product .added_to_cart:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-product .action-btn {
  background-color: var(--white-color);
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 13px 25px;
}

.th-product:hover .product-img img {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.th-product:hover .product-img:before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
  visibility: visible;
  opacity: 0.7;
}

.th-product:hover .product-action a {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  right: 60px;
  opacity: 1;
  visibility: visible;
  min-width: 46px;
}

.th-product:hover .product-action a:hover, .th-product:hover .product-action a:focus {
  min-width: 135px;
}

.th-product:hover .actions {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
}

.th-product:hover .icon-btn {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.th-product.list-view {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  height: 100%;
}

.th-product.list-view .product-img {
  width: 100%;
  max-width: 200px;
  margin: 0;
}

.th-product.list-view .star-rating {
  margin: 0 auto 10px 0;
  width: 93px;
}

.th-product.list-view .product-content {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: 1px solid var(--border-color);
  border-left: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 25px;
}

.th-product.list-view .actions {
  --btn-size: 35px;
  --btn-font-size: 13px;
  --icon-gap-x: 2px;
}

.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
  font-size: 20px;
}

.th-product.list-view .tinv-wishlist a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.th-product.list-view .added_to_cart {
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.th-product.list-view .added_to_cart:after {
  font-size: 16px;
}

.th-product.list-view .action-btn {
  padding: 8px 15px;
}

.th-product.list-view .tag {
  top: 8px;
  right: 8px;
  padding: 0px 15px;
}

.th-product.list-view .product-title {
  font-size: 18px;
  margin: 0 0 5px 0;
}

.th-product.list-view .product-price {
  font-size: 14px;
}

#productCarousel .slick-arrow {
  top: 37.5%;
}




.brand-box {
  width: 116px;
  height: 125px;
  overflow: hidden;
  margin: auto;
  position: relative;
  display: block;
}

.brand-box:hover a img.gray {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.brand-box:hover a img.original {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.brand-box img {
  margin: 0 auto;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.brand-box img.gray {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.brand-box img.original {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  -webkit-transform: translateY(0%);
      -ms-transform: translateY(0%);
          transform: translateY(0%);
}

.star-rating {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 14px;
}

.star-rating:before {
  content: "\e28b\e28b\e28b\e28b\e28b";
  color: #e1e1e1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}

.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.star-rating span:before {
  top: 0;
  position: absolute;
  left: 0;
  color: #f7b80c;
  letter-spacing: 3px;
}
.star-rating .span1:before {
content: "\e28b";
}
.star-rating .span2:before {
content: "\e28b\e28b";
}
.star-rating .span3:before {
content: "\e28b\e28b\e28b";
}
.star-rating .span4:before {
content: "\e28b\e28b\e28b\e28b";
}
.star-rating .span5:before {
content: "\e28b\e28b\e28b\e28b\e28b";
}
  

.brand-content {
  padding-top: 50px;
}

.brand-sec1 {
  position: relative;
  z-index: 2;
  /* Small devices */
}

.brand-sec1 .th-container {
  --main-container: 1520px;
}

@media (max-width: 767px) {
  .brand-sec1 .container {
    max-width: 100%;
  }
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
}

.number-dots {
  list-style-type: none;
  padding: 0;
  display: block;
  /*line-height: 0;*/
  text-align: center;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}

.number-dots ul {
  margin: 40px 0 0px 0;
  position: relative;
  display: inline-block;
  padding: 0;
  width: auto;
}

.number-dots ul:before, .number-dots ul:after {
  content: '';
  width: 118.733px;
  height: 9.834px;
  position: absolute;
  top: 50%;
  margin-top: -3px;
}


.number-dots li {
  display: inline-block;
  margin-right: 15px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.number-dots li:last-child {
  margin-right: 0;
}

.number-dots li.slick-active {
  -webkit-transform: scale(2);
      -ms-transform: scale(2);
          transform: scale(2);
}

.number-dots li button {
  font-size: 0;
  padding: 0;
  width: 4px;
  height: 4px;
  line-height: 4px;
  border-radius: 9999px;
  border: none;
  margin-left: 8px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
}

.number-dots li button:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  line-height: 10px;
  margin: -5px 0 0 -5px;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}


.slick-arrow {
  display: inline-block;
  padding: 0;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  top: 50%;
  border: none;
  left: var(--pos-x, -200px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: var(--icon-size, 56px);
  font-size: var(--icon-font-size, 16px);
  margin-top: calc(var(--icon-size, 56px) / -2);
  z-index: 2;
  border-radius: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}

.slick-arrow.slick-next {
  right: -200px;
  left: auto;
}

.slick-arrow:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}

.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
  left: var(--pos-x, -30px);
}

.arrow-wrap:hover .slick-arrow.slick-next {
  right: -30px;
  left: auto;
}
.arrow-wrap:hover .slick-arrow.slick-prev {
  right: auto;
  left: -30px;
}

.th-hero-wrapper:hover .slick-arrow.slick-next {
  right: 100px;
  left: auto;
}
.th-hero-wrapper.hero-3 .slick-arrow.slick-next {
  top: 52%;
  right: auto;
  left: 52px;
}

.testimonial-sec:hover .slick-arrow.slick-next {
  right: -30px;
  left: auto;
}
.slick-arrow.slick-next {
  right: -200px;
  left: auto;
}

/* Extra large devices */
@media (max-width: 1500px) {
  .slick-arrow {
    --arrow-horizontal: 30px;
    --pos-x: 17px;
  }
}

/* Medium Large devices 
@media (max-width: 1499px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
    --pos-x: -17px;
  }
}*/

/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    line-height: 38px;
    margin-right: 40px;
    font-size: 14px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 40px 0 0 0;
  }
  .icon-box .slick-arrow {
    margin-right: 0;
  }
}
.slider-shadow .slick-list {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: -30px;
  margin-top: -30px;
}


.footer-widget {
  margin-bottom: 50px;
}

.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}

.footer-widget .form-group > i {
  color: var(--theme-color);
  top: 18px;
}

.footer-widget .sidebar-gallery {
  max-width: 287px;
}

@media (max-width: 1499px) {
  .footer-widget .sidebar-gallery {
    max-width: 100%;
  }
}

.footer-widget .widget_title {
  position: relative;
  border: none;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  line-height: 1;
  border-bottom: 0;
  padding: 0 0 15px 0;
  margin: -0.12rem 0 33px 0;
  max-width: 275px;
}

.footer-widget .widget_title:before, .footer-widget .widget_title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 61px;
  height: 2px;
  background-color: var(--theme-color);
}

.footer-widget .widget_title:after {
  width: 16px;
  border: 3px solid var(--blue-color);
  height: 10px;
  background-color: transparent;
  bottom: -3px;
  left: 40px;
  -webkit-animation: footerLine 7s linear infinite;
          animation: footerLine 7s linear infinite;
}

.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  margin-top: -4px;
}

.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul, .footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul, .footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul, .footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul, .footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -4px;
}

.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  padding: 0 0 0 20px;
  margin-bottom: 22px;
  font-family: var(--body-font);
  display: block;
  max-width: 100%;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding-right: 0;
  background-color: transparent;
  border-bottom: none;
  position: relative;
}

.footer-widget.widget_meta a:before, .footer-widget.widget_pages a:before, .footer-widget.widget_archive a:before, .footer-widget.widget_categories a:before, .footer-widget.widget_nav_menu a:before {
  content: "\f30b";
  position: absolute;
  font-weight: 600;
  font-family: var(--icon-font);
  left: 0;
  top: 2px;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  font-size: 0.9em;
  background-color: transparent;
  border: none;
  color: inherit;
}

.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
  padding: 0 0 0 25px;
}

.footer-widget.widget_meta a:hover:before, .footer-widget.widget_pages a:hover:before, .footer-widget.widget_archive a:hover:before, .footer-widget.widget_categories a:hover:before, .footer-widget.widget_nav_menu a:hover:before {
  color: var(--theme-color);
}

.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}

.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}

.footer-widget .recent-post {
  max-width: 300px;
  margin-bottom: 27px;
}

.footer-widget .recent-post .post-title {
  color: var(--white-color);
  font-weight: 500;
}

.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-widget .recent-post .recent-post-meta a {
  font-weight: 400;
  line-height: 1.2;
}

.footer-widget .recent-post .recent-post-meta i {
  color: var(--theme-color);
}

.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}

.about-logo {
  margin-bottom: 15px;
}

.th-widget-about .about-logo {
  margin-bottom: 35px;
  margin-top: -20px;
}

.th-widget-about .about-text {
  color: var(--gray-color);
  margin-bottom: 17px;
  margin-top: -0.5em;
}

.th-widget-about .footer-info {
  position: relative;
  margin: 0 0 10px 0;
  /*display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;*/
  color: #B2B2B2;
  line-height: 26px;
  padding: 0 0 0 35px;
  max-width: 277px;
}

.th-widget-about .footer-info i {
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  position: absolute;
  left: 0;
  font-size: 10px;
}

.th-widget-about .footer-info-title {
  font-size: 18px;
  font-family: var(--title-font);
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 7px;
  margin-top: -0.2em;
}

.working-time .title {
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--white-color);
  display: block;
  margin-bottom: 6px;
}

.working-time .desc {
  color: var(--gray-color);
  margin-bottom: 30px;
}

.th-social.footer-social a {
  display: inline-block;
  width: var(--icon-size, 36px);
  height: var(--icon-size, 36px);
  line-height: var(--icon-size, 38px);
  background-color: #3D4250;
  color: var(--white-color);
  font-size: 14px;
  text-align: center;
  margin-right: 5px;
  border-radius: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

.th-social.footer-social a:hover {
  background-color: var(--theme-color);
  -webkit-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

.footer-text {
  margin-top: -0.5em;
  margin-bottom: 25px;
}

.social-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.social-box .social-title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
  margin-right: 20px;
  margin-bottom: 0;
}

.icon-group a {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 17px;
}

.icon-group a:last-child {
  margin-right: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }
  .th-widget-about .about-text {
    margin-bottom: 20px;
  }
  .social-box.mb-30 {
    margin-bottom: 25px;
  }
}
.footer-wrapper {
  --border-color: rgba(255, 255, 255, 0.3);
  --body-color: #BDBDBD;
  position: relative;
  z-index: 2;
  background-color: var(--blue-color);
  overflow: hidden;
}

.footer-wrapper .social-links a {
  margin: 0 30px 0 0;
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-wrapper .widget-area {
    padding-top: var(--section-space-mobile);
    padding-bottom: 10px;
  }
  .copyright-text {
    text-align: center;
  }
}


.widget-area {
  padding-top: calc(var(--section-space) - 60px);
  padding-bottom: 36px;
}

.footer-links {
  text-align: right;
  /* Medium devices */
}

@media (max-width: 991px) {
  .footer-links {
    display: none;
  }
}

.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-family: var(--body-font);
  display: inline-block;
  padding-right: 15px;
  margin-right: 10px;
  position: relative;
}

.footer-links li:after {
  content: "";
  height: 11px;
  width: 1px;
  background-color: var(--white-color);
  position: absolute;
  top: 50%;
  right: 0;
  margin: -5px 0;
  -webkit-transform: rotate(13deg);
      -ms-transform: rotate(13deg);
          transform: rotate(13deg);
}

.footer-links li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.footer-links li:last-child:after {
  display: none;
}

.footer-links a {
  font-family: inherit;
  color: var(--white-color);
}

.footer-links a:hover {
  color: var(--theme-color);
}

.copyright-wrap {
  padding: 22px 0;
  background-size: 100% auto;
  background-color: var(--theme-color2);
}

.copyright-text {
  margin: 0;
}

.copyright-text a {
  color: var(--theme-color);
}

.copyright-text a:hover {
  color: var(--white-color);
}

.th-widget-contact {
  max-width: 265px;
}

/*---------------maps-info-----------------*/
/*-----------------------------------------*/
.pricing-tabs.nav-tabs {
  border-bottom: 0;
}

.pricing-tabs.nav-tabs .nav-link {
  border: none;
}

.pricing-tabs.nav-tabs .nav-item.show .nav-link,
.pricing-tabs.nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  border-radius: 0;
}
.price-list {
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 10px 53px;
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--theme-color);
  border-radius: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  margin-bottom: 40px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  /* Medium Large devices */
  /* Medium devices */
}

.price-list-area {
  padding: 40px;
  border: 1px solid #F2F2F2;
  box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.05);
  background-color: var(--white-color);
  margin-top: 35px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .price-list-area {
    padding: 30px;
  }
}

@media (max-width: 991px) {
  .price-list-area {
    padding: 25px;
  }
}

.price-list-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  position: relative;
}

.price-list-box .content {
  -webkit-box-flex: 530px;
  -webkit-flex: 530px;
      -ms-flex: 530px;
          flex: 530px;
}

.price-list-box .text {
  margin-bottom: 33px;
}

.price-list-box .icon-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0.6;
}

.price-list-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1299px) {
  .price-list {
    padding: 10px 35px;
  }
}

@media (max-width: 991px) {
  .price-list {
    font-size: 18px;
    line-height: 30px;
    padding: 5px 30px;
  }
}

.price-list:last-child {
  margin-bottom: 0;
}

.price-list:before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--smoke-color);
  border: 1px solid var(--theme-color);
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
}

.price-list:after {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% - 17px);
  border-style: solid;
  border-width: 0 17px 0 17px;
  border-color: var(--theme-color) transparent transparent transparent;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.price-list_text {
  display: block;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  color: var(--body-color);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.price-list .box-title {
  color: var(--theme-color);
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.price-list.active {
  background-color: var(--theme-color);
}

.price-list.active::before {
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}

.price-list.active:after {
  border-width: 13px 17px 0 17px;
}

.slick-current .price-list::before {
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
}

.slick-current .price-list:after {
  border-width: 13px 17px 0 17px;
}

.slick-current .price-list_title {
  color: var(--white-color);
}

.slick-current .price-list .box-title {
  color: var(--white-color);
}

.slick-current .price-list_text {
  color: var(--light-color);
}

.price-slide {
  position: relative;
}

.price-item {
  background-color: var(--smoke-color);
  padding: 20px;
  margin-bottom: 26px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .price-item {
    display: block;
  }
}

.price-item .box-title {
  margin-bottom: 0;
}

.price-item_text {
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: -0.3rem;
}

.price-item_price {
  font-family: var(--title-font);
  font-size: 24px;
  color: var(--theme-color);
  font-weight: 700;
  line-height: 34px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.price-item .price {
  text-align: right;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1199px) {
  .price-item .price {
    margin-top: 20px;
  }
}

@media (max-width: 991px) {
  .price-item .price {
    text-align: left;
  }
}

.price-item .th-btn.style2 {
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.price-icon {
  background-color: transparent;
  border: 1px solid var(--smoke-color2);
  color: var(--theme-color);
  font-size: 18px;
  width: 100%;
  height: 23px;
  line-height: 23px;
}

.price-box-wrapper {
  min-width: 722px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .price-box-wrapper {
    min-width: 100%;
  }
}

.price-box-wrapper.style2 {
  min-width: 604px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .price-box-wrapper.style2 {
    min-width: 100%;
  }
}

.price-box-wrapper.style2 .price-box_desc {
  background-color: var(--white-color);
}

.price-box_content {
  width: calc(100% - 0px);
  position: relative;
}

.price-box_content:after {
  content: "";
  position: absolute;
  width: 100%;
  border: 1px dashed var(--theme-color);
  right: -90px;
  bottom: 12px;
  z-index: -1;
}

.price-box_img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid transparent;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.price-box_img:before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 100%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
}

.price-box_img img {
  width: 100%;
  height: 100%;
}

.price-box_wrapp {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

.price-box .box-title {
  margin-bottom: 0px;
}

.price-box_price {
  font-family: var(--title-font);
  color: var(--title-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  -webkit-font-feature-settings: "pnum" on, "lnum" on;
          font-feature-settings: "pnum" on, "lnum" on;
}

.price-box_desc {
  background-color: var(--smoke-color);
  display: inline-block;
  padding-right: 12px;
  margin-bottom: 0;
}

.price-btn {
  margin-top: 25px;
}

.price-btn .th-btn {
  padding: 16px 30px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .price-card_title img {
    max-width: 70px;
  }
}

.pricing-tabs {
  gap: 30px;
  /* Large devices */
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1199px) {
  .pricing-tabs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 991px) {
  .pricing-tabs {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .pricing-tabs {
    gap: 20px 10px;
  }
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}

.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 14px;
  font-size: 14px;
  color: var(--body-color);
}

.form-group > i.fa-envelope {
  padding-top: 1px;
}

.form-group > i.fa-comment {
  margin-top: -2px;
}

.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color);
}

.form-group.has-label > i {
  top: 50px;
}

[class*="col-"].form-group > i {
  right: calc((var(--bs-gutter-x) / 2) + 25px);
}
.form-group i {
  color: var(--theme-color);
}

.form-group select,
.form-group .form-control,
.form-group .form-select.nice-select,
.form-group .nice-select,
.form-group textarea,
.form-group input {
  height: 46px;
  padding: 0 25px 0 25px;
  padding-right: 45px;
  border: 0;
  background-color: var(--white-color);
  border-radius: 0;
  font-size: 16px;
  color: var(--body-color);
  width: 100%;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid var(--theme-color);
}

 .input-group-text-right
{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: var(--smoke-color);
  border: 1px solid var(--theme-color);
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

.input-group .input-text-right{
  border-top-right-radius: 0.25rem;;
  border-bottom-right-radius: 0.25rem;;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

 .input-group-text-left
{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: var(--smoke-color);
  border: 1px solid var(--theme-color);
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.input-group .input-text-left {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}


/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.th-hero-wrapper {
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

.th-hero-wrapper .slick-arrow {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  /* Extra large devices */
}

@media (max-width: 1300px) {
  .th-hero-wrapper .slick-arrow {
    display: none !important;
  }
}

.th-hero-wrapper:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
  left: var(--pos-x, 50px);
}

.th-hero-wrapper:hover .slick-arrow.slick-next {
  right: 50px;
  left: auto;
}

.th-hero-bg {
  position: absolute;
  inset: 0;
}

.th-hero-bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Hero 1 ---------------------------------- */
.hero-title {
  font-size: 44px;
  line-height: 56px;
  margin-bottom: 30px;
  text-transform: capitalize;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-title {
    font-size: 42px;
    line-height: 70px;
  }
}

.hero-1 {
  background-color: var(--smoke-color3);
}

.hero-1 .shape2 {
  -webkit-animation: slideinleft 3s linear infinite;
          animation: slideinleft 3s linear infinite;
}

.hero-1 .shape1 {
  -webkit-animation: slideindown 4s linear infinite;
          animation: slideindown 4s linear infinite;
}

.hero-1 .hero_flower {
  position: absolute;
  bottom: -50px;
  left: -50px;
  z-index: 4;
  width: 115%;
  min-height: 120px;
  overflow: hidden;
}

.hero-style1 {
  position: relative;
  z-index: 6;
  padding: 218px 0 218px 0;
  max-width: 650px;
  /* Medium Large devices */
  /* Medium devices */
  /* Small devices */
}

@media (max-width: 1299px) {
  .hero-style1 {
    padding: 180px 0 180px 0;
  }
}

@media (max-width: 991px) {
  .hero-style1 {
    padding: 100px 0 60px 0;
    display: block;
    margin: auto;
    max-width: 100%;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style1 {
    padding: 80px 0 40px 0;
  }
}

.hero-style1 .sub-title {
  color: var(--theme-color2);
  display: block;
  margin-top: -0.3rem;
  margin-bottom: 15px;
}

.th-hero-img {
  position: relative;
  z-index: 1;
  min-width: 800px;
  max-height: 800px;
  margin-left: -100px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1399px) {
  .th-hero-img {
    margin-left: -120px;
  }
}

@media (max-width: 1299px) {
  .th-hero-img {
    min-width: 650px;
    margin: 25px -30px 0 0px;
  }
}

@media (max-width: 1199px) {
  .th-hero-img {
    margin: 25px -70px 0 0px;
  }
}

@media (max-width: 991px) {
  .th-hero-img {
    margin: 0;
    min-width: 100%;
  }
}

.th-hero-img img {
  width: 100%;
  margin-left: -40px;
}

.th-hero-img .th-hero-shape {
  position: absolute;
  content: "";
  inset: 0;
  width: 513px;
  height: 648px;
  display: block;
  margin: auto;
  background-color: var(--smoke-color);
  z-index: -1;
  border-radius: 0 0 40% 40%;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1299px) {
  .th-hero-img .th-hero-shape {
    width: 90%;
    height: 90%;
  }
}

@media (max-width: 991px) {
  .th-hero-img .th-hero-shape {
    height: 100%;
  }
}

.th-hero-img .th-hero-shape2 {
  position: absolute;
  inset: 0;
  top: 20px;
  width: 567px;
  height: 716px;
  display: block;
  margin: auto;
  background-color: var(--smoke-color2);
  border-radius: 0 0 40% 40%;
  z-index: -2;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .th-hero-img .th-hero-shape2 {
    width: 100%;
    height: 100%;
    top: 40px;
  }
}

/* Hight Resoulation devices */
@media (min-width: 1922px) {
  .hero-1 .hero-img {
    right: 18%;
  }
}

@media (max-width: 1700px) {
  .hero-1 .hero-img {
    right: 1%;
  }
}

@media (max-width: 1400px) {
  .hero-1 .hero-img {
    top: 20px;
  }
  .hero-style1 {
    padding: 180px 0;
  }
  .hero-title {
    font-size: 48px;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .hero-1 .hero-img {
    max-width: 485px;
  }
  .hero-style1 {
    padding: 150px 0;
  }
}

/* Large devices */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 40px;
  }
  .hero-1 .hero-img {
    right: -10%;
  }
  .hero-1 .hero-shape1,
  .hero-1 .hero-shape2 {
    max-width: 600px;
  }
  .hero-1 .hero-shape3 {
    max-width: 600px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .hero-title {
    font-size: 44px;
    line-height: 1.2;
  }
  .hero-style1 {
    padding: 90px 0;
    text-align: center;
  }
  .hero-style1 .btn-group {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .hero-style1 .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-1 .hero-img {
    position: relative;
    margin-top: 30px;
    margin-bottom: -60px;
    text-align: center;
    right: 0;
    top: 0;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-title {
    font-size: 32px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.24;
  }
  .hero-title:last-of-type {
    margin-bottom: 16px;
  }
  .hero-text {
    margin-bottom: 28px;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: 24px;
    line-height: 1.3;
  }
}

@media (max-width: 330px) {
  .hero-title {
    font-size: 20px;
  }
}

/* Hero 2 ---------------------------------- */
.hero-2 {
  position: relative;
  overflow: hidden;
}

.hero-2 .shape2 {
  -webkit-animation: slideinleft 4s linear infinite;
          animation: slideinleft 4s linear infinite;
}

.hero-2 .shape3 {
  -webkit-animation: slideindown 4s linear infinite;
          animation: slideindown 4s linear infinite;
}

.hero-2 .th-hero-img {
  position: relative;
  z-index: 1;
  min-width: 750px;
  max-height: 770px;
  margin: 0;
  /* Medium Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1699px) {
  .hero-2 .th-hero-img {
    min-width: 450px;
    max-height: 450px;
  }
}

@media (max-width: 1299px) {
  .hero-2 .th-hero-img {
    min-width: 100%;
    max-height: 100%;
  }
}

@media (max-width: 991px) {
  .hero-2 .th-hero-img {
    min-width: 100%;
    height: 630px;
  }
}

@media (max-width: 767px) {
  .hero-2 .th-hero-img {
    height: 430px;
  }
}

@media (max-width: 575px) {
  .hero-2 .th-hero-img {
    height: 350px;
  }
}

@media (max-width: 375px) {
  .hero-2 .th-hero-img {
    height: 300px;
  }
}

@media (max-width: 320px) {
  .hero-2 .th-hero-img {
    height: 250px;
  }
}

.hero-2 .th-hero-img img {
  width: 100%;
}

.hero-2 .hero-shape {
  position: absolute;
  inset: 0;
  bottom: 0px;
  width: 678px;
  height: 678px;
  display: block;
  margin: auto;
  background-color: var(--smoke-color2);
  border-radius: 50%;
  z-index: -2;
  /* Medium Large devices */
}

@media (max-width: 1699px) {
  .hero-2 .hero-shape {
    width: 578px;
    height: 578px;
  }
}

@media (max-width: 1299px) {
  .hero-2 .hero-shape {
    width: 100%;
    height: 100%;
    top: 40px;
  }
}

.hero-2 .hero-shape:after, .hero-2 .hero-shape:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--smoke-color2);
  opacity: 0.5;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.hero-2 .hero-shape:after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.hero-2 .hero-shape:hover:after, .hero-2 .hero-shape:hover::before {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.hero-2 .hero-shape_1 {
  position: absolute;
  left: 0;
  top: 22%;
  z-index: -1;
}

.hero-2 .hero-shape_2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.hero-style2 {
  position: relative;
  z-index: 6;
  margin: 231px 0 231px 0px;
  max-width: 660px;
  /* Medium Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style2 {
    max-width: 100%;
    margin: 150px 0 150px 0;
  }
}

@media (max-width: 991px) {
  .hero-style2 {
    margin: 120px 0;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .hero-style2 {
    margin: 90px 0;
  }
}

@media (max-width: 575px) {
  .hero-style2 {
    margin: 80px 0;
  }
}

.hero-style2 .hero-title {
  font-size: 64px;
  line-height: 74px;
  text-transform: uppercase;
  display: block;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style2 .hero-title {
    font-size: 74px;
    line-height: 84px;
  }
}

@media (max-width: 1199px) {
  .hero-style2 .hero-title {
    font-size: 64px;
    line-height: 94px;
  }
}

@media (max-width: 767px) {
  .hero-style2 .hero-title {
    font-size: 54px;
    line-height: 64px;
  }
}

@media (max-width: 575px) {
  .hero-style2 .hero-title {
    font-size: 34px;
    line-height: 44px;
  }
}

.hero-style2 .hero-title.style2 {
  display: inline-block;
}

.hero-style2 .hero-img {
  position: relative;
  display: inline-block;
  /* Small devices */
}

@media (max-width: 767px) {
  .hero-style2 .hero-img {
    display: none;
  }
}

.hero-style2 .hero-img:before {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  background-color: var(--title-color);
  width: 158px;
  height: 1px;
}

.hero-style2 .hero-img img {
  margin-top: -73px;
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-style2 .hero-img img {
    margin-top: -73px;
  }
}

.hero-indicator-wrapp {
  position: absolute;
  top: auto;
  bottom: 50px;
  right: calc(100% - 40%);
  /* Large devices */
}

@media (max-width: 1199px) {
  .hero-indicator-wrapp {
    display: none;
  }
}

.hero-indicator {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}

.hero-indicator .indicatior-btn {
  display: block;
  border-radius: 50%;
  cursor: pointer;
  min-width: 80px;
}

.hero-indicator .indicatior-btn:hover img {
  border: 1px solid var(--white-color);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hero-indicator .indicatior-btn img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: 1px solid var(--white-color);
  -webkit-transform: scale(0.7);
      -ms-transform: scale(0.7);
          transform: scale(0.7);
}

.hero-indicator .indicatior-btn.active img {
  border-radius: 50%;
  border-color: var(--theme-color);
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

/* Hero 3 ---------------------------------- */
.hero-social {
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
}

.hero-social a {
  display: inline-block;
  color: var(--title-color);
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
}

.hero-social a:not(:last-child):after {
  content: '';
  height: 6px;
  width: 6px;
  display: inline-block;
  background-color: var(--theme-color);
  position: relative;
  margin: 35px 0 30px 0;
  position: relative;
  top: -2px;
}

.hero-social a:hover {
  color: var(--theme-color);
}

.th-hero-wrapper.hero-3 {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.th-hero-wrapper.hero-3 .slick-arrow {
  --pos-x: 46px;
  top: 44%;
  border: 1px solid rgba(194, 133, 101, 0.2);
  background: rgba(194, 133, 101, 0.15);
  color: var(--theme-color);
  border-radius: 0;
  left: 52px;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1399px) {
  .th-hero-wrapper.hero-3 .slick-arrow {
    display: none !important;
  }
}

.th-hero-wrapper.hero-3 .slick-arrow:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  color: var(--white-color);
}

.th-hero-wrapper.hero-3 .slick-arrow.slick-next {
  top: 52%;
  right: auto;
  left: 52px;
}

.hero-txt {
  padding: 80px 0 0 0;
  position: relative;
  z-index: 5;
}
.hero-style3 {
  padding: 70px 0;
  max-width: 800px;
  position: relative;
  z-index: 5;
  /* Medium devices */
  /* Extra small devices */
}

@media (max-width: 1399px) {
  .hero-style3 {
    padding: 55px 0;
  }
}

@media (max-width: 991px) {
  .hero-style3 {
    padding: 30px 0;
  }
}

@media (max-width: 375px) {
  .hero-style3 {
    padding: 15px 0;
  }
}

.hero-txt .sub-title {
  font-size: 24px;
  font-weight: 350;
  color: var(--theme-color);
  line-height: 24px;
}

.hero-txt .hero-title {
  font-weight: 400;
  color: var(--white-color);
  text-transform: uppercase;
}

.hero-txt .hero-text {
  font-size: 18px;
  font-weight: 350;
  line-height: 28px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.hero-style3 .sub-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.hero-style3 .hero-title {
  font-weight: 500;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-style3 .hero-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-style3 .hero-big {
  position: absolute;
  top: 30%;
  left: -50%;
  z-index: -1;
}

.hero-style3 .hero-big_text {
  font-family: var(--title-font);
  font-weight: 700;
  font-size: 180px;
  line-height: 140px;
  text-transform: uppercase;
  color: #FFFFFF;
  opacity: 0.03;
  display: block;
  -webkit-transform: rotate(-40deg);
      -ms-transform: rotate(-40deg);
          transform: rotate(-40deg);
}

.hero-style3 .hero-big_text2 {
  display: block;
  padding-left: 300px;
}

/* Hero 4 ---------------------------------- */
.hero-4 {
  background-color: var(--smoke-color3);
}

.hero-4 .hero-shape_1 {
  position: absolute;
  left: -10%;
  bottom: 0%;
  z-index: -1;
  z-index: -1;
  min-width: 1134px;
}

@media (max-width: 1699px) {
  .hero-4 .hero-shape_1 {
    min-width: 100%;
    left: 0;
  }
}

.hero-4 .hero-shape_2 {
  position: absolute;
  right: -10%;
  bottom: 0;
  z-index: -2;
  min-width: 764px;
}

@media (max-width: 1699px) {
  .hero-4 .hero-shape_2 {
    min-width: 600px;
    right: 0;
  }
}

.hero-4 .th-hero-img {
  min-width: 960px;
  max-height: 960px;
  margin-left: -250px;
  /* Medium Large devices */
  /* Medium devices */
}

@media (max-width: 1699px) {
  .hero-4 .th-hero-img {
    min-width: 700px;
    max-height: 960px;
    margin-left: -160px;
  }
}

@media (max-width: 1299px) {
  .hero-4 .th-hero-img {
    min-width: 600px;
    margin-left: -100px;
  }
}

@media (max-width: 991px) {
  .hero-4 .th-hero-img {
    margin: 0;
    min-width: 100%;
    max-height: 100%;
  }
}

.hero-4 .th-hero-img img {
  /* Extra small devices */
}

@media (max-width: 575px) {
  .hero-4 .th-hero-img img {
    margin: 0;
  }
}

.hero-style4 {
  position: relative;
  z-index: 6;
  margin: 300px 0 281px 0;
  max-width: 780px;
  /* Large devices */
  /* Medium devices */
}

@media (max-width: 1699px) {
  .hero-style4 {
    margin: 300px 0 181px 0;
  }
}

@media (max-width: 1199px) {
  .hero-style4 {
    margin: 300px 0 210px;
  }
}

@media (max-width: 991px) {
  .hero-style4 {
    margin: 150px 0 50px;
    text-align: center;
  }
}

.hero-style4 .hero-subtitle {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 0;
}

.hero-style4 img {
  display: block;
  margin-bottom: 10px;
  /* Medium devices */
}

@media (max-width: 991px) {
  .hero-style4 img {
    margin: auto;
    margin-bottom: 10px;
  }
}

.hero-style4 .hero-sub-img {
  display: block;
}

.hero-style4 .hero-title {
  font-size: 74px;
  line-height: 84px;
  /* Medium Large devices */
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .hero-style4 .hero-title {
    font-size: 64px;
    line-height: 74px;
  }
}

@media (max-width: 767px) {
  .hero-style4 .hero-title {
    font-size: 44px;
    line-height: 54px;
  }
}

@media (max-width: 575px) {
  .hero-style4 .hero-title {
    font-size: 50px;
    line-height: 60px;
  }
}

@media (max-width: 575px) {
  .hero-style4 .hero-title {
    font-size: 44px;
    line-height: 54px;
  }
}

@media (max-width: 320px) {
  .hero-style4 .hero-title {
    font-size: 38px;
    line-height: 48px;
  }
}

.hero-style4 .hero-title span {
  display: inline-block;
}

.hero-style4 .hero-big {
  position: absolute;
  top: -30%;
  left: -30%;
  z-index: -1;
}

.hero-style4 .hero-big_text {
  font-family: var(--title-font);
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 300px;
  line-height: 300px;
  background: -webkit-linear-gradient(top, #0D0D0D 55.61%, rgba(13, 13, 13, 0) 100%);
  background: linear-gradient(180deg, #0D0D0D 55.61%, rgba(13, 13, 13, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  opacity: 0.03;
}

/* Small devices */
@media (max-width: 767px) {
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-title {
    font-size: 48px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .hero-title {
    font-size: 38px;
    line-height: 1.24;
  }
  .hero-title:last-of-type {
    margin-bottom: 16px;
  }
  .hero-text {
    margin-bottom: 28px;
  }
}


/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 28px 0 -0.5em 0;
  list-style-type: none;
  position: relative;
}

.breadcumb-menu li {
  display: inline-block;
  margin-right: 3px;
  padding-right: 5px;
  list-style: none;
  position: relative;
}

.breadcumb-menu li:after {
  content: "\f30b";
  position: relative;
  margin-left: 10px;
  font-weight: 500;
  font-size: 20px;
  color: var(--body-color);
  font-family: var(--icon-font);
}

.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--body-color);
}

.breadcumb-menu li:last-child:after {
  display: none;
}

.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 20px;
  color: var(--body-color);
}

.breadcumb-title {
  color: var(--title-color);
  margin: -0.20em 0 -0.18em 0;
  line-height: 1.1;
  font-weight: 600;
}

.breadcumb-wrapper {
  background-color: #F7F7F7;
  padding: 153px 0;
  overflow: hidden;
}

/* Large devices */
@media (max-width: 1199px) {
  .breadcumb-wrapper {
    padding: 130px 0;
  }
  .breadcumb-menu {
    margin: 25px 0 -0.5em 0;
  }
  .breadcumb-menu li,
  .breadcumb-menu a,
  .breadcumb-menu span {
    font-size: 16px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .breadcumb-wrapper {
    padding: 120px 0;
  }
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-wrapper {
    padding: 100px 0;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-title {
    font-size: 34px;
  }
}


.overlay:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: rgba(0, 0, 0, 0.5); }
