:root {
  --thm-landing-font: "Figtree", sans-serif;
  --thm-landing-font-two: "Barlow Semi Condensed", sans-serif;
  --thm-landing-gray: #616368;
  --thm-landing-gray-rgb: 97, 99, 104;
  --thm-landing-base: #c1b79a;
  --thm-landing-base-rgb: 193, 183, 154;
  --thm-landing-black: #121212;
  --thm-landing-black-rgb: 18, 18, 18;
  --thm-landing-primary: #f6f6f6;
  --thm-landing-primary-rgb: 246, 246, 246;
  --thm-landing-white: #ffffff;
  --thm-landing-white-rgb: 255, 255, 255;
  --thm-landing-bdr-radius: 8px;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--thm-landing-font);
  color: var(--thm-landing-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
}

a {
  color: var(--thm-landing-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--thm-landing-font-two);
  color: var(--thm-landing-black);
  margin: 0;
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

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

/* Thm Btn Css */

.thm-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  font-weight: 700;
  font-size: 16px;
  color: var(--thm-landing-white);
  background-color: var(--thm-landing-base);
  padding: 15px 40px 15px;
  border-radius: var(--thm-landing-bdr-radius);
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  overflow: hidden;
  font-family: var(--thm-landing-font-two);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 1;
}

.thm-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--thm-landing-black-rgb), .10);
  z-index: -1;
}

.thm-btn::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 150%;
  height: 500%;
  border-radius: 45%;
  background-position: bottom top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(1.0) translateX(-50%);
  background-color: var(--thm-landing-base);
  z-index: -1;
}

.thm-btn:hover::after {
  width: 0px;
  height: 0px;
  transform: scaleY(1.0) translateX(-50%);
}

.thm-btn:hover {
  color: var(--thm-landing-black);
  transition-delay: 400ms;
}

.thm-btn span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.thm-btn span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: -3px;
  bottom: 0;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .3s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0.0);
  background-color: var(--thm-landing-white);
  z-index: -1;
}

.thm-btn:hover span::before {
  transform: scaleY(1.0);
  transition-delay: 400ms;

}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  display: block;
  padding: 100px 0 650px;
  overflow: hidden;
  z-index: 2;
}

.hero-section__bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.hero-section__bg::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000000;
  opacity: 0.8;
  content: "";
  z-index: -1;
}

.hero-section__img-one {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.hero-section__img-one img {
  width: auto;
}

.hero-section__img-two {
  position: absolute;
  bottom: -150px;
  left: 35%;
  transform: translateX(-50%);
  z-index: 2;
}

.hero-section__img-three {
  position: absolute;
  bottom: -200px;
  left: 20%;
  transform: translateX(-50%);
}

.hero-section__img-four {
  position: absolute;
  bottom: -150px;
  right: 35%;
  transform: translateX(50%);
  z-index: 2;
}

.hero-section__img-five {
  position: absolute;
  bottom: -200px;
  right: 20%;
  transform: translateX(50%);
  z-index: 1;
}

.hero-section__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.hero-section__logo {
  position: relative;
  display: block;
}

.hero-section__logo a {
  position: relative;
  display: block;
}

.hero-section__logo a img {
  width: auto;
}

.hero-section__content {
  position: relative;
  display: block;
}

.heor-section__title {
  color: var(--thm-landing-white);
  font-size: 75px;
  line-height: 1.2em;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 38px;
  margin-bottom: 28px;
}

.heor-section__title span {
  color: var(--thm-landing-base);
}

.hero-section__page-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-section__page-list li {
  position: relative;
  display: block;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  color: var(--thm-landing-base);
  font-family: var(--thm-landing-font-two);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-section__page-list li span {
  position: relative;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background-color: var(--thm-landing-base);
}

.hero-section__btns-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 45px;
}

/*--------------------------------------------------------------
# Demo One
--------------------------------------------------------------*/
.demo-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.demo-one_shape {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: .2;
}

.demo-one_shape img {
  width: auto;
}

.demo-one_shape1 {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .2;
}

.demo-one_shape1 img {
  width: auto;
}

.demo-one .row {
  justify-content: center;
}

.demo-one__single {
  background-color: var(--thm-landing-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  text-align: center;
  border-radius: var(--thm-landing-bdr-radius);
  transition: 500ms ease;
  transform: translateY(0px);
  margin-bottom: 30px;
}

.demo-one__single:hover {
  transform: translateY(-10px);
}

.demo-one__image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: var(--thm-landing-bdr-radius);
  border-top-right-radius: var(--thm-landing-bdr-radius);
}

.demo-one__image img {
  max-width: 100%;
  width: 100%;
  border-top-left-radius: var(--thm-landing-bdr-radius);
  border-top-right-radius: var(--thm-landing-bdr-radius);
  transition: filter 500ms ease;
  filter: blur(0px);
}

.demo-one__single:hover .demo-one__image img {
  filter: blur(2px);
}

.demo-one__btns {
  background-color: rgba(var(--thm-landing-black-rgb), .70);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: top center;
  opacity: 0;
}

.demo-one__single:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: bottom center;
}

.demo-one__title {
  margin: 0;
  text-align: center;
  font-size: 18px;
  line-height: 18px;
  font-weight: 600;
  color: var(--thm-landing-black);
  text-transform: capitalize;
  padding-top: 20px;
  padding-bottom: 22px;
}

.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}

.demo-one__title a:hover {
  background-size: 100% 1px;
}

.demo-one__btn {
  padding: 15px 20px 15px;
  width: 160px;
  text-align: center;
}


/*--------------------------------------------------------------
# Feature
--------------------------------------------------------------*/
.feature {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: var(--thm-landing-primary);
  padding: 103px 0 90px;
  z-index: 1;
}

.feature_shape1 {
  position: absolute;
  top: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .05;
}

.feature_shape1 img {
  width: auto;
}

.feature_shape2 {
  position: absolute;
  left: 0;
  bottom: 0;
  mix-blend-mode: luminosity;
  opacity: .05;
}

.feature_shape2 img {
  width: auto;
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.section-title__title {
  color: var(--thm-landing-black);
  font-size: 56px;
  line-height: 1.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 11px;
}

.section-title .round-box {
  position: relative;
  display: block;
  width: 12px;
  height: 12px;
  border: 3px solid var(--thm-landing-base);
  border-radius: 50%;
  margin: 20px auto 0px;
}

.section-title .round-box::before {
  position: absolute;
  top: 2px;
  left: -50px;
  width: 40px;
  height: 3px;
  background: var(--thm-landing-base);
  content: "";
}

.section-title .round-box::after {
  position: absolute;
  top: 2px;
  right: -50px;
  width: 40px;
  height: 3px;
  background: var(--thm-landing-base);
  content: "";
}




.feature__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.feature__list li {
  flex: 0 0 20%;
  max-width: 20%;
  width: 100%;
  padding: 0 15px;
  margin-bottom: 30px;
  cursor: pointer;
}

li.custom-style {
  flex: 0 0 50%;
  max-width: 50%;
}

.feature__list-single {
  position: relative;
  display: block;
  background-color: var(--thm-landing-white);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  text-align: center;
  padding: 50px 15px 47px;
  border-radius: var(--thm-landing-bdr-radius);
}

.feature__icon {
  position: relative;
  display: block;
}

.feature__icon img {
  display: block;
  height: 60px;
  margin: 0 auto 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature__list li:hover .feature__icon img {
  transform: scale(0.9);
}

.feature__title {
  font-size: 20px;
  line-height: 20px;
  font-family: var(--thm-landing-font);
  color: var(--thm-landing-gray);
  margin-top: 27px;
}



/*--------------------------------------------------------------
# Inner Pages
--------------------------------------------------------------*/
.inner-pages {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 103px 0 82px;
  z-index: 2;
}

.inner-pages__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  mix-blend-mode: luminosity;
  opacity: .1;
}

.inner-pages__shape img {
  width: auto;
}

.inner-pages__shape2 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  opacity: .1;
}

.inner-pages__shape2 img {
  width: auto;
}

.inner-pages .container {
  max-width: 1320px;
}

.inner-pages__inner {
  position: relative;
  display: block;
}

.inner-pages__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.inner-pages__filter li {
  position: relative;
  display: inline-block;
}

.inner-pages__filter li+li {
  margin-left: 15px;
}

.inner-pages__filter li p {
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  color: var(--thm-landing-white);
  background-color: var(--thm-landing-base);
  padding: 16px 35px 14px;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;
  border-radius: 25px;
  text-transform: uppercase;
  transition: all 0.5s linear;
  z-index: 1;
}

.inner-pages__filter li.active p {
  color: var(--thm-landing-white);
}

.inner-pages__filter li p:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 0%;
  background-color: var(--thm-landing-black);
  transition: all 0.3s ease;
  z-index: -1;
}

.inner-pages__filter li.active p:before {
  height: 100%;
}

.inner-pages__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.inner-pages__img {
  position: relative;
  display: block;
  background: var(--thm-landing-primary);
  padding: 20px 20px 20px;
  border-radius: 10px;
}

.inner-pages__img-inner {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.inner-pages__img-inner img {
  width: 100%;
}

.inner-pages__img-inner .btn-box {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  transform: translateY(90px);
  transition: background-color 0.7s ease;
  transition: all 0.7s ease;
  z-index: 2;
}

.inner-pages__single:hover .inner-pages__img-inner .btn-box {
  opacity: 1;
  transform: translateY(0px);
}

.inner-pages__img-inner .btn-box .thm-btn {
  width: 100%;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.inner-pages__img-inner .btn-box .thm-btn:hover {
  color: var(--thm-landing-white);
}

.inner-pages__img-inner .btn-box .thm-btn span::before {
  background-color: var(--thm-landing-black);
}

.inner-pages__single-title {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 16px;
}

.inner-pages__single-title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  text-transform: capitalize;
}

.inner-pages__single-title h2 a {
  color: var(--thm-landing-black);
}

.inner-pages__single-title h2 a:hover {
  color: var(--thm-landing-base);
}


/*--------------------------------------------------------------
# Responsive Text
--------------------------------------------------------------*/
.responsive {
  position: relative;
  display: block;
  background-color: var(--thm-landing-primary);
  padding: 120px 0 120px;
}

.responsive .img-box {
  position: relative;
  display: block;
}

.responsive .img-box img {
  width: auto;
}



/*--------------------------------------------------------------
# Sliding Text
--------------------------------------------------------------*/
.Sliding-text {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  z-index: 1;
}

.Sliding-text__inner {
  position: relative;
  display: block;
}

.Sliding-text__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 100%;
  margin: 0 -12px;
}

.Sliding-text__list li {
  position: relative;
  display: block;
  padding: 0 12px;
}

.Sliding-text__list li:first-child {
  margin-left: 24px;
}

.Sliding-text__list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--thm-landing-black);
  font-size: 24px;
  line-height: 24px;
  font-weight: 500;
  font-family: var(--thm-landing-font-two);
  background-color: var(--thm-landing-primary);
  border-radius: 8px;
  padding: 18px 25px 18px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.Sliding-text__list li a span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 25px;
  padding-right: 20px;
}

.Sliding-text__list li a:hover {
  background-color: var(--thm-landing-base);
  color: var(--thm-landing-white);
}

.Sliding-text__inner--two {
  margin-top: 15px;
}

/*--------------------------------------------------------------
# Main Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  display: block;
  background-color: var(--thm-landing-black);
  padding: 147px 0px 0px;
  overflow: hidden;
  z-index: 1;
}

.main-footer__pattern {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

.main-footer__img1 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  opacity: 0.2;
  z-index: -1;
  mix-blend-mode: luminosity;
}

.main-footer__top {
  position: relative;
  display: block;
}

.main-footer__top .container {
  max-width: 1200px;
}

.main-footer__top-inner {
  position: relative;
  display: block;
  text-align: center;
}

.main-footer__title {
  font-size: 55px;
  font-weight: 700;
  color: var(--thm-landing-white);
  line-height: 60px;
  text-transform: uppercase;
}

.main-footer__text-1 {
  font-size: 24px;
  line-height: 34px;
  color: #bababa;
  margin-top: 15px;
  margin-bottom: 46px;
}

.main-footer__btn-box {
  position: relative;
  display: block;
}

.main-footer__bottom {
  position: relative;
  display: block;
  margin-top: 110px;
}

.main-footer__copyright {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  color: var(--thm-landing-white);
  background-color: rgba(var(--thm-landing-white-rgb), .10);
  border-top-left-radius: var(--thm-landing-bdr-radius);
  border-top-right-radius: var(--thm-landing-bdr-radius);
  padding: 26px 0;
}

.main-footer__copyright a {
  color: var(--thm-landing-white);
}

.main-footer__copyright a:hover {
  color: var(--thm-landing-base);
}


/* Medium screen */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .heor-section__title {
    font-size: 60px;
  }

  .feature__list-single {
    padding: 50px 10px 47px;
  }

  .feature__title {
    font-size: 16px;
  }

  .inner-pages__filter li p {
    padding: 16px 25px 14px;
  }

  .inner-pages__shape {
    display: none;
  }

  .responsive .img-box img {
    width: 100%;
  }






}








/* Tablet Layout: 768px. */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .heor-section__title {
    font-size: 45px;
  }

  .feature__list li {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .main-footer__title {
    font-size: 40px;
    line-height: 50px;
  }

  .inner-pages__shape {
    display: none;
  }

  .inner-pages__filter li+li {
    margin-left: 10px;
  }

  .inner-pages__filter li p {
    font-size: 14px;
    line-height: 14px;
    padding: 13px 17px 12px;
  }

  .responsive .img-box img {
    width: 100%;
  }










}










/* Mobile Layout: 320px. */
@media only screen and (max-width: 767px) {
  .section-title__title {
    font-size: 35px;
  }

  .section-title__text br {
    display: none;
  }

  .heor-section__title {
    font-size: 28px;
  }

  .hero-section__page-list {
    gap: 10px;
  }

  .hero-section__page-list li {
    font-size: 20px;
    line-height: 20px;
  }

  .hero-section__btns-box {
    flex-direction: column;
  }

  .hero-section__logo a img {
    width: 150px;
  }

  .feature__list li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .main-footer__title {
    font-size: 30px;
    line-height: 40px;
  }

  .main-footer__text-1 br {
    display: none;
  }

  .main-footer {
    padding: 99px 0px 0px;
  }

  .inner-pages .container {
    max-width: 540px;
  }

  .inner-pages__filter li {
    display: block;
  }

  .inner-pages__filter {
    display: block;
    max-width: 300px;
    margin: 0 auto 60px;
  }

  .inner-pages__filter li+li {
    margin-left: 0px;
    margin-top: 10px;
  }

  .inner-pages__filter li p {
    justify-content: center;
  }

  .responsive .img-box img {
    width: 100%;
  }








}



@media only screen and (max-width: 539px) {
  .feature__list li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}




















/*--------------------------------------------------------------
# The End
--------------------------------------------------------------*/