/* ===========================
//	Global CSS.
=============================*/
:root {
  --font-body: "Inter", sans-serif;
  --font-heading: "Syne", sans-serif;
  --color-body: #4D5054;
  --color-heading: #212429;
  --color-white: #fff;
  --color-primary: #b98e75;
  --color-secondary: #15C590;
  --color-black: #212429;
}

/* Default Style */
body {
  font-family: var(--font-body);
  color: var(--color-body);
}
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--color-heading);
  font-family: var(--font-heading);
}
h1,
h2 {
  margin-bottom: 40px;
}
a {
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-decoration: none;
}
ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
}
.section-padding {
    padding: 120px 0;
}
.row {
  row-gap: 24px;
}
@media (min-width: 1200px) {
  .row.gutters-30 {
    margin-left: -15px;
    margin-right: -15px;
  }
  .row.gutters-30 > [class^=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
section, .section {
  overflow: hidden;
  position: relative;
}
.section-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 58px;
}
/* button style 1 */
a.button-style-1 {
  gap: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color-white);
  padding: 15px 34px 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  background-color: var(--color-primary);
}
a.button-style-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  background-color: var(--color-black);
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
a.button-style-1.btn-bg-white:hover {
  color: var(--color-primary);
}
a.button-style-1.btn-bg-white::before {
  background-color: var(--color-white);
}
a.button-style-1:hover::before {
  -webkit-transform: scale(1, 1.01);
  transform: scale(1, 1.01);
  transform-origin: bottom center;
}

/* Header */
header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  position: absolute;
  background-color: #000;
  padding: 15px 40px 15px 40px;
}
header .row {
  --bs-gutter-y: 0;
}
header .header-logo a img {
  width: 100%;
  height: auto;
}
header .header-logo .sticky-header-logo {
  display: none;
}
header .main-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 163px;
}
.menu--item {
  color: red;
  position: relative;
}
.menu--link {
  font-size: 18px;
  font-weight: 400;
  padding: 20px 0;
  color: var(--color-white);
  text-transform: capitalize;
}
.menu--link:hover {
  color: var(--color-primary);
}
.underline-style .parent-menu::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--color-white);
  width: 0;
  height: 3px;
  border-radius: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  width: 62px;
}

/* = Sticky Header 
=============================================================================================== */
.header--fixed {
  position: fixed;
  z-index: 9;
  right: 0;
  left: 0;
  top: 0
}
.admin-bar .header--fixed {
  top: 32px;
  @media screen and (max-width: 782px) {
      top: 46px;  
  }
}
.admin-bar.mn-top {
  .header--fixed {
      @media screen and (max-width: 600px) {
          top: 0; 
      }
  }
}
.headroom {
  transition: transform .25s ease-in-out;
  will-change: transform;
  box-shadow: rgba(27, 31, 35, 0.04) 0px 1px 0px, rgba(255, 255, 255, 0.25) 0px 1px 0px inset;
}

.headroom--pinned {
  transform: translateY(0)
}

.headroom--unpinned {
  transform: translateY(-100%)
}

/* Main Banner */
.ft-hero-section {
  z-index: 0;
  overflow: hidden;
  padding-top: 96px;
  position: relative;
  background-color: var(--color-white);
}
@media screen and (max-wdth: 991px) {
  .ft-hero-section {
    padding-top: 0;
  }
}
.ft-hero-section::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.2;
  background-color: #D9D9D9;
  z-index: -1;
}
.ft-hero-section-banner-wrapper {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
.ft-hero-section-banner-wrapper .hero-group-img {
  z-index: -1;
}
@media only screen and (min-width: 1200px) {
  .ft-hero-section-banner-wrapper .hero-group-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1650px) {
  .ft-hero-section-banner-wrapper .hero-group-img {
    right: -10%;
  }
}
.ft-hero-section-banner-wrapper .hero-content {
  position: relative;
  padding: 100px 20px 100px 20px;
}
@media only screen and (min-width: 992px) {
  .ft-hero-section-banner-wrapper .hero-content {
    max-width: 70%;
    padding: 150px 0 150px 40px;
  }
}
.ft-hero-section-banner-wrapper .hero-content .title-wrapper {
  margin-bottom: 25px;
}
.ft-hero-section-banner-wrapper .hero-content .hero-title {
  position: relative;
  color: var(--color-heading);
}
.ft-hero-section-banner-wrapper .hero-content .hero-title li {
  z-index: -1;
  position: absolute;
}
.ft-hero-section-banner-wrapper .hero-content .hero-title li:nth-child(1) {
  left: -30px;
  top: -50px;
}
.ft-hero-section-banner-wrapper .hero-content .subtitle {
  width: 100%;
}
@media only screen and (min-width: 1200px) {
  .ft-hero-section-banner-wrapper .hero-content .subtitle {
    width: 80%;
  }
}
.ft-hero-section-banner-wrapper .hero-content .brand-list li {
  width: 80px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background-color: var(--color-black);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ft-hero-section-banner-wrapper .hero-content .brand-list li:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.ft-hero-section-banner-wrapper .hero-content .see-demo-btn {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.21);
  padding: 23px 43px;
  color: var(--color-white);
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 600;
  line-height: 0px;
  letter-spacing: 0.16px;
  text-transform: capitalize;
  margin-bottom: 45px;
}
.ft-hero-section-banner-wrapper .hero-content .see-demo-btn svg {
  margin-left: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.ft-hero-section-banner-wrapper .hero-content .see-demo-btn:hover {
  background-color: #FFCD1F;
  color: var(--color-title);
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
.ft-hero-section-banner-wrapper .hero-content .see-demo-btn:hover svg {
  fill: var(--color-title);
  margin-left: 10px;
}
.ft-hero-section-banner-wrapper .hero-content .hero-img {
  position: absolute;
  right: -100px;
  bottom: 0;
}

/* Demos Section */
.demos-section {
  z-index: 0;
  background-color: var(--color-black);
}
.demos-section .title-wrapper {
  margin-bottom: 45px;
}
.demos-section .title-wrapper .section-title {
  color: var(--color-white);
}
.nav-tabs {
  gap: 30px;
  border: none;
  justify-content: center;
}
.nav-tabs .nav-link {
  gap: 10px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--color-heading);
  padding: 15px 34px 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
  border: none;
  background-color: var(--color-white);
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}
.nav-tabs .nav-link:focus-visible,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus, 
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  border: none;
  color: var(--color-white);
  background-color: var(--color-primary);
}
.demos-section .shape-parallax-list li {
  position: absolute;
  z-index: -1;
}
.demos-section .shape-parallax-list li:nth-child(1) {
  right: 166px;
  bottom: 0;
}
.preview-box a.demo-preview-img {
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
  background: var(--color-white);
  box-shadow: 0px 4px 63px 0px rgba(15, 28, 51, 0.10);
}
.preview-box .content h3.title a {
  font-size: 32px;
  font-weight: 600;
  color: var(--color-white);
  text-transform: capitalize;
}

/* Layouts Marquee Section */
.layout-section {
  z-index: 0;
  position: relative;
  padding: 112px 0 100px 0;
  background-color: #f6f6f6;
}
.layout-section .section-title {
  margin-bottom: 0;
}
.layout-section .block-images-wrapper .testimonial-item-wrapper img {
  margin-right: -30px;
}
.layout-section .shape-parallax-list li {
  position: absolute;
  z-index: -1;
}
.layout-section .shape-parallax-list li:nth-child(1) {
  top: 55px;
  right: 0;
}
.layout-section .shape-parallax-list li:nth-child(2) {
  bottom: -35px;
  left: 115px;
}

/* Features Section */
.feature-section {
  background-color: var(--color-white);
  position: relative;
  z-index: 0;
  padding: 130px 0;
}
.feature-section .title-wrapper {
  position: relative;
  margin-bottom: 50px;
}
.feature-section .title-wrapper .section-title {
  font-size: 36px;
  line-height: 40px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-section .title-wrapper .para-text {
  font-size: 17px;
  line-height: 28px;
}

.ft-card {
  position: relative;
}
.ft-card .icon {
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin-bottom: 20px;
}
.ft-card .icon img {
  width: 70px;
}
.ft-card .card-title {
  margin-bottom: 19px;
  line-height: 26px;
}
.ft-card .card-title a {
  color: #000;
  font-family: var(--font-outfit);
  font-size: 1.125rem;
  font-weight: 500;
  text-transform: capitalize;
}
.ft-card .card-info {
  font-family: var(--font-roboto);
  font-weight: 400;
  font-size: 1rem;
  line-height: 26px;
  color: #6B707F;
  margin-bottom: 24px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ft-card .card-btn {
  font-family: var(--font-roboto);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 26px;
  color: #1D2746;
  border: 1px solid var(--title-font);
  border-radius: 100px;
  padding: 6px 21px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ft-card:hover .icon img {
  -webkit-animation: pulse 0.5s forwards;
          animation: pulse 0.5s forwards;
}
.ft-card--style-2 .card-icon-wrapper {
  gap: 20px;
  width: 100%;
  height: 200px;
  padding: 30px;
  flex-direction: column;
  border-radius: 25px;
  background: var(--color-black);
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.05);
  display: inline-block;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ft-card--style-2 .card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
  color: var(--color-white);
}
.ft-card--style-2:hover .card-icon-wrapper {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
.ft-card--style-2:hover .icon img {
  -webkit-animation: unset;
          animation: unset;
}

/* Call To Action Section */
.call-to-action-section {
  z-index: 0;
  position: relative;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/cta-bg.jpg);
}
.call-to-action-section:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  position: absolute;
  opacity: 0.9;
  background-color: #212429b8;
}
.call-to-action-section .title-wrapper {
  padding: 120px 0;
}
.call-to-action-section .title-wrapper .section-title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  color: var(--color-white);
}
.call-to-action-section .title-wrapper .para-text {
  color: var(--color-white);
  font-weight: 500;
  line-height: 24px;
  padding-right: 10px;
  margin-bottom: 35px;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/*=====================================
//  Mobile menu
======================================*/
.offscreen-navigation .mobile-menu > li:last-child {
  border-bottom: 0;
}
.offscreen-navigation .mobile-menu > li > a {
  color: var(--color-white);
  font-size: 16px;
  padding: 12px 30px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  width: 100%;
}
.offscreen-navigation .mobile-menu > li > a:hover {
  background-color: #f8f8f8;
}
.offscreen-navigation .mobile-menu > li > a:hover::before {
  color: var(--color-primary);
}
.offscreen-navigation .mobile-menu > li > a:hover::after {
  color: var(--color-primary);
}
.offscreen-navigation .mobile-menu > li > a.opened {
  background-color: #f8f8f8;
}
.offscreen-navigation .sub-menu {
  display: none;
  background-color: #ffffff;
}
.offscreen-navigation .sub-menu li.menu-item-has-children > a::after, .offscreen-navigation .sub-menu li.menu-item-has-children > a::before {
  right: 40px;
}
.offscreen-navigation .sub-menu li a {
  border-top: 1px solid #f1f1f1;
  padding: 25px 40px;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation .sub-menu li a:hover {
  background-color: rgba(0, 102, 255, 0.05);
}
.offscreen-navigation .sub-menu li .sub-menu li a {
  padding: 25px 50px;
}
.offscreen-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offscreen-navigation ul li > a {
  display: block;
  position: relative;
  color: #000000;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li > a:hover {
  color: var(--color-primary);
}
.offscreen-navigation ul li.menu-item-has-children > a:after {
  color: var(--color-white);
  content: "\f067";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li.menu-item-has-children > a:before {
  color: #999999;
  content: "\f068";
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  right: 20px;
  position: absolute;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.offscreen-navigation ul li.menu-item-has-children > a.opened:after {
  opacity: 0;
  visibility: hidden;
}
.offscreen-navigation ul li.menu-item-has-children > a.opened:before {
  opacity: 1;
  visibility: visible;
}

.ft-slide-nav {
  position: absolute;
  background: #000000;
  opacity: 0.8;
  width: 100%;
  left: 0;
  display: none;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
  top: 100%;
  z-index: 99;
  padding: 50px 0;
}

.ft-header-menu {
  padding: 12px 15px;
  z-index: 999;
  background: var(--color-black);
  -webkit-box-shadow: 0 12px 20px 0 rgba(26, 71, 232, 0.16);
          box-shadow: 0 12px 20px 0 rgba(26, 71, 232, 0.16);
}
@media only screen and (min-width: 992px) {
  .ft-header-menu {
    display: none;
  }
}

.mean-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

body .sidebarBtn {
  display: block;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar {
  background: var(--color-primary);
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
body .sidebarBtn .bar:nth-child(2), body .sidebarBtn .bar:nth-child(3) {
  width: 25px;
  margin-left: 5px;
}
body .sidebarBtn .bar:last-child {
  margin-bottom: 0;
}

body.slidemenuon .sidebarBtn .bar:nth-child(2), body.slidemenuon .sidebarBtn .bar:nth-child(3) {
  opacity: 0;
}
body.slidemenuon .sidebarBtn .bar:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(7px, 7px);
  transform: rotate(45deg) translate(7px, 7px);
}
body.slidemenuon .sidebarBtn .bar:nth-child(4) {
  -webkit-transform: rotate(-45deg) translate(8px, -8px);
  transform: rotate(-45deg) translate(8px, -8px);
}