/* Avenir */
@font-face {
  font-family: "Avenir Heavy";
  font-weight: normal;
  src: url("../fonts/Avenir Heavy.ttf") format("truetype");
  font-display: block;
}

@font-face {
  font-family: "Avenir Black";
  font-weight: bold;
  src: url("../fonts/Avenir Black.ttf") format("truetype");
}

@font-face {
  font-family: "Avenir Light";
  font-weight: 400;
  src: url("../fonts/Avenir Light.ttf") format("truetype");
  font-display: block;
}

/***
====================================================================
2.	Reset
====================================================================
 ***/

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

/***
====================================================================
3.	Global Settings
====================================================================
 ***/

:root {
  --thm-font: "Avenir Light", sans-serif;
  --thm-font-bold: "Avenir Heavy", sans-serif;
  --thm-font-light: "Avenir Light", sans-serif;
  --thm-base: #ffa914;
  --thm-base-rgb: 255, 170, 23;
  --thm-black: #222429;
  --thm-text: #686a6f;
  --thm-h1-size: 70px;
  --thm-h2-size: 50px;
  --thm-h3-size: 40px;
  --thm-h4-size: 30px;
  --thm-h5-size: 20px;
  --thm-h6-size: 18px;
}

body {
  font-size: 16px;
  color: var(--thm-text);
  line-height: 1.8em;
  font-weight: 300;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: var(--thm-font);
  top: 0 !important;
}

button {
  outline: none !important;
  cursor: pointer;
}

input,
select,
button {
  font-family: var(--thm-font);
}

a {
  text-decoration: none;
  cursor: pointer;
  color: var(--thm-base);
}

a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 0 0 20px;
  background: none;
  line-height: 1.25em;
  font-family: var(--thm-font-bold);
  color: var(--thm-black);
  scroll-margin-top: 114px;
}

h1 {
  font-size: var(--thm-h1-size);
}

h2 {
  font-size: var(--thm-h2-size);
}

h3 {
  font-size: var(--thm-h3-size);
}

h4 {
  font-size: var(--thm-h4-size);
}

h5 {
  font-size: var(--thm-h5-size);
}

h6 {
  font-size: var(--thm-h6-size);
}

textarea {
  overflow: hidden;
  resize: none;
}

p {
  line-height: 1.8em;
  margin: 0 0 20px;
}

.text {
  line-height: 1.8em;
  margin: 0;
}

/* ::input-placeholder { */

/*  color: inherit; */

/* } */

/* ::-moz-input-placeholder { */

/*  color: inherit; */

/* } */

/* ::input-placeholder { */

/*  color: inherit; */

/* } */

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  z-index: 9;
  overflow: hidden;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

.strapi-html-content ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.strapi-html-content ul li {
  list-style: initial;
}

.strapi-html-content ol li {
  list-style: decimal;
}

figure {
  margin-bottom: 0;
}

.theme-btn {
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-btn i {
  position: relative;
  display: inline-block;
  font-size: 14px;
  margin-left: 3px;
}

.centered {
  text-align: center !important;
}

/* Btn Style One */

.btn-style-one {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--thm-base);
  color: var(--thm-black);
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-one .btn-title {
  position: relative;
  display: block;
  line-height: 30px;
  font-weight: 600;
  padding: 19px 50px 16px;
}

.btn-style-one:hover:not(:disabled) {
  background: var(--thm-base);
  color: #fff;
}

.btn-style-one .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: var(--thm-black);
  opacity: 0.2;
  z-index: 0;
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-one:hover:not(:disabled) .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  transform: skewX(0deg);
}

.btn-style-one:disabled {
  opacity: 0.7;
  cursor: default;
}

/* Btn Style Two */

.btn-style-two {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--thm-black);
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-two .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  padding: 19px 50px 16px;
  z-index: 1;
  transition: 0.5s;
}

.btn-style-two:hover {
  color: var(--thm-black);
}

.btn-style-two .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  z-index: 0;
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-two:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  transform: skewX(0deg);
}

/* Btn Style Danger */

.btn-style-danger {
  position: relative;
  display: inline-block;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--bs-danger);
  color: #fff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.btn-style-danger .btn-title {
  position: relative;
  display: block;
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  padding: 19px 50px 16px;
  z-index: 1;
  transition: 0.5s;
}

.btn-style-danger:hover {
  color: var(--thm-black);
}

.btn-style-danger .btn-curve {
  position: absolute;
  right: -15px;
  top: 0;
  width: 26px;
  height: 100%;
  background: #fff;
  opacity: 0.2;
  z-index: 0;
  transform: skewX(-22deg);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.btn-style-danger:hover .btn-curve {
  opacity: 1;
  right: 0;
  width: 100%;
  transform: skewX(0deg);
}

/* .preloader { */

/*  position: fixed; */

/*  left: 0; */

/*  top: 0; */

/*  width: 100%; */

/*  height: 100%; */

/*  z-index: 999999; */

/*  background-color: rgb(255 255 255 / 100%); */

/*  background-color: #1c1e22; */

/* } */

/* .preloader .icon { */

/*  position: fixed; */

/*  left: 0; */

/*  top: 0; */

/*  width: 100%; */

/*  height: 100%; */

/*  z-index: 5; */

/*  background-color: transparent; */

/*  background-position: center center; */

/*  background-repeat: no-repeat; */

/*  background-image: url(../images/icons/preloader.png); */

/*  -webkit-transition: all 200ms ease; */

/*  -moz-transition: all 200ms ease; */

/*  -ms-transition: all 200ms ease; */

/*  -o-transition: all 200ms ease; */

/*  transition: all 200ms ease; */

/*  -webkit-animation-name: rotateme; */

/*  -webkit-animation-duration: 2s; */

/*  -webkit-animation-iteration-count: infinite; */

/*  -webkit-animation-timing-function: linear; */

/*  -moz-animation-name: rotateme; */

/*  -moz-animation-duration: 2s; */

/*  -moz-animation-iteration-count: infinite; */

/*  -moz-animation-timing-function: linear; */

/*  -ms-animation-name: rotateme; */

/*  -ms-animation-duration: 2s; */

/*  -ms-animation-iteration-count: infinite; */

/*  -ms-animation-timing-function: linear; */

/*  animation-name: rotateMe; */

/*  animation-duration: 2s; */

/*  animation-iteration-count: infinite; */

/*  animation-timing-function: linear; */

/* } */

/* .page-loaded .preloader .icon { */

/*  opacity: 0; */

/* } */

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.dropdown-toggle::after {
  display: none;
}

.fa {
  line-height: inherit;
}

/***

====================================================================
5.	Main Header style / Header Style One
====================================================================

***/

.main-header {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  z-index: 9999;
  background: none;
}

.main-header.dark-content:not(.fixed-header) img {
  filter: invert(1);
}

.main-header.dark-content:not(.fixed-header) ul * {
  color: black !important;
}

/* === Header Main Box === */

.main-header .header-upper {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  background: var(--thm-black);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  z-index: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.fixed-header .header-upper {
  background: #171717;
  -webkit-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -ms-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -o-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
}

.header-style-two.fixed-header .header-upper {
  background: var(--thm-black);
  -webkit-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -moz-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -ms-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  -o-box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 8%);
}

.main-header .header-upper .inner-container {
  display: block;
  padding: 0 60px;
}

.main-header .header-upper .logo-box {
  position: relative;
  float: left;
  padding: 40px 0;
  margin-right: 50px;
  z-index: 7;
}

.main-header .header-upper .logo-box .logo {
  position: relative;
  display: block;
}

.main-header .header-upper .logo-box .logo img {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 34px;
  z-index: 1;
}

.main-header .other-links {
  position: relative;
  float: right;
  z-index: 7;
}

.main-header .other-links a {
  white-space: nowrap;
}

.main-header .other-links .username {
  text-overflow: ellipsis;
  white-space: nowrap;
}

.main-header .other-links .link-box {
  position: relative;
  float: left;
  padding: 34px 0;
}

.main-header .other-links .link-box .link {
  position: relative;
  display: block;
  padding-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 60px;
  color: #fff;
}

.main-header .other-links .link-box .sub-text {
  position: relative;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.main-header .other-links .link-box .number {
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.main-header .other-links .link-box .number:hover {
  text-decoration: underline;
}

.main-header .other-links .call-us {
  position: relative;
}

.main-header .nav-outer {
  left: 0;
  top: 0;
  float: left;
  text-align: center;
  z-index: 5;
  flex-grow: 1;
}

.main-header .nav-outer .main-menu {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

.main-header .nav-outer .main-menu .main-menu-container {
  margin: 0 auto;
}

.main-menu .navbar-collapse {
  padding: 0;
  justify-content: flex-end;
}

.main-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  font-family: var(--thm-font);
}

.main-menu .navigation > li {
  position: relative;
  float: left;
  padding: 30px 0;
  margin-right: 40px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0;
}

.main-menu .navigation > li:last-child::after {
  display: none;
}

.main-menu .navigation > li > a {
  position: relative;
  display: block;
  text-align: center;
  line-height: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  padding: 12px 0;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation li > a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}

.main-menu .navigation li > a > span {
  background-color: var(--thm-base);
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px;
  top: -3px;
  position: relative;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a {
  color: #fff;
}

.main-menu .navigation > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 7px;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation > li:hover > a::before,
.main-menu .navigation > li.current > a::before {
  transform: scale(1);
}

.sticky-header .main-menu .navigation > li.dropdown {
  padding-right: 0;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 220px;
  z-index: 100;
  display: none;
  background: #fff;
  padding: 20px 0 15px;
  border-radius: 5px;
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -ms-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -o-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -moz-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
}

.main-menu .navigation > li > ul > li {
  position: relative;
  padding: 0 25px;
  width: 100%;
  margin-bottom: 5px;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 20px;
  color: #171b27;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: uppercase;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li:hover > a {
  color: var(--thm-base);
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 220px;
  z-index: 100;
  display: none;
  background: #fff;
  padding: 20px 0 15px;
  border-radius: 5px;
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -ms-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -o-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  -moz-box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
  box-shadow:
    2px 2px 5px 1px rgb(0 0 0 / 5%),
    -2px 0 5px 1px rgb(0 0 0 / 5%);
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  padding: 0 25px;
  width: 100%;
  margin-bottom: 5px;
}

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 5px 0;
  line-height: 24px;
  font-weight: 400;
  font-size: 20px;
  color: #171b27;
  letter-spacing: 0.03em;
  text-align: left;
  text-transform: capitalize;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation > li > ul > li > ul > li > a:hover {
  color: var(--thm-base);
}

.main-menu .navigation > li > ul > li.dropdown > a::after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 0;
  top: 7px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  -ms-transform: translateY(0);
  transform: translateY(0);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #fff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

/***

====================================================================
6.				Sticky Header
====================================================================

***/

.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0;
  top: 0;
  width: 100%;
  padding: 0;
  z-index: -1;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  -moz-box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  -ms-box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  -o-box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  -webkit-transition: top 300ms ease;
  -moz-transition: top 300ms ease;
  -ms-transition: top 300ms ease;
  -o-transition: top 300ms ease;
  transition: top 300ms ease;
}

.fixed-header .sticky-header {
  opacity: 1;
  z-index: 99901;
  visibility: visible;
}

.fixed-header .sticky-header .logo {
  padding: 10px 0;
}

.sticky-header .main-menu .navigation > li {
  margin-left: 40px !important;
  padding: 0;
  margin-right: 0;
  background-color: transparent;
}

.sticky-header .main-menu .navigation > li.dropdown > a::after,
.sticky-header .main-menu .navigation > li::before {
  display: none;
}

.sticky-header .main-menu .navigation > li > a {
  padding: 21px 0 !important;
  line-height: 30px;
  font-size: 16px;
  font-weight: 600;
  color: #25283a;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.sticky-header .main-menu .navigation > li > ul > li > ul {
  left: auto;
  right: 100%;
}

.sticky-header .main-menu .navigation > li:hover > a,
.sticky-header .main-menu .navigation > li.current > a,
.sticky-header .main-menu .navigation > li.current-menu-item > a {
  opacity: 1;
}

/***

====================================================================
8.			Mobile Menu
====================================================================

***/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 40px;
  cursor: pointer;
  margin-left: 0;
  color: var(--thm-base);
  margin: 0;
  display: none;
}

.mobile-nav-toggler .txt {
  position: relative;
  display: inline-block;
  vertical-align: top;
  padding-left: 10px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  display: none;
}

/***

====================================================================
9.		Lazy Load Settings
====================================================================

***/

img.lazy-image {
  background: url(../images/icons/image-bg.svg) center center no-repeat;
}

img.lazy-image.loaded {
  background-image: none;
}

.owl-theme img.lazy-image.loaded {
  height: auto;
  opacity: 1;
}

/* Default Form Style */

.default-form {
  position: relative;
}

.default-form .row {
  margin: 0 -15px;
}

.default-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.default-form .field-inner {
  position: relative;
  display: block;
}

.default-form .field-inner .alt-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
  line-height: 30px;
  font-size: 20px;
  color: #9b9fa6;
  z-index: 1;
  pointer-events: none;
}

.default-form .form-group .field-label {
  position: relative;
  display: block;
  color: #0f172b;
  font-size: 14px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.default-form .form-group .e-label {
  position: relative;
}

.default-form .form-group input[type="text"],
.default-form .form-group input[type="email"],
.default-form .form-group input[type="password"],
.default-form .form-group input[type="tel"],
.default-form .form-group input[type="url"],
.default-form .form-group input[type="file"],
.default-form .form-group input[type="number"],
.default-form .form-group textarea,
.default-form .form-group select {
  position: relative;
  display: block;
  height: 45px;
  width: 100%;
  font-size: 16px;
  color: var(--thm-black);
  line-height: 40px;
  font-weight: 400;
  padding: 12px 20px;
  letter-spacing: 0.02em;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
  border-radius: 7px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.default-form .form-group textarea {
  height: 220px;
  resize: none;
}

.contact-form .form-group input[type="submit"],
.contact-form .form-group button {
  display: inline-block;
}

.default-form .form-group input[type="text"]:focus,
.default-form .form-group input[type="email"]:focus,
.default-form .form-group input[type="password"]:focus,
.default-form .form-group input[type="tel"]:focus,
.default-form .form-group input[type="url"]:focus,
.default-form .form-group input[type="file"]:focus,
.default-form .form-group input[type="number"]:focus,
.default-form .form-group textarea:focus,
.default-form .form-group select:focus,
.form-group .ui-selectmenu-button.ui-button:focus,
.form-group .ui-selectmenu-button.ui-button:active {
  border-color: var(--thm-base);
}

.form-select:focus {
  box-shadow: none !important;
}

.default-form ::input-placeholder {
  color: #aaa;
}

.default-form ::-moz-input-placeholder {
  color: #aaa;
}

.default-form ::input-placeholder {
  color: #aaa;
}

.default-form label.error {
  color: #f00;
  font-size: 18px;
  text-transform: capitalize;
  text-align: left;
  display: block;
  letter-spacing: 1px;
  padding-top: 7px;
  line-height: 24px;
}

/* Custom Select */

.form-group .ui-selectmenu-button.ui-button {
  width: 100%;
  font-size: 16px;
  font-style: normal;
  height: 70px;
  padding: 14px 30px;
  line-height: 40px;
  letter-spacing: 0.02em;
  font-family: var(--thm-font);
  color: var(--thm-text);
  font-size: 20px;
  border-radius: 7px;
  background-color: #f4f5f8;
  border: 1px solid #f4f5f8;
}

.form-group .ui-button .ui-icon {
  background: none;
  position: relative;
  top: 10px;
  text-indent: 0;
  color: var(--thm-black);
}

.form-group .ui-button .ui-icon::before {
  font-family: "Flaticon";
  content: "\f191";
  position: absolute;
  right: 0;
  top: 0 !important;
  width: 15px;
  height: 30px;
  display: block;
  color: var(--thm-black);
  line-height: 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  z-index: 5;
}

.ui-widget.ui-widget-content {
  background: #f4f5f8;
  border: 1px solid #e9ebee;
  border-top: none;
  font-family: var(--thm-font);
  border-radius: 0;
  padding: 0;
}

.ui-menu .ui-menu-item {
  font-size: 20px;
  border-bottom: 1px solid #e9ebee;
}

.ui-menu .ui-menu-item:last-child {
  border: none;
}

.ui-menu .ui-menu-item-wrapper {
  position: relative;
  display: block;
  padding: 14px 30px !important;
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 30px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.ui-menu .ui-menu-item-wrapper:hover,
.ui-menu .ui-menu-item-wrapper.ui-state-active {
  background: var(--thm-base);
  margin: 0;
}

/***

====================================================================
10.		Banner Section
====================================================================

***/

.banner-section {
  position: relative;
  z-index: 1;
}

.banner-section .bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center top;
  background-size: cover;
  z-index: 1;
}

.banner-section .left-based-text {
  position: absolute;
  left: 50px;
  top: 50px;
  bottom: 50px;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-weight: 500;
  z-index: 10;
}

.banner-section .left-based-text .base-inner {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 730px;
  height: 24px;
  transform-origin: left bottom;
  transform: rotate(-90deg);
}

.banner-section .left-based-text .social-links {
  position: absolute;
  left: 0;
  top: 0;
}

.banner-section .left-based-text .social-links ul li {
  float: left;
  margin-right: 35px;
}

.banner-section .left-based-text .social-links ul li a {
  position: relative;
  display: block;
  color: #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-section .left-based-text .social-links ul li a:hover::before {
  transform: scale(1);
}

.banner-section .left-based-text .hours {
  position: absolute;
  right: 0;
  top: 0;
}

.banner-section .left-based-text .hours ul li {
  float: left;
  margin-left: 35px;
}

.banner-three .left-based-text .social-links ul li a,
.banner-three .left-based-text .hours ul li {
  color: var(--thm-black);
}

.banner-section .left-based-text .social-links ul li a::before {
  border-bottom-color: var(--thm-black);
}

.banner-carousel {
  position: relative;
  z-index: 1;
}

.banner-carousel .slide-item {
  position: relative;
  display: block;
  background-color: var(--thm-black);
  color: #fff;
  overflow: hidden;
}

.banner-three .banner-carousel .slide-item {
  background: none;
}

.banner-carousel .slide-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--thm-black);
  opacity: 0.6;
  z-index: 1;
}

.banner-section.banner-two {
  min-height: 85vh;
}

.banner-two .banner-carousel .slide-item::before {
  opacity: 0.8;
}

.banner-three .banner-carousel .slide-item::before {
  display: none;
}

.banner-carousel .active .left-top-line {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 1000ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 200ms;
  -moz-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  transition-delay: 200ms;
}

.banner-carousel .slide-item .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.banner-carousel .active .slide-item .image-layer {
  -webkit-transform: scale(1.15);
  -ms-transform: scale(1.15);
  transform: scale(1.15);
  -webkit-transition: all 7000ms linear;
  -moz-transition: all 7000ms linear;
  -ms-transition: all 7000ms linear;
  -o-transition: all 7000ms linear;
  transition: all 7000ms linear;
}

.banner-carousel .content-box {
  position: relative;
  display: table;
  vertical-align: middle;
  width: 100%;
  height: 950px;
  padding: 0;
  z-index: 11;
}

.banner-carousel .content-box .content {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

.banner-carousel .content-box .inner {
  position: relative;
  display: block;
  max-width: 800px;
}

.banner-two .banner-carousel .content-box .inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.banner-three .banner-carousel .content-box .inner {
  max-width: 550px;
}

.banner-carousel .content-box .sub-title {
  display: block;
  font-size: 24px;
  line-height: 1.5em;
  color: #fff;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-carousel .active .content-box .sub-title {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 1100ms ease;
  -moz-transition: all 1100ms ease;
  -ms-transition: all 1100ms ease;
  -o-transition: all 1100ms ease;
  transition: all 1100ms ease;
  -webkit-transition-delay: 800ms;
  -moz-transition-delay: 800ms;
  -ms-transition-delay: 800ms;
  -o-transition-delay: 800ms;
  transition-delay: 800ms;
}

.banner-carousel .content-box h1 {
  display: block;
  font-size: 8px;
  line-height: 0.85em;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0;
}

.banner-carousel .content-box p {
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-two .banner-carousel .content-box h1 {
  text-transform: capitalize;
}

.banner-carousel .active .content-box h1 {
  opacity: 1;
  font-size: var(--thm-h1-size);
  -webkit-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  transition: all 1500ms ease;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-carousel .active .content-box p {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 1000ms ease;
  -webkit-transition-delay: 1300ms;
  -moz-transition-delay: 1300ms;
  -ms-transition-delay: 1300ms;
  -o-transition-delay: 1300ms;
  transition-delay: 1300ms;
}

.banner-carousel .content-box .text {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7em;
  letter-spacing: 0.07em;
  color: var(--thm-black);
  margin: 5px 0 0;
  opacity: 0;
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
  transform: translateY(80px);
}

.banner-carousel .active .content-box .text {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-carousel .content-box .link-box {
  position: relative;
  display: block;
  padding-top: 50px;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  transform: translateY(50px);
}

.banner-carousel .active .content-box .link-box {
  opacity: 1;
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  -o-transform: translate(0);
  transform: translate(0);
  -webkit-transition: all 700ms ease;
  -moz-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transition-delay: 1800ms;
  -moz-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  transition-delay: 1800ms;
}

.banner-carousel .owl-nav {
  position: absolute;
  left: 50%;
  margin-left: -600px;
  top: 50%;
  width: 1200px;
  height: 110px;
  text-align: right;
}

.banner-carousel .owl-nav .owl-next,
.banner-carousel .owl-nav .owl-prev {
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  background: #fff !important;
  padding: 0;
  margin: 0;
  line-height: 50px;
  text-align: center;
  opacity: 0.2;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.banner-carousel .owl-nav .owl-next {
  top: auto;
  bottom: 0;
}

.banner-carousel .owl-nav .owl-next span,
.banner-carousel .owl-nav .owl-prev span {
  vertical-align: middle;
}

.banner-carousel .owl-nav .owl-next:hover,
.banner-carousel .owl-nav .owl-prev:hover {
  opacity: 1;
}

.banner-section .owl-dots {
  position: absolute;
  left: 0;
  bottom: 50px;
  width: 100%;
  text-align: center;
  display: none;
}

.banner-two .owl-nav {
  display: none;
}

.banner-two .owl-dots {
  display: block;
}

.banner-section .owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
}

.banner-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border: 5px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
}

.banner-section .owl-theme .owl-dots .owl-dot.active span {
  background: none;
  border-width: 2px;
  border-color: var(--thm-base);
}

/***

====================================================================
11.		Section Title
====================================================================

***/

.sec-title {
  position: relative;
  margin-bottom: 50px;
}

.sec-title.centered {
  max-width: 650px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.sec-title .upper-text {
  position: relative;
  display: inline-block;
  line-height: 1.6em;
  font-size: 16px;
  color: #9b9fa6;
  font-weight: 400;
  margin: 0 0 20px;
}

.sec-title h2 {
  position: relative;
  display: block;
  font-size: var(--thm-h2-size);
  line-height: 0.9em;
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 400;
  margin-bottom: 0;
}

.sec-title h2 strong {
  font-weight: 700;
}

.dot {
  color: var(--thm-base);
  padding-left: 7px;
}

.sec-title .lower-text {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--thm-text);
  padding: 30px 0 0;
}

/***

====================================================================
12.	Services Section
====================================================================

***/

.services-section {
  position: relative;
  padding: 120px 0 90px;
  background:
    var(--thm-black) url(../images/background/pattern-1.png) center
    top repeat;
  color: #fff;
}

.services-section .sec-title {
  margin-bottom: 30px;
}

.services-section .sec-title h2 {
  color: #fff;
}

.services-section .sec-title .lower-text {
  color: #fff;
}

.services-section .row {
  counter-reset: slides-num;
}

.services-section .row .service-block {
  counter-increment: slides-num;
}

.services-section .row .service-block .inner-box::before {
  content: "0" counter(slides-num) "";
  position: absolute;
  left: 45px;
  top: 50px;
  font-size: 50px;
  line-height: 1em;
  color: #fff;
  opacity: 0.07;
}

.service-block {
  position: relative;
  margin-bottom: 30px;
}

.service-block .inner-box {
  position: relative;
  display: block;
  padding: 50px 45px;
  background: #1c1e22;
  min-height: 100%;
  border-radius: 7px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-block .inner-box:hover {
  background: var(--thm-base);
}

.service-block .inner-box .bottom-curve {
  position: absolute;
  right: -70px;
  bottom: 0;
  width: 100px;
  height: 80%;
  background: var(--thm-black);
  opacity: 0.2;
  z-index: 0;
  transform: skewX(0deg) scaleX(0);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block .inner-box:hover .bottom-curve {
  transform: skewX(-35deg) scaleX(1);
}

.service-block .inner-box .count {
  position: relative;
  display: block;
  font-size: 50px;
  line-height: 1em;
  color: #fff;
  opacity: 0.07;
  margin-bottom: 40px;
}

.service-block .inner-box .icon-box {
  position: absolute;
  right: 45px;
  top: 50px;
  color: var(--thm-base);
  font-size: 64px;
  line-height: 1em;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block .inner-box:hover .icon-box {
  color: var(--thm-black);
}

.service-block .inner-box h6 {
  position: relative;
  margin: 0;
  margin-top: 90px;
  font-size: var(--thm-h6-size);
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1em;
}

.service-block .inner-box h6 a {
  color: #fff;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.services-section .row .service-block .inner-box:hover::before,
.service-block .inner-box:hover .count,
.service-block .inner-box:hover h6,
.service-block .inner-box:hover h6 a {
  color: var(--thm-black);
}

.service-block .inner-box h6 a:hover {
  text-decoration: underline;
}

/***

====================================================================
16.		Gallery Section
====================================================================

***/

.gallery-section {
  position: relative;
  padding: 120px 0 90px;
}

.gallery-section .upper-row {
  position: relative;
}

.gallery-section .upper-row .sec-title {
  position: relative;
  float: left;
}

.gallery-section .upper-row .filters {
  position: relative;
  float: right;
  padding-top: 10px;
}

.gallery-section .more-box {
  position: relative;
  display: block;
  padding-top: 20px;
  text-align: center;
  padding-bottom: 10px;
}

/* === Mixitup Gallery === */
.mixitup-gallery .filters {
  position: relative;
  margin-bottom: 40px;
}

.mixitup-gallery .filters .filter-tabs {
  position: relative;
  display: block;
}

.mixitup-gallery .filters li {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 40px;
  padding: 0;
  cursor: pointer;
  color: var(--thm-text);
  font-weight: 300;
  margin: 0 0 10px 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mixitup-gallery .filters li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transform-origin: left;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mixitup-gallery .filters.centered li {
  margin: 0 15px 10px;
}

.mixitup-gallery .filters li sup {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.mixitup-gallery .filters .filter.mixitup-control-active {
  color: var(--thm-black);
  font-weight: 400;
  padding-right: 20px;
}

.mixitup-gallery .filters .filter.active sup {
  opacity: 1;
  visibility: visible;
}

.mixitup-gallery .filters li.mixitup-control-active::before {
  transform: scaleX(1);
}

.mixitup-gallery .gallery-item-two {
  display: none;
}

.gallery-item {
  position: relative;
  margin-bottom: 30px;
}

.gallery-item .inner-box {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
}

.gallery-item .inner-box .image {
  position: relative;
  border-radius: 7px;
}

.gallery-item .inner-box .image img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
  border-radius: 7px;
}

.gallery-item .inner-box:hover .image img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}

.gallery-item .cap-box {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fff;
  opacity: 0;
  -webkit-transform: translateY(200px);
  -ms-transform: translateY(200px);
  transform: translateY(200px);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gallery-item .inner-box:hover .cap-box {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.gallery-item .cap-box .cap-inner {
  position: relative;
  display: block;
  padding: 25px 35px;
  background: var(--thm-black);
  border-radius: 7px;
}

.gallery-item a.overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.gallery-item .cap-box .cat {
  position: relative;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
}

.gallery-item .cap-box .cat span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-right: 48px;
}

.gallery-item .cap-box .cat span::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -1px;
  width: 38px;
  border-bottom: 2px solid var(--thm-base);
}

.gallery-item .cap-box .title {
  position: relative;
  display: block;
}

.gallery-item .cap-box h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
}

.gallery-item .cap-box h5 a {
  color: #fff;
}

.gallery-item .cap-box h5 a:hover {
  color: var(--thm-base);
}

/***

====================================================================
17.	Fun Facts Section
====================================================================

***/

.facts-section {
  position: relative;
  padding: 0 0 290px;
  background: #1c1e22;
  color: #fff;
  z-index: 2;
}

.facts-section.alternate {
  background: var(--thm-black);
  padding-bottom: 50px;
}

.facts-section .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  opacity: 0.3;
}

.facts-section.alternate .image-layer {
  display: none;
}

.fact-counter {
  position: relative;
}

.fact-counter .column {
  position: relative;
  text-align: center;
  margin-bottom: 70px;
}

.fact-counter .column .inner {
  position: relative;
  padding: 120px 0 0;
}

.fact-counter .column .inner::before {
  position: absolute;
  content: "";
  left: -15px;
  right: -15px;
  top: 0;
  min-width: 100%;
  border-top: 4px solid var(--thm-base);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.fact-counter .column:hover .inner::before {
  transform: scaleX(1);
}

.fact-counter .column .inner::after {
  position: absolute;
  content: "";
  right: -15px;
  top: 0;
  bottom: 7px;
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.fact-counter .column:last-child .inner::after {
  display: none;
}

.fact-counter .column .inner .content {
  position: relative;
  text-align: center;
}

.fact-counter .column .inner .count-outer {
  position: relative;
  font-weight: 400;
  font-size: 80px;
  line-height: 1em;
  letter-spacing: 0;
  display: block;
}

.fact-counter .column .inner .counter-title {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/***

====================================================================
20.	Parallax Section
====================================================================

***/

.parallax-section {
  position: relative;
  padding: 120px 0;
  background: #1c1e22;
  text-align: center;
  color: #fff;
  z-index: 1;
}

.parallax-section .image-layer {
  position: absolute;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  opacity: 0.3;
}

.parallax-section .content-box {
  position: relative;
  max-width: 870px;
  margin: 0 auto;
}

.parallax-section .content-box .icon-box {
  position: relative;
  display: block;
  width: 114px;
  height: 114px;
  line-height: 114px;
  text-align: center;
  color: var(--thm-black);
  font-size: 54px;
  border-radius: 50%;
  margin: 0 auto 50px;
}

.parallax-section .content-box .icon-box::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 0;
  display: block;
  width: 80px;
  height: 80px;
  background: #fff;
  opacity: 0.3;
  border-radius: 50%;
}

.parallax-section .content-box .icon-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--thm-base);
  z-index: 1;
  border-radius: 50%;
}

.parallax-section .content-box .icon-box span {
  position: relative;
  z-index: 2;
}

.parallax-section .content-box h2 {
  position: relative;
  display: block;
  font-size: var(--thm-h2-size);
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 0;
}

.parallax-section .content-box h2 span {
  color: var(--thm-base);
}

/***

====================================================================
24.		Call Section
====================================================================

***/

.call-to-section {
  position: relative;
  padding: 0;
  z-index: 1;
}

.call-to-section .inner {
  position: relative;
  display: block;
  padding: 95px 95px 68px;
  background: var(--thm-base);
  color: var(--thm-black);
  border-radius: 7px;
  overflow: hidden;
  bottom: -60px;
  margin-top: -60px;
}

.call-to-section h2 {
  position: relative;
  float: left;
  display: block;
  font-size: var(--thm-h2-size);
  line-height: 0.85em;
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 500;
  margin: 0 0 25px;
  z-index: 3;
}

.call-to-section .link-box {
  position: relative;
  float: right;
  padding-top: 12px;
  z-index: 3;
}

/***

====================================================================
25.	Main EokFooter
====================================================================

***/

.main-footer {
  position: relative;
  color: #fff;
  background: var(--thm-black)
}

.main-footer .widgets-section {
  position: relative;
  padding: 25px 0 0;
}

.main-footer.normal-padding .widgets-section {
  padding: 120px 0 70px;
}

.main-footer .column {
  position: relative;
  margin-bottom: 25px;
}

.main-footer .footer-widget {
  position: relative;
}

.main-footer .footer-logo {
  position: relative;
  margin-top: -10px;
  margin-bottom: 20px;
}

.main-footer h6 {
  position: relative;
  font-size: var(--thm-h6-size);
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
}

.main-footer .logo-widget {
  position: relative;
}

.main-footer .logo-widget .logo {
  position: relative;
  margin-bottom: 26px;
}

.main-footer .logo-widget .logo img {
  height: 34px;
}

.main-footer .logo-widget .text {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin: 0 0 30px;
}

.main-footer .links-widget ul li {
  position: relative;
  margin-bottom: 3px;
}

.main-footer .links-widget ul li:last-child {
  margin: 0;
}

.main-footer .links-widget ul li a {
  position: relative;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
  text-transform: capitalize;
  letter-spacing: 0.07em;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .links-widget ul li a:hover::before {
  transform: scaleX(1);
}

.main-footer .links-widget ul li a:hover {
  color: #fff;
}

.main-footer .social-links {
  position: relative;
}

.main-footer .social-links li {
  position: relative;
  margin-right: 8px;
  display: inline-block;
}

.main-footer .social-links li a {
  position: relative;
  display: block;
  color: #fff;
  font-size: 16px;
  width: 44px;
  height: 44px;
  line-height: 44px;
  background: #1c1e22;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .social-links li a span {
  vertical-align: middle;
}

.main-footer .social-links li a:hover {
  color: #fff;
  background: var(--thm-base);
}

.main-footer .info-widget ul li {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.1em;
  padding-left: 30px;
  margin-bottom: 5px;
}

.main-footer .info-widget ul li.address {
  margin-bottom: 20px;
}

.main-footer .info-widget ul li .icon {
  position: absolute;
  left: 0;
  top: 0;
  line-height: 30px;
  font-size: 16px;
  color: var(--thm-base);
}

.main-footer .info-widget ul li:last-child {
  margin: 0;
}

.main-footer .info-widget ul li a {
  position: relative;
  color: #fff;
  line-height: 28px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.main-footer .info-widget ul li a:hover {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--thm-base);
}

.main-footer .newsletter-widget .text {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 1.5em;
  font-size: 18px;
  letter-spacing: 0.1em;
  margin: 25px 0 0;
}

.main-footer .newsletter-form {
  position: relative;
}

.main-footer .newsletter-form form {
  position: relative;
}

.main-footer .newsletter-form .form-group {
  position: relative;
  margin: 0;
}

.main-footer .newsletter-form .form-group input[type="text"],
.main-footer .newsletter-form .form-group input[type="tel"],
.main-footer .newsletter-form .form-group input[type="email"] {
  position: relative;
  width: 100%;
  line-height: 30px;
  padding: 20px 60px 20px 25px;
  height: 70px;
  display: block;
  font-size: 18px;
  background: #1c1e22;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: #fff;
  border-radius: 5px;
  border: 1px solid #1c1e22;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .newsletter-form .form-group input[type="text"]:focus,
.main-footer .newsletter-form .form-group input[type="email"]:focus,
.main-footer .newsletter-form .form-group input[type="tel"]:focus {
  border-color: var(--thm-base);
}

.main-footer .footer-bottom {
  position: relative;
  text-align: center;
}

.main-footer .footer-bottom .inner {
  position: relative;
  display: block;
  padding: 15px 0;
  line-height: 30px;
  color: #fff;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.main-footer .footer-bottom .copyright {
  position: relative;
  font-weight: 300;
  line-height: 1.5em;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/***

====================================================================
26.	Services Section
====================================================================

***/

.services-section-two {
  position: relative;
  padding: 120px 0 0;
  background: #fff;
}

.services-section-two .sec-title {
  margin-bottom: 30px;
}

.services-section-two .sec-title .column {
  margin-bottom: 20px;
}

.services-section-two .sec-title .lower-text {
  padding-top: 0;
  margin-top: 0;
}

.services-section-two .services {
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}

.service-block-two {
  position: relative;
  margin-bottom: 30px;
}

.service-block-two .inner-box {
  position: relative;
  display: block;
  padding: 50px 45px 40px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-block-two .inner-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 4%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-block-two .inner-box:hover::before {
  background: var(--thm-black);
  bottom: -10px;
}

.service-block-two .inner-box .bottom-curve {
  position: absolute;
  right: -70px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  background: #fff;
  opacity: 0.1;
  z-index: 0;
  transform: skewX(0deg) scaleX(0);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block-two .inner-box:hover .bottom-curve {
  transform: skewX(-45deg) scaleX(1);
}

.service-block-two .inner-box .icon-box {
  position: relative;
  display: block;
  color: var(--thm-base);
  font-size: 64px;
  line-height: 1em;
  margin-bottom: 20px;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block-two .inner-box:hover .icon-box {
  color: var(--thm-base);
}

.service-block-two .inner-box h5 {
  font-size: var(--thm-h5-size);
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 0;
}

.service-block-two .inner-box h5 a {
  color: var(--thm-black);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.service-block-two .inner-box:hover h5,
.service-block-two .inner-box:hover h5 a {
  color: #fff;
}

.service-block-two .inner-box h5 a:hover {
  text-decoration: underline;
}

.service-block-two .text {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--thm-text);
  padding: 30px 0 0;
  z-index: 1;
}

.service-block-two .inner-box:hover .text {
  color: #fff;
}

.service-block-two .link-box {
  position: absolute;
  right: 3px;
  bottom: 8px;
  width: 30px;
  height: 30px;
  z-index: 1;
}

.service-block-two .link-box a {
  position: relative;
  line-height: 30px;
  font-size: 20px;
  color: #fff;
}

/***

====================================================================
28.		Gallery Section
====================================================================

***/

.gallery-section-two {
  position: relative;
  padding: 120px 0 0;
}

.gallery-section-two.alternate {
  position: relative;
  background: #fff url(../images/background/pattern-2.png) right top repeat;
  padding-bottom: 90px;
}

.gallery-section-two .sec-title {
  margin-bottom: 40px;
}

.project-tab {
  position: relative;
}

.project-tab .tabs-header {
  position: relative;
  text-align: center;
}

.project-tab .product-tab-btns {
  position: relative;
  margin-bottom: 50px;
}

.project-tab .product-tab-btns .p-tab-btn {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  line-height: 40px;
  padding: 0;
  cursor: pointer;
  color: var(--thm-text);
  font-weight: 300;
  margin: 0 20px 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: none;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-tab .product-tab-btns .p-tab-btn::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-bottom: 2px solid var(--thm-base);
  transform: scaleX(0);
  transform-origin: left;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-tab .product-tab-btns .p-tab-btn sup {
  position: absolute;
  right: 0;
  top: 3px;
  font-size: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.project-tab .product-tab-btns .p-tab-btn.active-btn sup {
  opacity: 1;
  visibility: visible;
}

.project-tab .product-tab-btns .p-tab-btn.active-btn::before {
  transform: scaleX(1);
}

.project-tab .product-tab-btns .p-tab-btn.active-btn {
  color: var(--thm-black);
  font-weight: 400;
  padding-right: 20px;
}

.project-tab .p-tabs-content {
  position: relative;
  display: block;
  margin: 0 -15px;
}

.project-tab .p-tab {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  visibility: hidden;
}

.project-tab .p-tab.active-tab {
  position: relative;
  visibility: visible;
  z-index: 5;
}

.p-tab .gallery-item {
  position: relative;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -moz-transform: scaleX(0);
  transform: scaleX(0);
}

.p-tab.active-tab .gallery-item {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -moz-transform: scaleX(1);
  transform: scaleX(1);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.project-tab .owl-theme .owl-nav {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 30px;
  display: none;
}

.project-tab .owl-theme .owl-dots {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 40px;
}

.project-tab .owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 3px;
}

.project-tab .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background: #d3d3d4;
  border: 2px solid #d3d3d4;
  border-radius: 50%;
}

.project-tab .owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
  border-color: var(--thm-base);
}

.gallery-section-two.alternate .owl-theme .owl-dots {
  display: none;
}

/***

====================================================================
30.	Testimonials Section
====================================================================

***/

.testimonials-section {
  position: relative;
  padding: 120px 0;
  background: #fff url(../images/background/pattern-2.png) left top repeat;
  overflow: hidden;
}

.testimonials-page {
  padding-bottom: 90px;
}

.testimonials-section .sec-title {
  margin-bottom: 40px;
}

.testimonials-section .carousel-box {
  position: relative;
  margin: 0;
}

.testimonials-section .carousel-box .owl-stage-outer {
  overflow: visible;
}

.testi-block {
  position: relative;
  margin-bottom: 30px;
}

.owl-theme .testi-block {
  margin: 0;
}

.testi-block .inner {
  position: relative;
  display: block;
  padding: 60px 60px 50px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 10px 30px 0 rgb(0 0 0 / 4%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.testi-block:hover .inner {
  background-color: var(--thm-base);
}

.testimonials-page .testi-block .inner {
  -webkit-box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
  -ms-box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
  box-shadow: 0 0 30px 0 rgb(0 0 0 / 5%);
}

.owl-theme .testi-block .inner {
  margin: 7px 0;
}

.testi-block .icon {
  position: absolute;
  right: 50px;
  top: 60px;
  font-weight: 700;
  font-size: 100px;
  line-height: 1em;
  color: var(--thm-base);
  transition: all 500ms ease;
}

.testi-block:hover .icon {
  color: var(--thm-black);
}

.testi-block .info {
  position: relative;
  padding-left: 100px;
  padding-top: 16px;
  min-height: 70px;
  margin-bottom: 35px;
}

.testi-block .info .image {
  position: absolute;
  left: 0;
  top: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
}

.testi-block .info .image img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  filter: grayscale(100%);
  border-radius: 7px;
  transition: all 500ms ease;
}

.testi-block:hover .info .image img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  filter: grayscale(0%);
}

.testi-block .info .name {
  display: block;
  font-size: 24px;
  line-height: 1.2em;
  color: var(--thm-black);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testi-block .info .designation {
  display: block;
  font-size: 16px;
  color: var(--thm-base);
  line-height: 1.2em;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 500ms ease;
}

.testi-block:hover .info .designation {
  color: var(--thm-black);
}

.testi-block .text {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--thm-text);
  transition: all 500ms ease;
  padding: 0;
}

.testi-block:hover .text {
  color: var(--thm-black);
}

.testimonials-section .owl-theme .owl-nav {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 30px;
  display: none;
}

.testimonials-section .owl-theme .owl-dots {
  position: absolute;
  top: -70px;
  width: 1170px;
  left: 50%;
  margin-left: -585px;
  text-align: right;
}

.testimonials-section .owl-theme .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 0 0 0 6px;
}

.testimonials-section .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  background: #d3d3d4;
  border: 2px solid #d3d3d4;
  border-radius: 50%;
}

.testimonials-section .owl-theme .owl-dots .owl-dot.active span {
  background: #fff;
  border-color: var(--thm-base);
}

/***

====================================================================
31.	Parallax Section
====================================================================

***/

.features-section {
  position: relative;
  padding: 120px 0;
  background: #1c1e22;
  color: #fff;
  z-index: 1;
}

.features-section .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  opacity: 0.3;
  background-attachment: fixed;
}

.features-section .content-box {
  position: relative;
  max-width: 700px;
}

.features-section .content-box h2 {
  position: relative;
  display: block;
  font-size: var(--thm-h2-size);
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: 0.01em;
  font-weight: 400;
  margin-bottom: 45px;
}

.features-section .content-box h2 span {
  color: var(--thm-base);
  padding-left: 3px;
}

.features-section .feature-block {
  position: relative;
  float: left;
  margin-bottom: 45px;
}

.features-section .feature-block .inner {
  position: relative;
  display: block;
  padding-right: 80px;
  margin-right: 80px;
}

.features-section .feature-block .inner::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  border-right: 1px solid rgb(255 255 255 / 15%);
}

.features-section .feature-block:last-child .inner {
  padding-right: 0;
  margin-right: 0;
}

.features-section .feature-block:last-child .inner::before {
  display: none;
}

.features-section .feature-block .icon-box {
  position: relative;
  display: block;
  line-height: 1em;
  color: #fff;
  font-size: 60px;
  margin: 0 0 20px;
}

.features-section .feature-block h6 {
  font-size: var(--thm-h6-size);
  line-height: 1.25em;
  margin: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 400;
  color: #fff;
}

/***

====================================================================
34.		Call Section
====================================================================

***/

.call-to-section-two.alternate {
  background: var(--thm-text);
  background-image: url(../images/background/cta-2-bg-1-1.png);
}

.call-to-section-two .inner {
  position: relative;
  display: block;
}

.call-to-section-two h2 {
  position: relative;
  float: left;
  display: block;
  font-size: var(--thm-h2-size);
  line-height: 0.85em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  margin: 0 0 25px;
  z-index: 1;
}

.call-to-section-two.alternate h2 {
  color: #fff;
}

.call-to-section-two .link-box {
  position: relative;
  float: right;
  z-index: 1;
}

.call-to-section-two {
  position: relative;
  padding: 50px 0;
  background-color: #2a2c30;
  background-image: url(../images/icons/cta-bg-1-1.png);
  color: #fff;
  z-index: 1;
}

/***

====================================================================
44.		Page Banner
====================================================================

***/

.page-banner {
  position: relative;
  padding: 0;
  color: #fff;
  background: var(--thm-black);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-banner .image-layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
}

.page-banner .banner-inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 3;
}

.page-banner .inner-container {
  position: relative;
  padding: 145px 0 20px;
}

.page-banner h1 {
  position: relative;
  font-size: var(--thm-h1-size);
  color: #fff;
  line-height: 0.9em;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0;
}

.page-banner .page-nav {
  position: relative;
  padding-top: 5px;
  text-align: center;
}

.page-banner .bread-crumb {
  position: relative;
  display: inline-block;
}

.page-banner .bread-crumb li {
  position: relative;
  float: left;
  line-height: 30px;
  color: #ccd6df;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: default;
  padding-right: 15px;
  margin-right: 15px;
}

.page-banner .bread-crumb li::before {
  position: absolute;
  right: -15px;
  width: 30px;
  text-align: center;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  content: "-";
}

.page-banner .bread-crumb li:last-child {
  padding-right: 0;
  margin-right: 0;
}

.page-banner .bread-crumb li:last-child::before {
  display: none;
}

.page-banner .bread-crumb li a {
  color: #fff;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.page-banner .bread-crumb li a:hover,
.page-banner .bread-crumb li.active {
  color: var(--thm-base);
}

/***

====================================================================
45.	Faqs Section
====================================================================

***/

.faqs-section {
  position: relative;
  padding: 120px 0 100px;
  background: #fff url(../images/background/pattern-2.png) left top repeat;
  overflow: hidden;
}

.faqs-section .faq-block {
  position: relative;
  margin-bottom: 20px;
}

/***

====================================================================
47.	Error Section
====================================================================

***/

.error-section {
  position: relative;
  background: #fff;
  padding: 120px 0;
}

.error-section .content {
  position: relative;
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.error-section .big-text {
  position: relative;
  line-height: 0.7em;
  font-size: 340px;
  color: var(--thm-base);
  font-weight: 400;
  letter-spacing: 15px;
  line-height: 1em;
}

.error-section .big-text .front {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
}

.error-section .big-text .back {
  position: absolute;
  padding-left: 20px;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  text-align: center;
  color: rgb(var(--thm-base-rgb) 0.1);
}

.error-section h2 {
  font-weight: 400;
  color: var(--thm-black);
  line-height: 1em;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

.error-section .text {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.error-section .link-box {
  position: relative;
  padding-top: 20px;
}

.error-section .link-box .theme-btn {
  position: relative;
  min-width: 200px;
}

.error-form {
  position: relative;
  max-width: 520px;
  margin: 50px auto 0;
}

.error-form form {
  position: relative;
}

.error-form .form-group {
  position: relative;
  margin: 0;
}

.error-form .form-group input[type="text"],
.error-form .form-group input[type="search"],
.error-form .form-group input[type="email"] {
  position: relative;
  width: 100%;
  line-height: 30px;
  padding: 20px 60px 20px 30px;
  height: 70px;
  display: block;
  font-size: 20px;
  background: #f4f5f8;
  font-weight: 300;
  letter-spacing: 0.07em;
  color: var(--thm-text);
  border-radius: 7px;
  border: 1px solid #f4f5f8;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.error-form .form-group input[type="text"]:focus,
.error-form .form-group input[type="email"]:focus,
.error-form .form-group input[type="search"]:focus {
  border-color: var(--thm-base);
}

.error-form .form-group input::input-placeholder {
  color: #575757;
}

.error-form .form-group .theme-btn {
  position: absolute;
  right: 25px;
  top: 15px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  background: none;
  color: var(--thm-text);
}

.error-form .form-group .theme-btn span {
  vertical-align: middle;
}

/***

====================================================================
48.	Contact Section
====================================================================

***/

.contact-section {
  position: relative;
  padding: 120px 0 100px;
  background: #fff;
}

.contact-section__one-page {
  padding-bottom: 0;
}

.contact-section .map-box {
  position: relative;
  display: block;
  margin: 0 0 120px;
  border-radius: 7px;
  overflow: hidden;
}

.contact-section .form-box {
  position: relative;
  display: block;
  max-width: 770px;
  margin: 0 auto;
  text-align: center;
}

.contact-section .form-box form .row {
  margin: 0 -10px;
}

.contact-section .form-box form .form-group {
  padding: 0 10px;
  margin-bottom: 20px;
}

.contact-section .upper-info {
  position: relative;
  margin-bottom: 90px;
}

.contact-section .info-block {
  position: relative;
  margin-bottom: 30px;
}

.contact-section .info-block .inner-box {
  position: relative;
  display: block;
  height: 100%;
  min-height: 100%;
  padding: 45px 45px 40px;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 5%);
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-section .info-block .inner-box:hover {
  background: var(--thm-black);
}

.contact-section .info-block .inner-box h5 {
  font-size: var(--thm-h5-size);
  text-transform: uppercase;
  color: var(--thm-black);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 1.1em;
  margin: 0;
}

.contact-section .info-block .inner-box h5 a {
  color: var(--thm-black);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}

.contact-section .info-block .inner-box:hover h5,
.contact-section .info-block .inner-box:hover h5 a {
  color: #fff;
}

.contact-section .info-block .inner-box .text {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 1.7em;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--thm-text);
  padding: 30px 0 0;
  z-index: 1;
}

.contact-section .info-block .inner-box .text a {
  position: relative;
  color: var(--thm-text);
}

.contact-section .info-block .inner-box:hover .text,
.contact-section .info-block .inner-box:hover .text a {
  color: #fff;
}

.contact-section .info-block .inner-box:hover h5 a:hover,
.contact-section .info-block .inner-box:hover .text a:hover {
  text-decoration: underline;
  color: #fff;
}

/***

====================================================================
49.	Sidebar Page Container
====================================================================

***/

.sidebar-page-container {
  position: relative;
  padding: 40px 0 90px;
}

.sidebar-page-container .content-side {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

/* Sidebar */

.sidebar-page-container .sidebar-side {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-page-container .sidebar {
  position: relative;
}

.sidebar .sidebar-widget {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.sidebar .sidebar-widget:last-child {
  margin-bottom: 0;
}

.sidebar .sidebar-widget .widget-inner {
  position: relative;
  display: block;
  padding: 45px;
  background: #f4f5f8;
  border-radius: 7px;
}

.sidebar-title {
  position: relative;
  margin-bottom: 20px;
}

.sidebar-title h4 {
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 1.1em;
  color: var(--thm-black);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 0;
}

.sidebar .services ul {
  position: relative;
}

.sidebar .services ul li {
  position: relative;
  line-height: 48px;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-weight: 300;
  margin-bottom: 5px;
}

.sidebar .services ul li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 0;
  right: -20px;
  bottom: 0;
  background: #fff;
  border-radius: 7px;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .services ul li::after {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -12px;
  height: 24px;
  border-left: 2px solid var(--thm-base);
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .services ul li:last-child {
  margin-bottom: 0;
}

.sidebar .services ul li a {
  position: relative;
  display: block;
  line-height: 48px;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.sidebar .services ul li:hover a,
.sidebar .services ul li.active a {
  color: var(--thm-black);
}

.sidebar .services ul li:hover::before,
.sidebar .services ul li.active::before,
.sidebar .services ul li:hover::after,
.sidebar .services ul li.active::after {
  opacity: 1;
}

.sidebar .services ul li a::after {
  position: absolute;
  right: 0;
  top: -1px;
  font-family: "Flaticon";
  content: "\f15f";
  opacity: 1;
  font-size: 10px;
  line-height: 48px;
  font-weight: 700;
  z-index: 1;
}

.sidebar .services ul li a:hover::before,
.sidebar .services ul li.active a::before {
  opacity: 1;
  transform: scaleX(1);
  -webkit-transition: all 0.3s ease 0.1s;
  -moz-transition: all 0.3s ease 0.1s;
  -ms-transition: all 0.3s ease 0.1s;
  -o-transition: all 0.3s ease 0.1s;
  transition: all 0.3s ease 0.1s;
}

.sidebar .call-up .widget-inner {
  background: var(--thm-black);
  color: #fff;
}

.sidebar .call-up .sidebar-title h4 {
  color: #fff;
}

.sidebar .call-up .text {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 1.5em;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.sidebar .call-up .phone {
  position: relative;
  margin-top: 20px;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}

.sidebar .call-up .phone .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  color: var(--thm-base);
  font-size: 20px;
  padding-right: 15px;
}

.sidebar .call-up .phone a {
  position: relative;
  color: #fff;
}

.sidebar .call-up .phone a:hover {
  text-decoration: underline;
}

.sidebar .search-box .widget-inner {
  padding: 0;
  background: none;
}

.sidebar .search-box .form-group {
  position: relative;
  margin: 0;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
  position: relative;
  line-height: 40px;
  padding: 19px 80px 19px 35px;
  background: var(--thm-base);
  color: var(--thm-black);
  display: block;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 1px;
  width: 100%;
  height: 80px;
  border: 1px solid var(--thm-base);
  border-radius: 7px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group input:focus {
  border-color: var(--thm-black);
}

.sidebar .search-box .form-group button {
  position: absolute;
  right: 20px;
  top: 0;
  height: 80px;
  width: 60px;
  line-height: 80px;
  display: block;
  font-size: 24px;
  color: #848484;
  background: none;
  font-weight: normal;
}

.sidebar .search-box .form-group input:focus + button,
.sidebar .search-box .form-group button:hover {
  color: #181b1f;
}

.sidebar .recent-posts .post {
  position: relative;
  font-size: 20px;
  color: var(--thm-text);
  padding: 7px 0 0 85px;
  min-height: 62px;
  margin-bottom: 30px;
}

.sidebar .recent-posts .post:last-child {
  margin-bottom: 0;
}

.sidebar .recent-posts .post-thumb {
  position: absolute;
  left: 0;
  top: 0;
  width: 62px;
  height: 62px;
  border-radius: 50%;
}

.sidebar .recent-posts .post-thumb img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 50%;
  -webkit-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
}

.sidebar .recent-posts .post:hover .post-thumb img {
  -webkit-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}

.sidebar .recent-posts .text {
  font-size: 20px;
  line-height: 1.3em;
  color: var(--thm-text);
  font-weight: 300;
  text-transform: capitalize;
  margin: 0;
  letter-spacing: 0.07em;
  max-width: 170px;
}

.sidebar .recent-posts .text a {
  color: var(--thm-text);
}

.sidebar .recent-posts .text a:hover {
  color: var(--thm-black);
}

.sidebar .popular-tags .tags-list {
  padding-right: 20px;
}

.sidebar .popular-tags .tags-list li,
.sidebar .popular-tags .tags-list a {
  position: relative;
  color: var(--thm-text);
  display: inline-block;
  vertical-align: top;
  letter-spacing: 0.09em;
  line-height: 1.45em;
  word-spacing: 3px;
}

.sidebar .popular-tags .tags-list a {
  position: relative;
  display: inline-block;
  line-height: 1.45em;
  text-align: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--thm-text);
  letter-spacing: 0.09em;
  text-transform: capitalize;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .popular-tags .tags-list a:hover {
  color: var(--thm-black);
}

.sidebar .archives ul {
  position: relative;
}

.sidebar .archives ul li {
  position: relative;
  line-height: 30px;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-weight: 300;
  margin-bottom: 15px;
}

.sidebar .archives ul li:last-child {
  margin-bottom: 0;
}

.sidebar .archives ul li a {
  position: relative;
  display: block;
  line-height: 30px;
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: var(--thm-text);
  font-weight: 300;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
}

.sidebar .archives ul li:hover a,
.sidebar .archives ul li.active a {
  color: var(--thm-black);
  font-weight: 400;
}

.sidebar .archives ul li a::after {
  position: absolute;
  right: 0;
  top: -1px;
  font-family: "Flaticon";
  content: "\f15f";
  opacity: 1;
  font-size: 10px;
  line-height: 30px;
  font-weight: 700;
  z-index: 1;
}

.sidebar .recent-comments .comment {
  position: relative;
  font-size: 20px;
  color: var(--thm-text);
  padding: 0 0 0 70px;
  min-height: 48px;
  margin-bottom: 30px;
}

.sidebar .recent-comments .comment:last-child {
  margin-bottom: 0;
}

.sidebar .recent-comments .comment .icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  font-size: 18px;
  line-height: 48px;
  background-color: var(--thm-black);
  color: #fff;
  text-align: center;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.sidebar .recent-comments .comment:hover .icon {
  background: var(--thm-base);
}

.sidebar .recent-comments .comment .text {
  font-size: 20px;
  line-height: 24px;
  color: var(--thm-text);
  font-weight: 300;
  letter-spacing: 0.07em;
  text-transform: capitalize;
  margin: 0;
}

.sidebar .recent-comments .comment .text a {
  color: var(--thm-text);
}

.sidebar .recent-comments .comment .text a:hover {
  color: var(--thm-black);
}

/***

====================================================================
52.	Service Details
====================================================================

***/

.service-details {
  position: relative;
}

.service-details .image {
  position: relative;
  display: block;
  overflow: hidden;
}

.service-details .image img {
  display: block;
  width: 100%;
  border-radius: 7px;
}

.service-details .main-image {
  margin-bottom: 35px;
}

.service-details h3 {
  font-size: var(--thm-h3-size);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 25px;
}

.service-details h4 {
  font-size: 36px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1em;
  margin-bottom: 20px;
}

.service-details .text-content {
  position: relative;
  display: block;
  font-weight: 300;
  line-height: 1.5em;
  font-size: 20px;
  letter-spacing: 0.1em;
}

.service-details .text-content p {
  margin-bottom: 35px;
}

.service-details .text-content .last {
  margin-bottom: 0;
}

.service-details .featured {
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.service-details .featured .image-col {
  margin-bottom: 30px;
}

.service-details .text-content ul {
  margin-bottom: 20px;
}

.service-details .text-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}

.service-details .text-content ul li::before {
  content: "\f131";
  font-family: "Flaticon";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--thm-base);
  font-weight: 400;
  font-size: 18px;
}

/* --------------------------------------------------------------
	Side Menu
-------------------------------------------------------------- */

/* --------------------------------------------------------------
# Sidemenu
-------------------------------------------------------------- */

.mobile-nav__container {
  padding-top: 0;
  background: var(--thm-black);
  margin-top: 115px;
  position: fixed;
  width: 100%;
}

.mobile-nav__container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav__container li.dropdown ul {
  padding: 10px 0 0;
  margin-bottom: 20px;
  padding-left: 0.5em;
}

.mobile-nav__container li.dropdown ul li {
  margin-bottom: 10px;
}

.mobile-nav__container li.dropdown {
  position: relative;
}

.mobile-nav__container li.dropdown > a {
  position: relative;
  display: inline-block;
  padding-right: 25px;
  vertical-align: middle;
}

.mobile-nav__container li > a > span {
  background-color: var(--thm-base);
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 40px;
  top: -3px;
  position: relative;
  margin-left: 5px;
}

.mobile-nav__container li.dropdown .dropdown-btn {
  position: absolute;
  top: 0;
  right: 0;
  line-height: 22px;
  width: 22px;
  height: 22px;
  display: block;
  text-align: center;
  vertical-align: middle;
  border: none;
  outline: none;
  background-color: transparent;
  color: #9ca3a9;
  font-size: 14px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-nav__container li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.mobile-nav__container li + li {
  margin-top: 10px;
}

.mobile-nav__container li a {
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 18px;
  font-weight: 300;
  display: flex;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  position: relative;
}

.mobile-nav__container li a:hover {
  color: var(--thm-base);
}

.mobile-nav__container li.current-menu-item > a,
.mobile-nav__container li.current > a {
  color: var(--thm-base);
}

html {
  scroll-behavior: smooth;
}

/* --------------------------------------------------------------
	Owl Custom CSS
-------------------------------------------------------------- */
.owl-dots .owl-dot {
  margin: 0 -3px !important;
}

.owl-theme .owl-nav [class*="owl-"] {
  margin: 0 !important;
  border-radius: 50% !important;
}

.mobile-nav__container ul.sub-menu {
  display: none;
}

.mobile-nav__container .dropdown.open ul.sub-menu {
  display: block;
  transition: 0.3s;
}

.mobile-nav__container .dropdown.open .dropdown-btn span {
  color: #ffaa16;
}

.anchorContent h1,
.anchorContent h2,
.anchorContent h3,
.anchorContent .service-details  h4 {
  padding-top: 120px;
  margin-top: -120px;
}

.object-fit-cover {
  object-fit: cover;
}

.page-wrapper {
  position: inherit;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------------------
	Cart index
-------------------------------------------------------------- */

.cart-container {
  overflow-x: auto;
}

@media only screen and (min-width: 450px) {
  .cart-container {
    overflow-x: visible;
}
}

.cart-components-table,
.payment-table {
  width: 100%;
  max-width: 52rem;
  table-layout: fixed;
  z-index: 10;
}

.cart-components-table {
  min-width: 25rem;
}

.cart-components-table img {
  max-height: 70px;
}

.cart-components-table thead {
  border-bottom: 2px solid lightgray;
}

.cart-components-table td:first-of-type,
.cart-components-table th:first-of-type {
  width: min(6rem, 12vw);
}

.cart-components-table th {
  padding-bottom: 0.2rem;
  position: relative;
}

.cart-components-table th:first-of-type {
  text-align: center;
}

.cart-components-table thead .tax-detail {
  font-size: 0.8rem;
  position: absolute;
  top: 0;
  right: -1.1rem;
}

.cart-components-table tbody .tax-detail {
  font-size: 0.7rem;
}

.cart-components-table tbody tr:first-of-type td {
  padding-top: 0.5rem;
}

.cart-components-table tbody tr td:first-of-type {
  padding-left: 0;
}

.cart-components-table td + td,
.cart-components-table th + th {
  padding-left: 1.4rem;
  width: min(6rem, 12vw);
}

.cart-components-table .cart-table-ref {
  width: min(15rem, 22vw);
}

.cart-components-table td.cart-table-ref {
  line-height: 1.5;
}

.cart-components-table td.cart-table-ref p {
  font-size: 0.9rem;
  line-height: 1.3;
  padding-top: 0.5rem;
}

.cart-components-table .cart-table-align-end {
  text-align: right;
  padding-right: 0;
}

.cart-total-price {
  width: min(45.4rem, 100%);
}

.cart-total-price .tax-detail {
  font-size: 1rem;
  position: absolute;
  top: -0.8rem;
  right: -1.4rem;
}

/* --------------------------------------------------------------
	Payment page
-------------------------------------------------------------- */

.cart-payment-price-box {
  max-width: 24rem;
}

/* --------------------------------------------------------------
	Payment callback
-------------------------------------------------------------- */

.callback-totalPrice .tax-detail,
.project-card-price .tax-detail {
  font-size: 0.9rem;
  top: -0.5rem;
  right: -2rem;
}

.services-option-cancel {
  position: absolute !important;
  display: none;
  top: 4px;
  left: -28px;
}

.form-check:hover .services-option-cancel {
  display: block;
}

.char-70 {
  max-width: 70ch;
}

.owl-carousel {
  height: 85vh;
}

.owl-stage-outer,
.owl-stage,
.owl-item {
  height: 100%;
}

.shopping-btn {
  height: 30px;
  width: 30px;
  min-height: 30px;
  max-height: 30px;
  max-width: 30px;
  min-width: 30px;
  background-color: var(--bs-primary);
}

.shopping-btn:hover {
  background-color: #efb559;
}

.project-card-link:hover i {
  color: var(--bs-primary) !important;
}

.project-card-link:hover small {
  color: var(--bs-primary) !important;
}

strong {
  font-weight: bold;
}

.w-0 {
  width: 0px !important;
}

.modal-body .configurator-modal-body,
.panel-container {
  max-width: 330px;
}

.modal-payment {
  z-index: 99999;
}

/* Custom radio buttons payment */

.payment-form-radio-input [type="radio"]:checked,
.payment-form-radio-input [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.payment-form-radio-input [type="radio"]:not(:checked) + label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #777;
}

.payment-form-radio-input [type="radio"]:checked + label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #333;
}

.payment-form-radio-input [type="radio"]:checked + label:before,
.payment-form-radio-input [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #ddd;
  border-radius: 100%;
  background: #fff;
}

.payment-form-radio-input [type="radio"]:checked + label:after,
.payment-form-radio-input [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--thm-base);
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.payment-form-radio-input [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.payment-form-radio-input [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.payment-form-radio-input + .payment-description,
.payment-form-radio-input + .payment-description.checked {
  -webkit-transition: opacity 0.4s ease, transform 0.5s;
  transition: opacity 0.4s ease, transform 0.5s;
}

.payment-form-radio-input + .payment-description {
  height: 0;
  opacity: 0;
  -webkit-transform: scale(1, 0.1);
  transform: scale(1, 0.1);
}

.payment-form-radio-input + .payment-description.checked {
  height: auto;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
