@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 13px 13px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 30px;
  height: 19px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1.5px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -8px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -8px, 0) rotate(-45deg);
          transform: translate3d(0, -8px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
Bootstrap 5 defaults:
xs: 0px (default, no media query needed)
sm: 576px
md: 768px
lg: 992px
xl: 1200px
xxl: 1400px
*/
.color-gold-100 {
  color: #F9F4E1;
}

.color-gold-200 {
  color: #F1E2A9;
}

.color-gold-300 {
  color: #EACB6B;
}

.color-gold-400 {
  color: #DDB550;
}

.color-gold-500 {
  color: #B79229;
}

.color-gold-600 {
  color: #A7831E;
}

.color-gold-700 {
  color: #9E7B19;
}

.color-gold-800 {
  color: #5D4D1E;
}

.color-dark-100 {
  color: #F4F4F5;
}

.color-dark-200 {
  color: #E9E9EA;
}

.color-dark-300 {
  color: #C9CACD;
}

.color-dark-400 {
  color: #A8ABB1;
}

.color-dark-500 {
  color: #73767C;
}

.color-dark-600 {
  color: #535862;
}

.color-dark-700 {
  color: #1C1C1C;
}

.color-dark-800 {
  color: #000000;
}

.bg-gold-100 {
  background-color: #F9F4E1;
}

.bg-gold-200 {
  background-color: #F1E2A9;
}

.bg-gold-300 {
  background-color: #EACB6B;
}

.bg-gold-400 {
  background-color: #DDB550;
}

.bg-gold-500 {
  background-color: #B79229;
}

.bg-gold-600 {
  background-color: #A7831E;
}

.bg-gold-700 {
  background-color: #9E7B19;
}

.bg-gold-800 {
  background-color: #5D4D1E;
}

.bg-dark-100 {
  background-color: #F4F4F5;
}

.bg-dark-200 {
  background-color: #E9E9EA;
}

.bg-dark-300 {
  background-color: #C9CACD;
}

.bg-dark-400 {
  background-color: #A8ABB1;
}

.bg-dark-500 {
  background-color: #73767C;
}

.bg-dark-600 {
  background-color: #535862;
}

.bg-dark-700 {
  background-color: #1C1C1C;
}

.bg-dark-800 {
  background-color: #000000;
}

.border-gold-100 {
  border-color: #F9F4E1;
}

.border-gold-200 {
  border-color: #F1E2A9;
}

.border-gold-300 {
  border-color: #EACB6B;
}

.border-gold-400 {
  border-color: #DDB550;
}

.border-gold-500 {
  border-color: #B79229;
}

.border-gold-600 {
  border-color: #A7831E;
}

.border-gold-700 {
  border-color: #9E7B19;
}

.border-gold-800 {
  border-color: #5D4D1E;
}

.border-dark-100 {
  border-color: #F4F4F5;
}

.border-dark-200 {
  border-color: #E9E9EA;
}

.border-dark-300 {
  border-color: #C9CACD;
}

.border-dark-400 {
  border-color: #A8ABB1;
}

.border-dark-500 {
  border-color: #73767C;
}

.border-dark-600 {
  border-color: #535862;
}

.border-dark-700 {
  border-color: #1C1C1C;
}

.border-dark-800 {
  border-color: #000000;
}

/*--------------------------------------------------------------
>>> Base Styles
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", Inter, Arial, sans-serif;
  color: #1C1C1C;
  font-size: 16px;
  font-weight: 300;
  padding-top: 79px;
}
@media (max-width: 767.98px) {
  body {
    padding-top: 61px;
  }
}
@media (max-width: 1199.98px) {
  body {
    padding-top: 66px;
  }
}

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

h1, h2, h3, h4 {
  font-family: "Source Sans", Open Sans, Segoi UI, Arial, Helvetica;
}

figure {
  margin: 0;
}

::-moz-selection {
  background: #F1E2A9;
  color: #1C1C1C;
}

::selection {
  background: #F1E2A9;
  color: #1C1C1C;
}

s {
  text-decoration: none;
}
@media (min-width: 768px) {
  s {
    display: block;
  }
}

a {
  color: #9E7B19;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
a:hover {
  color: #B79229;
  text-decoration: none;
}

p {
  font-size: 1.1rem;
  line-height: 1.4;
}

strong {
  font-weight: 600;
}

sup {
  font-size: 10px;
}

:target::before {
  content: "";
  display: block;
  height: 100px; /* Adjust this value to your navbar height */
  margin-top: -80px;
}

ul {
  margin: 0;
}
ul > li ul {
  margin: 0;
}

/*--------------------------------------------------------------
>>> General
--------------------------------------------------------------*/
/* =====| Backgrounds |===== */
.bg-light-blue {
  background: #E0F2FE;
}

.bg-light-green {
  background: #E7F7EE;
}

.bg-light-gold {
  background: #FFF4EB;
}

.bg-light-gray {
  background: #EFF0F6;
}

.bg-light-red {
  background: #FFF4EB;
}

.bg-light-gray {
  background: #F4F4F5;
  border-color: #E9E9EA;
}

.bg-light-gold {
  background: #F9F4E1;
  border-color: #F1E2A9;
}

.bg-green {
  background: #285847;
}

.bg-gray {
  background: #f5f5f5;
}

/* =====| Text |===== */
.wrap-text {
  text-wrap: wrap;
}

.text-brown {
  color: #BB8C32;
}

.text-green {
  color: #285847;
}

.text-orange {
  color: #BB8C32;
}

.text-black {
  color: #000;
}

/* =====| Containers |===== */
.wrapper-930 {
  max-width: 960px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .wrapper-930 {
    padding: 0 30px;
  }
}

.wrapper-1150 {
  max-width: 1180px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .wrapper-1150 {
    padding: 0 30px;
  }
}

.wrapper-1177 {
  max-width: 1207px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .wrapper-1177 {
    padding: 0 30px;
  }
}

.wrapper-1183 {
  max-width: 1213px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .wrapper-1183 {
    padding: 0 30px;
  }
}

.wrapper-1200 {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  .wrapper-1200 {
    padding: 0 30px;
  }
}

.container {
  max-width: 1310px;
}

@media (max-width: 767.98px) {
  .container, .container-fluid {
    padding: 0 30px;
  }
}

/* =====| Links |===== */
.link-brown {
  color: #BB8C32;
  border-bottom: 1px dashed #BB8C32;
  display: inline-block;
}
.link-brown:hover {
  color: #457377;
  border-color: #457377;
}

.link-angle-right-dark {
  color: #333;
  font-weight: 700;
  position: relative;
  display: inline-block;
  -webkit-transition: color 0.35s;
  transition: color 0.35s;
}
.link-angle-right-dark:after {
  content: " >";
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.35s, color 0.1s;
  transition: right 0.35s, color 0.1s;
  color: inherit;
}
.link-angle-right-dark:hover {
  color: #BB8C32;
}
.link-angle-right-dark:hover:after {
  right: -15px;
}

.link-angle-right-brown {
  color: #BB8C32;
  font-weight: 600;
  position: relative;
  display: inline-block;
}
.link-angle-right-brown:after {
  content: " >";
  position: absolute;
  top: 50%;
  right: -12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.link-angle-right-brown:hover:after {
  right: -15px;
}

.link-angle-left-green {
  color: #285847;
  font-weight: 700;
  position: relative;
  display: inline-block;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  font-weight: 400;
}
.link-angle-left-green:after {
  content: "< ";
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translateY(-13px);
          transform: translateY(-13px);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.link-angle-left-green:hover:after {
  left: -20px;
}

.link-green-underlined {
  display: inline-block;
  color: #285847;
  border-bottom: 1px dashed #285847;
}
.link-green-underlined:hover {
  color: #BB8C32;
  border-color: brown;
}

.g-recaptcha * {
  visibility: hidden !important;
}

.jfy-minimal-list {
  padding-left: 16px;
}
.jfy-minimal-list > li {
  margin-bottom: 15px;
}

/* =====| Chat Icom |===== */
.hubspot-messages-icon {
  background-image: url("../images/brand/Chat-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.home-banner {
  background: #171717;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 1080px;
}
@media (min-width: 1200px) {
  .home-banner {
    min-height: 1500px;
  }
}
@media (max-width: 991.98px) {
  .home-banner {
    min-height: 800px;
  }
}
.home-banner .container {
  position: relative;
  z-index: 10;
  height: 100vh;
}
.home-banner__inner {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  width: 100%;
  padding: 0 20px;
  z-index: 100;
}
@media (max-width: 991.98px) {
  .home-banner__inner {
    background: rgba(0, 0, 0, 0.4);
    padding: 30px;
  }
}
.home-banner__title {
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .home-banner__title {
    font-size: 32px;
    line-height: 42px;
  }
}
@media (max-width: 767.98px) {
  .home-banner__text {
    font-size: 16px !important;
    line-height: 26px;
  }
}
.home-banner__demo-btn {
  margin-left: 20px;
}
@media (max-width: 575.98px) {
  .home-banner__demo-btn {
    margin-left: 0;
    margin-top: 20px;
  }
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-text {
  max-width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-68%, -58%);
          transform: translate(-68%, -58%);
}
@media (max-width: 767.98px) {
  .hero-text {
    max-width: 181px;
    -webkit-transform: translate(-66%, -56%);
            transform: translate(-66%, -56%);
  }
}
@media (max-width: 575.98px) {
  .hero-text {
    max-width: 112px;
    -webkit-transform: translate(-71%, -60%);
            transform: translate(-71%, -60%);
  }
}

@media (max-width: 575.98px) {
  .home-banner__buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* =====| Industries |===== */
.solution-tabs .nav-pills {
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .solution-tabs .nav-pills {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.solution-tabs .nav-pills .nav-item {
  margin-right: 20px;
}
.solution-tabs .nav-pills .nav-item:last-child {
  margin-right: 0;
}
.solution-tabs .nav-pills .nav-link {
  background: #fff;
  color: #73767C;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .solution-tabs .nav-pills .nav-link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.solution-tabs .nav-pills .nav-link.active {
  background: #fff;
  color: #9E7B19;
}
.solution-tabs .nav-pills .nav-link.active::after {
  border-bottom-color: #9E7B19;
}
.solution-tabs .nav-pills .nav-link:hover:not(.active) {
  color: #A7831E;
}
.solution-tabs .nav-pills .nav-link::after {
  content: "";
  display: block;
  border-bottom: 3px solid transparent;
  width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding-top: 10px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}

.solution-tab {
  background: #f5f5f5;
}
.solution-tab__icon {
  display: inline-block;
  margin-right: 10px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 991.98px) {
  .solution-tab__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.solution-tab__icon img,
.solution-tab__icon svg {
  height: 30px;
  width: auto;
  display: block;
}
.solution-tab__name {
  font-size: 18px;
  font-weight: 500;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  .solution-tab__name {
    font-size: 16px;
  }
}

.solution-box {
  padding: 36px;
  min-height: 616px;
}
@media (max-width: 991.98px) {
  .solution-box {
    max-width: 410px;
    margin: 0 auto 40px;
    min-height: auto;
  }
}
@media (max-width: 767.98px) {
  .solution-box {
    padding: 24px;
  }
}
.solution-box__title {
  line-height: 24px !important;
}
.solution-box__image img {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .solution-box.box-custom {
    min-height: 659px;
  }
}

.tab-control {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(158, 123, 25, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, -webkit-transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease;
  transition: background 0.3s ease, transform 0.2s ease, -webkit-transform 0.2s ease;
}
@media (max-width: 767.98px) {
  .tab-control {
    display: none;
  }
}
.tab-control:hover {
  background: #9E7B19;
  -webkit-transform: translateY(-50%) scale(1.1);
          transform: translateY(-50%) scale(1.1);
}
.tab-control:active {
  -webkit-transform: translateY(-50%) scale(0.95);
          transform: translateY(-50%) scale(0.95);
}
.tab-control--left {
  left: 20px;
}
@media (min-width: 1200px) {
  .tab-control--left {
    left: -30px;
  }
}
.tab-control--right {
  right: 20px;
}
@media (min-width: 1200px) {
  .tab-control--right {
    right: -30px;
  }
}

.jiffy-solutions {
  position: relative;
}
.jiffy-solutions .wrapper-1200 {
  position: relative;
}

/* =====| Metrics |===== */
.home-metrics__inner {
  background: #F9F4E1;
  padding: 48px;
  text-align: center;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .home-metrics .jiffy-metric {
    margin-bottom: 40px;
  }
}
.home-metrics .jiffy-metric__figure {
  color: #5D4D1E;
  line-height: 48px;
  font-weight: 600;
}
.home-metrics .jiffy-metric__number {
  line-height: 22px;
  color: #111;
  font-weight: 400;
  margin-bottom: 0;
}

.metric-cs-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 266px 35px 1fr;
  grid-template-columns: 266px 1fr; /* left fixed, right flexible */
  gap: 35px; /* gutter between them */
}
@media (max-width: 991.98px) {
  .metric-cs-wrapper {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr; /* stack */
  }
}

.jiffy-metrics-iconed {
  text-align: center;
}
.jiffy-metrics-iconed .jiffy-metric__icon {
  margin-bottom: 16px;
}
@media (max-width: 991.98px) {
  .jiffy-metrics-iconed .jiffy-metric__icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 991.98px) {
  .jiffy-metrics-iconed .jiffy-metric {
    margin-bottom: 50px;
  }
}
.jiffy-metrics-iconed .jiffy-metric__figure {
  color: #A7831E;
  font-weight: 600;
  line-height: 42px;
}
@media (max-width: 991.98px) {
  .jiffy-metrics-iconed .jiffy-metric__figure {
    font-size: 30px;
    margin-bottom: 0px;
  }
}
.jiffy-metrics-iconed .jiffy-metric__number {
  line-height: 22px;
  color: #111;
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .jiffy-metrics-iconed .jiffy-metric__number {
    line-height: 20px;
  }
}

.metrics-home .jiffy-metric__figure {
  color: #9E7B19;
}

/* =====| Casestudies |===== */
.jiffy-casestudy-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #1C1C1C !important;
  margin-bottom: 50px;
}
.jiffy-casestudy-box__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 125px;
          flex: 0 0 125px;
  max-width: 125px;
  margin-right: 30px;
}
.jiffy-casestudy-box:hover, .jiffy-casestudy-box:visted .jiffy-casestudy-box:focus {
  color: #1C1C1C !important;
}

.jiffy-casestudy__details, .jiffy-testimonial__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 991.98px) {
  .jiffy-casestudy__details, .jiffy-testimonial__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.jiffy-casestudy blockquote, .jiffy-testimonial blockquote {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .jiffy-casestudy blockquote, .jiffy-testimonial blockquote {
    margin-bottom: 30px;
  }
}
.jiffy-casestudy__headshot, .jiffy-testimonial__headshot {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 119px;
          flex: 0 0 119px;
  margin-right: 24px;
  max-width: 119px;
}
@media (max-width: 991.98px) {
  .jiffy-casestudy__headshot, .jiffy-testimonial__headshot {
    margin-bottom: 10px;
    max-width: auto;
  }
}
@media (max-width: 991.98px) {
  .jiffy-casestudy__info, .jiffy-testimonial__info {
    text-align: center;
  }
}
.jiffy-casestudy__logo img, .jiffy-testimonial__logo img {
  display: inline-block !important;
}
@media (max-width: 991.98px) {
  .jiffy-casestudy__logo, .jiffy-testimonial__logo {
    text-align: center;
    margin-bottom: 20px;
  }
}

.jiffy-testimonial-slider .slick-dots {
  position: relative;
  top: 100px;
}

.jiffy-testimonial-slide {
  text-align: center;
  background: #F9F4E1;
  padding: 50px 50px 50px;
  margin-bottom: 20px;
}
.jiffy-testimonial-slide blockquote {
  margin-bottom: 30px;
}
.jiffy-testimonial-slide .jiffy-testimonial__details {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}

/* =====| Casestudy Slider |===== */
.jiffy-casestudy-slide, .jiffy-testimonial {
  background: #F9F4E1;
  padding: 50px;
}

/* =====| Platform & Products |===== */
.jiffy-showcase .tab-content {
  background: #285847;
}
@media (max-width: 991.98px) {
  .jiffy-showcase .tab-content {
    border-radius: 10px;
    overflow: hidden;
  }
}
.jiffy-showcase .section-header {
  max-width: 760px;
  margin: 0 auto;
}

.jiffy-showcase-tabs .nav-pills {
  margin-bottom: 48px;
}
.jiffy-showcase-tabs .nav-pills .nav-link {
  border-radius: 40px;
}
.jiffy-showcase-tabs .nav-pills .nav-link.active {
  background: #E8EEEC;
  color: #285847;
  font-weight: 800;
}

.showcase-box {
  background: #285847;
  color: #fff;
  padding: 30px 50px 30px 60px;
  min-height: 501px;
}
@media (max-width: 991.98px) {
  .showcase-box {
    padding: 40px;
  }
}
@media (max-width: 991.98px) {
  .showcase-box__title {
    font-size: 24px;
    line-height: 34px;
  }
}
.showcase-box__subtitle {
  font-size: 13px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .showcase-box__inner {
    max-width: 544px;
    margin-left: auto;
  }
}

#industrySwitch, .typed-cursor {
  color: #EBC57B;
}

.typed-cursor {
  font-weight: lighter;
}

.scrolling-banner {
  background: #8E3A59;
  padding: 30px 0;
  margin-top: 200px;
}
.scrolling-banner .jfy-scroller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.scrolling-banner .slide {
  display: inline-block;
  padding: 0 2rem; /* spacing between repeats */
}
.scrolling-banner .marque-text {
  color: #fff;
  font-size: 25px;
  line-height: 25px;
  white-space: nowrap;
  margin: 0;
}

/* =====| Underlined Title |===== */
.jfy-mini-underline-title {
  position: relative;
}
.jfy-mini-underline-title:after {
  content: "";
  position: absolute;
  bottom: -14px; /* Adjust the distance of the underline from the link */
  left: 0;
  width: 40px;
  border-bottom: 3px solid #333;
}

.underline-green {
  color: #B79229;
}
.underline-green:after {
  border-color: #B79229;
}

.underline-white {
  color: #fff;
}
.underline-white:after {
  border-color: #fff;
}

/* =====| Box Headings |===== */
.box-heading {
  display: inline-block;
  text-align: center;
  padding: 11px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1C1C1C;
}
@media (max-width: 991.98px) {
  .box-heading {
    font-size: 18px;
  }
}
.box-heading__blue {
  background: rgba(66, 158, 189, 0.2);
}
.box-heading__orange {
  background: #ECE0CE;
}
.box-heading__gray {
  background: rgba(40, 88, 71, 0.1);
}
.box-heading__greney {
  background: rgba(40, 88, 71, 0.2);
}

.jfy-hero {
  background-color: #1C1C1C;
  color: #fff;
  padding: 70px 0;
}
.jfy-hero__thumb, .jfy-hero__video {
  max-width: 520px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .jfy-hero__thumb, .jfy-hero__video {
    margin-bottom: 30px;
  }
}
.jfy-hero__inner {
  max-width: 646px;
}

@media (max-width: 767.98px) {
  .jiffy-hero__title {
    font-size: 35px !important;
    line-height: 45px !important;
  }
}
@media (max-width: 991.98px) {
  .jiffy-hero__image {
    text-align: center;
    margin: 0 auto 30px;
  }
}
@media (max-width: 767.98px) {
  .jiffy-hero__inner {
    text-align: center;
  }
}
.jiffy-hero__title {
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .jiffy-hero__title {
    margin-bottom: 20px;
  }
}

.jiffy-waves {
  background-image: url("../images/platform/overview/waves.svg");
  background-position: 50% 120%;
  background-size: 1900px;
  background-repeat: repeat-x;
}

.jfy-shady-banner {
  color: #fff;
  background: url("../images/platform/no-code/shady-bg.png");
  background-position: center center;
  background-size: cover;
  border-radius: 10px;
}
.jfy-shady-banner__shade {
  padding: 70px 60px;
}
@media (max-width: 991.98px) {
  .jfy-shady-banner__shade {
    padding: 40px;
  }
}
.jfy-shady-banner__inner {
  max-width: 552px;
}

.jfy-hero-fullbleed {
  color: #fff;
  background-color: #285847;
}
@media (min-width: 1200px) {
  .jfy-hero-fullbleed {
    height: 462px;
  }
}
.jfy-hero-fullbleed__inner {
  max-width: 640px;
  padding-top: 93px;
  padding-bottom: 78px;
}

.jfy-hero-narrow__thumb {
  max-width: 424px;
}
.jfy-hero-narrow__inner {
  max-width: 435px;
}

.jfy-iconbox {
  background: #fff;
  padding: 40px;
  max-width: 541px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  .jfy-iconbox {
    margin: 0 auto 70px;
  }
}
@media (max-width: 767.98px) {
  .jfy-iconbox {
    padding: 30px 25px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
}
.jfy-iconbox__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 17%;
          flex: 0 0 17%;
  width: 78px;
  height: 78px;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .jfy-iconbox__icon {
    width: 70px;
    height: 70px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin: 0 auto 15px;
  }
}
.jfy-iconbox.linked {
  color: #333;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.jfy-iconbox.linked:hover {
  -webkit-box-shadow: 0px 10px 40px 10px rgba(204, 204, 204, 0.5);
          box-shadow: 0px 10px 40px 10px rgba(204, 204, 204, 0.5);
}

.jfy-borderless {
  max-width: 541px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .jfy-borderless {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-bottom: 50px;
  }
}
.jfy-borderless__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 78px;
          flex: 0 0 78px;
  width: 78px;
  height: 78px;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .jfy-borderless__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
  }
}

.jfy-boxless {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 65px;
}
@media (max-width: 767.98px) {
  .jfy-boxless {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.jfy-boxless__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8%;
          flex: 0 0 8%;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .jfy-boxless__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
  }
}
.jfy-boxless__text {
  margin-bottom: 10px;
}

.jfy-boxless-simple {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .jfy-boxless-simple {
    margin: 0 auto 50px;
  }
}

.jfy-simple {
  max-width: 541px;
}

.jfy-resourcebox {
  max-width: 400px;
  padding: 24px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #DDD;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  display: block;
  color: #333;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .jfy-resourcebox {
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
.jfy-resourcebox__icon {
  position: relative;
  margin-bottom: 25px;
}
.jfy-resourcebox__title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  margin-bottom: 20px;
}
.jfy-resourcebox__label {
  display: inline-block;
  position: absolute;
  font-size: 13px;
  line-height: 13px;
  color: #fff;
  background: #BB8C32;
  top: 0;
  left: 0;
  font-weight: 400;
  border-radius: 5px;
  padding: 5px 15px;
}

.jfy-graybox {
  padding: 60px 100px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .jfy-graybox {
    padding: 40px;
  }
}

.jfy-stat {
  background: #fff;
  text-align: center;
  padding: 47px;
  width: 250px;
  height: 285px;
}
@media (max-width: 767.98px) {
  .jfy-stat {
    margin-left: auto;
    margin-right: auto;
  }
}
.jfy-stat__text {
  line-height: 1.3 !important;
}

.jfy-imagebox {
  display: block;
  margin-right: 25px;
  max-width: 270px;
  height: 277px;
  padding: 24px 21px;
  background: #fff;
  color: #333;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.jfy-imagebox:hover {
  -webkit-box-shadow: 0px 10px 40px 3px rgba(204, 204, 204, 0.9);
          box-shadow: 0px 10px 40px 3px rgba(204, 204, 204, 0.9);
}
.jfy-imagebox:hover .jfy-imagebox__title {
  color: #BB8C32;
}
.jfy-imagebox:hover .jfy-imagebox__text {
  color: #333;
}
@media (max-width: 767.98px) {
  .jfy-imagebox {
    margin: 0 auto 30px;
  }
}
.jfy-imagebox__image {
  margin-bottom: 24px;
}
.jfy-imagebox__title {
  margin-bottom: 6px;
}

.jfy-clientbox {
  padding: 70px;
}
@media (max-width: 767.98px) {
  .jfy-clientbox {
    padding: 40px;
  }
}
@media (max-width: 767.98px) {
  .jfy-clientbox__image {
    margin-bottom: 30px;
  }
}

.jfy-linkbox {
  display: block;
  color: #333;
  border-radius: 10px;
  border: 1px solid #DDD;
}
.jfy-linkbox__title {
  line-height: 28px !important;
}

.jfy-quotebox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #DDD;
  border-radius: 10px;
}
.jfy-quotebox__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  width: 280px;
}
.jfy-quotebox__inner {
  padding: 40px;
}
.jfy-quotebox__text {
  font-size: 20px;
  line-height: 30px;
}

.jfy-feature {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .jfy-feature {
    margin-bottom: 30px;
  }
}
@media (max-width: 767.98px) {
  .jfy-feature {
    display: block;
    text-align: center;
    margin: 0 auto 40px;
  }
}
.jfy-feature__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70px;
          flex: 0 0 70px;
  max-width: 70px;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .jfy-feature__icon {
    margin-bottom: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
.jfy-feature__icon img {
  width: auto;
}
.jfy-feature__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
}
@media (max-width: 991.98px) {
  .jfy-feature__title {
    font-size: 18px;
  }
}
@media (max-width: 767.98px) {
  .jfy-feature__title {
    margin-bottom: 5px;
  }
}

.callout-box {
  background-color: #1C1C1C;
  background-image: url("../images/abstract/callout-bg.png");
  background-size: cover;
  border-radius: 10px;
  padding: 44px 60px;
  color: #fff;
}

.callout-text {
  font-size: 24px;
  line-height: 35px;
  font-weight: 600;
}
@media (max-width: 1199px) {
  .callout-text {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  .callout-box {
    padding: 30px;
  }
  .callout-text {
    margin-bottom: 30px;
  }
}
.jfy-asset-box {
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #DDD;
}
.jfy-asset-box__inner {
  max-width: 684px;
}
.jfy-asset-box .jfy-resourcebox {
  max-width: 350px;
  margin-bottom: 0;
}

.hover-box {
  text-align: center;
  display: block;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  -webkit-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
  overflow: hidden;
  color: #333;
}
.hover-box__inner {
  padding: 30px 20px;
}
.hover-box:hover {
  color: #333;
  -webkit-box-shadow: 0px 10px 40px 3px rgba(204, 204, 204, 0.9);
          box-shadow: 0px 10px 40px 3px rgba(204, 204, 204, 0.9);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.postbox {
  display: block;
  border: 1px solid #DDD;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  border-radius: 10px;
  max-width: 350px;
  margin: 0 auto 50px;
}
.postbox__meta {
  display: block;
  margin-bottom: 15px;
}
.postbox__thumb {
  margin-bottom: 20px;
  position: relative;
}
.postbox__label {
  position: absolute;
  top: 0;
  left: 0;
  background: #BB8C32;
  color: #fff;
  font-weight: 400;
  display: inline-block;
  border-radius: 5px;
  font-size: 13px;
  line-height: 13px;
  padding: 5px 15px;
}
.postbox__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.post-news {
  padding: 33px 24px;
  min-height: 240.6px;
}
.post-news .postbox__title {
  overflow: hidden;
  margin-bottom: 20px;
}

.post-insights {
  padding: 33px 24px;
  min-height: 370.8px;
}
.post-insights .postbox__title {
  overflow: hidden;
  margin-bottom: 20px;
}

.post-blog {
  padding: 24px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.post-blog .postbox__thumb {
  height: 150px;
  overflow: hidden;
  border-radius: 10px;
}
.post-blog .postbox__title {
  color: #333;
  height: 54px;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.post-blog:hover {
  -webkit-box-shadow: 0px 8px 30px 0px rgba(204, 204, 204, 0.6);
          box-shadow: 0px 8px 30px 0px rgba(204, 204, 204, 0.6);
}
.post-blog:hover .postbox__title {
  color: #BB8C32;
}

.post-guide {
  padding: 24px;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.post-guide .postbox__thumb {
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
}
.post-guide .postbox__title {
  font-family: "Source Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #333;
  height: 48px;
  overflow: hidden;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  margin-bottom: 0;
}
.post-guide:hover {
  -webkit-box-shadow: 0px 8px 30px 0px rgba(204, 204, 204, 0.6);
          box-shadow: 0px 8px 30px 0px rgba(204, 204, 204, 0.6);
}
.post-guide:hover .postbox__title {
  color: #BB8C32;
}

.post-event {
  padding: 24px;
}
.post-event .postbox__thumb {
  border-radius: 10px;
  margin-bottom: 20px;
  height: 150px;
  overflow: hidden;
  border: 1px solid #DDD;
}
.post-event .postbox__meta {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}
.post-event .postbox__title {
  margin-bottom: 20px;
  height: 60px;
  overflow: hidden;
}

.jfy-problem, .cs-problem {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  .jfy-problem, .cs-problem {
    margin-bottom: 50px;
  }
}

.jfy-ps, .cs-ps {
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  .jfy-ps, .cs-ps {
    margin-bottom: 30px;
  }
}
.jfy-ps__title, .cs-ps__title {
  font-size: 20px;
  line-height: 29px;
}
@media (max-width: 991.98px) {
  .jfy-ps__title, .cs-ps__title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.jfy-demobox {
  background-color: #285847;
  background-image: url("../images/platform/overview/waves.svg");
  background-size: 1150px;
  background-repeat: repeat-x;
  color: #fff;
  border-radius: 10px;
  padding: 44px 60px;
}
@media (max-width: 991.98px) {
  .jfy-demobox {
    padding: 40px;
  }
}
@media (max-width: 991.98px) {
  .jfy-demobox__text {
    margin-bottom: 30px;
  }
}

/* =====| Video |===== */
.cs-video_wrapper, .jfy-video-wrapper {
  text-align: center;
}

.cs-video_thumbnail, .jfy-video-thumbnail {
  max-width: 568px;
  width: 100%;
  display: inline-block;
  border-radius: 10px;
}

#csVideoOne {
  margin-bottom: 100px;
}
@media (max-width: 991.98px) {
  #csVideoOne {
    margin-top: 0;
    margin-bottom: 50px;
  }
}

/* =====| Percentage Brochure |===== */
.jfy-perc-brochure__inner {
  background: #F5F5F5;
  border-radius: 10px;
  padding: 48px 48px 0px;
}
@media (max-width: 767.98px) {
  .jfy-perc-brochure__inner {
    padding: 30px 30px 0;
  }
}
.jfy-perc-brochure__btn {
  font-size: 20px;
  border-radius: 0 0 10px 10px;
  padding: 16px;
}
.jfy-perc-brochure__btn:hover {
  cursor: pointer;
}

.perc-data {
  max-width: 683px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px dashed rgba(102, 102, 102, 0.5);
}
.perc-data span {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .perc-data span {
    display: block !important;
    text-align: center;
    margin-right: 0 !important;
    margin-top: 10px;
  }
}
.perc-data__icon {
  margin-right: 24px;
}
.perc-data__figure {
  color: #285847;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-weight: 700;
}
.perc-data__text {
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  .perc-data__text {
    font-size: 20px;
  }
}

.jfy-testimonial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .jfy-testimonial {
    display: block;
    max-width: 320px;
    margin: 0 auto;
  }
}
.jfy-testimonial__image {
  background: #E9E6E1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 23%;
          flex: 0 0 23%;
  max-width: 23%;
}
@media (max-width: 1199.98px) {
  .jfy-testimonial__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
    max-width: 32%;
  }
}
@media (max-width: 991.98px) {
  .jfy-testimonial__image {
    max-width: 100%;
  }
}
.jfy-testimonial__inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 77%;
          flex: 0 0 77%;
  max-width: 77%;
  padding: 40px 40px 30px;
}
@media (max-width: 1199.98px) {
  .jfy-testimonial__inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 68%;
            flex: 0 0 68%;
    max-width: 68%;
  }
}
@media (max-width: 991.98px) {
  .jfy-testimonial__inner {
    padding: 30px;
    max-width: 100%;
  }
}
.jfy-testimonial__text {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 20px;
}
@media (max-width: 1199.98px) {
  .jfy-testimonial__text {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 15px;
  }
}
.jfy-testimonial__customer {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 20px;
  display: block;
}
@media (max-width: 1199.98px) {
  .jfy-testimonial__customer {
    margin-bottom: 15px;
  }
}
@media (max-width: 991.98px) {
  .jfy-testimonial__customer {
    font-size: 14px;
    line-height: 23px;
  }
}
@media (max-width: 991.98px) {
  .jfy-testimonial__customer span {
    display: block;
  }
}
.jfy-testimonial__logo {
  max-width: 110px;
  margin-bottom: 24px;
}
@media (max-width: 1199.98px) {
  .jfy-testimonial__logo {
    max-width: 140px;
  }
}

.jfy-alternate__thumbnail {
  max-width: 541px;
}
@media (max-width: 991.98px) {
  .jfy-alternate__thumbnail {
    margin-bottom: 40px;
  }
}
.jfy-alternate__inner {
  max-width: 541px;
}

.jiffy-alternate__thumb {
  max-width: 570px;
}
.jiffy-alternate__thumb img {
  width: 100%;
}
@media (max-width: 991.98px) {
  .jiffy-alternate__thumb {
    margin-bottom: 40px;
  }
}
.jiffy-alternate__inner {
  max-width: 541px;
}
.jiffy-alternate .order-lg-2 .jiffy-alternate__thumbnail {
  margin-left: auto;
}
.jiffy-alternate .order-lg-1 .jiffy-alternate__iconed {
  margin-left: 0;
}
.jiffy-alternate__iconed {
  max-width: 532px;
}
@media (min-width: 992px) {
  .jiffy-alternate__iconed {
    margin-left: 26px;
  }
}
.jiffy-alternate__buttons .btn {
  margin-bottom: 10px;
}
.jiffy-alternate__buttons .btn-gold {
  margin-right: 10px;
}
@media (max-width: 767.98px) {
  .jiffy-alternate__buttons .btn-gold {
    margin-right: 0;
  }
}

/* =====| Form |===== */
.jiffy-form__title {
  position: relative;
  margin-bottom: 50px;
}
.jiffy-form__title:after {
  content: "";
  position: absolute;
  bottom: -16px; /* Adjust the distance of the underline from the link */
  left: 0;
  width: 70px;
  border-bottom: 3px solid #285847;
}

/* =====| Formside Logos |===== */
.formside-logos {
  max-width: 470px;
  padding-top: 12px;
}
@media (max-width: 991.98px) {
  .formside-logos {
    margin-top: 50px;
  }
}
.formside-logos__title {
  letter-spacing: 2%;
  margin-bottom: 37px;
}
@media (max-width: 991.98px) {
  .formside-logos__title {
    margin-bottom: 20px;
  }
}
.formside-logos__divider {
  max-width: 350px;
  width: 100%;
  height: 1px;
  margin: 30px 0 20px;
}
@media (max-width: 767.98px) {
  .formside-logos img {
    width: 100%;
  }
}

.formside-logo {
  margin-bottom: 40px;
}

.jfy-advantage {
  padding: 100px 0px 35px;
}
@media (max-width: 767.98px) {
  .jfy-advantage {
    padding: 50px 0;
  }
}

.jfy-list {
  padding-left: 18px;
}

/* =====| Banner |===== */
.gen-ai-banner {
  padding-top: 100px;
}
@media (max-width: 991.98px) {
  .gen-ai-banner {
    padding-top: 50px;
  }
}

.jfy-green-banner {
  background: #000000;
  color: #fff;
  padding: 60px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .jfy-green-banner {
    padding: 40px;
  }
}
.jfy-green-banner__thumb {
  max-width: 468px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .jfy-green-banner__thumb {
    margin-bottom: 20px;
  }
}
.jfy-green-banner__video {
  position: relative;
}

.jfy-video video {
  border-radius: 10px;
}

.companion-video {
  max-width: 337px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(80px, -330px);
          transform: translate(80px, -330px);
}
@media (max-width: 991.98px) {
  .companion-video {
    position: static;
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    margin: 0 auto 40px;
    display: block;
  }
}

/* =====| Graybox |===== */
.jfy-graybox-2 {
  padding: 60px 50px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .jfy-graybox-2 {
    padding: 40px;
  }
}

.shady-hr {
  max-width: 639px;
  width: 100%;
  height: 1px;
  border: none;
  margin-left: auto;
  margin-right: auto;
  background: -webkit-gradient(linear, left top, right top, from(rgba(221, 221, 221, 0)), color-stop(51.56%, #DDD), to(rgba(221, 221, 221, 0)));
  background: linear-gradient(90deg, rgba(221, 221, 221, 0) 0%, #DDD 51.56%, rgba(221, 221, 221, 0) 100%);
}

/* =====| Advantages |===== */
.gen-ai-advantages {
  padding: 100px 0px 35px;
}
@media (max-width: 991.98px) {
  .gen-ai-advantages {
    padding: 50px 0;
  }
}
.gen-ai-advantages .jfy-boxless {
  max-width: 541px;
}
.gen-ai-advantages .jfy-boxless__icon {
  -ms-flex-preferred-size: 78px;
      flex-basis: 78px;
}

/* =====| Hyperapps |===== */
.hyperapps-banner .jfy-green-banner__inner {
  max-width: 476px;
}

.hyperapps-features .jfy-alternate__thumbnail, .hyperapps-features .jfy-alternate__inner {
  max-width: 541px;
}

.overview-banner {
  background: #285847;
  min-height: 463px;
  color: #fff;
  margin-bottom: 330px;
  padding-top: 73px;
  background-image: url("../images/platform/overview/waves.svg");
  background-position: 50% 120%;
  background-size: 1900px;
  background-repeat: repeat-x;
  position: relative;
}
@media (max-width: 991.98px) {
  .overview-banner {
    min-height: auto;
    margin-bottom: 50px;
    padding-bottom: 10px;
  }
}
.overview-banner__image {
  max-width: 708px;
  width: 100%;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
}
@media (max-width: 991.98px) {
  .overview-banner__image {
    display: none;
  }
}
@media (max-width: 991.98px) {
  .overview-banner__title {
    min-height: auto;
  }
}
.overview-banner__mobile {
  margin-top: 30px;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .overview-banner__mobile {
    display: none;
  }
}

.overview-jiffy {
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  .overview-jiffy {
    margin-bottom: 0;
  }
}
.overview-jiffy .jfy-video-wrapper {
  max-width: 568px;
  margin: 0 auto 50px;
}
.overview-jiffy .perc-data__figure {
  font-size: 20px;
  line-height: 27px;
}

.platform-features .jfy-boxless {
  margin-bottom: 50px !important;
}

.platform-hyperapps .graybox {
  padding: 70px 50px;
}

.no-code-future .jfy-boxless-simple {
  max-width: 300px;
}

.no-code-features .jfy-feature {
  max-width: 541px;
}

.no-code-platform .jfy-simple {
  max-width: 538px;
}

.no-code-explore {
  padding: 100px 0 70px;
}
.no-code-explore .jfy-imagebox {
  height: 240px;
}
.no-code-explore .jfy-imagebox__title {
  line-height: 25px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
>>> Integrations
--------------------------------------------------------------*/
.jfy-hero.platform-hero {
  padding: 50px 0;
}

.platform-comparisons .section-header {
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .platform-comparisons .section-header {
    margin-bottom: 30px;
  }
}

#heroEngagement {
  padding-bottom: 70px;
}
#heroEngagement .jiffy-video {
  max-width: 550px;
}

.engagement-intro {
  padding: 80px 0 60px;
}

.why-jiffy-engagement {
  padding: 80px 0 20px;
}

.engagement-solutions .industry-box {
  max-width: 380px;
  margin: 0 auto 50px;
}
.engagement-solutions .jfy-list > li {
  font-size: 15px;
  margin-bottom: 5px;
}

.engagement-action .hover-box {
  margin-bottom: 40px;
}

.cfo-banner {
  padding: 50px 0;
}

.wns-box .jfy-testimonial__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 991.98px) {
  .wns-box .jfy-testimonial__image {
    max-width: 100%;
  }
}
.wns-box .jfy-testimonial__inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
  padding: 32px 40px 30px;
}
@media (max-width: 991.98px) {
  .wns-box .jfy-testimonial__inner {
    max-width: 100%;
  }
}
.wns-box .jfy-testimonial__logo {
  margin-bottom: 0;
}

.cfo-features {
  padding: 100px 0 70px;
}
@media (max-width: 991.98px) {
  .cfo-features {
    padding: 50px 0 20px;
  }
}

.cfo-hyperapp {
  margin-bottom: 60px;
}
.cfo-hyperapp .jfy-simple {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cfo-hyperapp .jfy-simple {
    max-width: 230px;
  }
}

.cfo-client .jfy-linkbox {
  padding: 24px;
  max-width: 534px;
  min-height: 320px;
}
.cfo-client .video-modal {
  max-width: 569px;
}

.rtr-hyperapp .jfy-simple {
  max-width: 345px;
}

.o2c-hyperapp .jfy-simple {
  max-width: 345px;
}

.cfo-platform .jfy-linkbox {
  padding: 24px;
  max-width: 534px;
  min-height: 316px;
}

.e-Invoicing .jfy-boxless-simple {
  max-width: 200px;
}
@media (max-width: 991.98px) {
  .e-Invoicing .jfy-boxless-simple {
    margin: 0 auto 40px;
  }
}

.cfo-read-more {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .cfo-read-more {
    padding: 50px 0 10px;
  }
}
.cfo-read-more .jfy-resourcebox {
  height: 320px;
  max-width: 350px;
}
@media (min-width: 992px) {
  .cfo-read-more .jfy-resourcebox {
    margin-bottom: 0;
  }
}

.cfo-banner .jfy-hero__thumb {
  -webkit-transform: scale(1.2) translateY(10px);
          transform: scale(1.2) translateY(10px);
}

.cfo-features {
  padding: 100px 0 70px;
}
@media (max-width: 991.98px) {
  .cfo-features {
    padding: 50px 0 20px;
  }
}
.cfo-features .jfy-imagebox {
  max-width: 345px;
  margin: 0 auto;
  height: auto;
}
.cfo-features .jfy-imagebox img {
  width: 100%;
}
.cfo-features .jfy-imagebox__inner {
  padding-left: 30px;
  padding-right: 30px;
}

.cfo-hyperapps__inner {
  background: #285847;
  border-radius: 10px;
  overflow: hidden;
}
.cfo-hyperapps__header {
  background: #144030;
  padding: 15px 0;
}
.cfo-hyperapps__body {
  padding: 50px 30px;
  min-height: 432px;
}
.cfo-hyperapps .cfo-pills .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.cfo-hyperapps .cfo-pills .nav-link.active, .cfo-hyperapps .cfo-pills .nav-pills .show > .nav-link {
  background: #f5f5f5;
  color: #285847;
}
.cfo-hyperapps .tab-content {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 10px;
  min-height: 332px;
}

.wns-box .jfy-testimonial__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}
@media (max-width: 991.98px) {
  .wns-box .jfy-testimonial__image {
    max-width: 100%;
  }
}
.wns-box .jfy-testimonial__inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
  padding: 32px 40px 30px;
}
@media (max-width: 991.98px) {
  .wns-box .jfy-testimonial__inner {
    max-width: 100%;
  }
}
.wns-box .jfy-testimonial__logo {
  margin-bottom: 0;
}

.jiffy-metrics__inner {
  background: #F5f5f5;
  padding: 48px;
  text-align: center;
}

.jiffy-metric__figure {
  color: #285847;
  line-height: 48px;
}
.jiffy-metric__number {
  line-height: 22px;
  color: #111;
  font-weight: 400;
}

.cfo-hyperapp {
  margin-bottom: 60px;
}
.cfo-hyperapp .jfy-simple {
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  .cfo-hyperapp .jfy-simple {
    max-width: 230px;
  }
}

@media (min-width: 992px) {
  .cfo-success .jfy-feature {
    max-width: 350px;
  }
}

.cfo-client .jfy-linkbox {
  padding: 24px;
  max-width: 534px;
  min-height: 320px;
}
.cfo-client .video-modal {
  max-width: 569px;
}

.rtr-hyperapp .jfy-simple {
  max-width: 345px;
}

.o2c-hyperapp .jfy-simple {
  max-width: 345px;
}

.cfo-platform .jfy-linkbox {
  padding: 24px;
  max-width: 534px;
  min-height: 316px;
}

.e-Invoicing .jfy-boxless-simple {
  max-width: 200px;
}
@media (max-width: 991.98px) {
  .e-Invoicing .jfy-boxless-simple {
    margin: 0 auto 40px;
  }
}

.cfo-read-more {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .cfo-read-more {
    padding: 50px 0 10px;
  }
}
.cfo-read-more .jfy-resourcebox {
  height: 320px;
  max-width: 350px;
}
@media (min-width: 992px) {
  .cfo-read-more .jfy-resourcebox {
    margin-bottom: 0;
  }
}

.p2p-content .jfy-simple-boxless {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .p2p-content .jfy-simple-boxless {
    max-width: 400px;
    display: block;
    margin: 0 auto;
  }
}
.p2p-content .jfy-simple-boxless__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  max-width: 200px;
  margin-right: 50px;
}
@media (max-width: 1199.98px) {
  .p2p-content .jfy-simple-boxless__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 250px;
            flex: 0 0 250px;
    max-width: 250px;
  }
}
@media (max-width: 991.98px) {
  .p2p-content .jfy-simple-boxless__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (max-width: 767.98px) {
  .p2p-content .jfy-simple-boxless__thumb {
    display: block;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.p2p-metrics .metrics-box__inner {
  max-width: 100%;
  padding-left: 30px;
  padding-right: 20px;
}

.o2c-metrics .metrics-box__inner {
  max-width: 930px;
}

.jfy-metric__text {
  line-height: 24px !important;
}

.cfo-p2p-impact .jfy-imagebox {
  max-width: 100%;
  height: auto;
}
.cfo-p2p-impact .jfy-imagebox__image img {
  width: 100%;
}

.retail-banner .jfy-hero__thumb, .media-banner .jfy-hero__thumb {
  max-width: 468px;
  position: relative;
  bottom: 10px;
}

.jfy-casestudy {
  padding: 80px 0;
}
.jfy-casestudy__image, .jfy-casestudy__text {
  max-width: 541px;
}

.retail-metrics {
  margin-bottom: 146px;
}
@media (max-width: 991.98px) {
  .retail-metrics {
    margin-bottom: 50px;
  }
}

.metrics-box {
  background-color: #285847;
  background-image: url("../images/platform/overview/waves.svg");
  background-position: 48% 130%;
  background-size: 1200px;
  background-repeat: repeat-x;
  border-radius: 10px;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .metrics-box {
    padding-bottom: 20px;
  }
}
.metrics-box__inner {
  max-width: 780px;
  margin: 0 auto;
}

.jfy-metric {
  color: #fff;
}
@media (max-width: 991.98px) {
  .jfy-metric {
    margin-bottom: 40px;
  }
}
.jfy-metric__title {
  font-size: 32px;
  line-height: 28px;
}
.jfy-metric__icon {
  height: 50px;
}

.roi .input-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}
.roi .input-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.roi label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #374151;
}
.roi input {
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 16px;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.roi input:focus {
  outline: none;
  border-color: #285847;
}
.roi .benchmark {
  font-size: 12px;
  color: #6b7280;
  margin-top: 3px;
}
.roi .input-mode-selector {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.roi .mode-button {
  padding: 8px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.roi .mode-button.active {
  background: #285847;
  color: white;
  border-color: #285847;
}
.roi .mode-button:hover {
  border-color: #285847;
}
.roi .input-dual {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.roi .input-dual input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.roi .conversion-info {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 5px;
  font-style: italic;
}
.roi .results-section {
  background: linear-gradient(135deg, #f0f8f5, #faf7f0);
  padding: 30px;
  border-radius: 16px;
  margin-top: 30px;
}
.roi .results-grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.roi .result-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.roi .result-number {
  font-size: 2rem;
  font-weight: 800;
  color: #285847;
  margin-bottom: 5px;
}
.roi .result-label {
  font-size: 0.9rem;
  color: #6b7280;
  font-weight: 500;
}
.roi .table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.roi .automation-table {
  text-align: center;
  min-width: 600px;
}
.roi .automation-table {
  border-collapse: collapse;
  margin: 20px 0;
}
.roi .automation-table th,
.roi .automation-table td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.roi .automation-table th {
  background: #f8fafc;
  font-weight: 600;
  color: #374151;
}
.roi .automation-percentage {
  font-weight: 600;
  color: #285847;
}
.roi .highlight-result {
  background: linear-gradient(135deg, #285847, #1e453a);
  color: white;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  margin: 20px 0;
}
.roi .highlight-result .big-number {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.roi .formula-section {
  background: rgb(245.52, 247.5, 249.48);
  padding: 30px;
  border-radius: 12px;
  margin: 20px 0;
  border: 1px solid rgb(223.2, 225, 226.8);
  border-left: 4px solid #285847;
  margin-bottom: 40px;
}
.roi .formula-title {
  font-weight: bold;
  color: #285847;
  margin-bottom: 20px;
}
.roi .formula-text {
  font-family: "Courier New", monospace;
  background: white;
  padding: 10px;
  border-radius: 6px;
  font-size: 14px;
  margin: 5px 0 10px;
  border: 1px solid rgb(223.2, 225, 226.8);
}

@media (max-width: 768px) {
  .input-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.roi-form {
  padding: 50px;
}

@media (min-width: 768px) {
  .btn-roi-report {
    margin-right: 20px;
  }
}
@media (max-width: 767.98px) {
  .btn-roi-report {
    margin-bottom: 20px;
  }
}

#resources .jiffy-collateral {
  margin: 0 15px 30px;
}

.media-products {
  padding: 100px 0 30px;
}
@media (max-width: 767.98px) {
  .media-products {
    padding: 50px 0 10px;
  }
}
.media-products .jfy-iconbox {
  height: auto;
}

.integration-card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  color: #1C1C1C;
  border: 1px solid #E9E9EA;
  margin-bottom: 30px;
  background: #F4F4F5;
  -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
}
.integration-card__name {
  color: #1C1C1C;
  font-weight: 600;
  margin-bottom: 0;
  padding: 10px 20px;
}
.integration-card:hover {
  cursor: pointer;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.integration-card__logo {
  overflow: hidden;
  border-radius: 10px;
}

.integrations-intro {
  padding: 70px 0 50px;
}

.jiffy-hero {
  background: #1C1C1C;
  color: #fff;
  padding: 50px 0;
}
.jiffy-hero__image {
  max-width: 710px;
}

.inpage-nav {
  text-align: center;
  padding: 0;
  margin-bottom: 0;
}
.inpage-nav > li {
  display: inline-block;
  margin-right: 16px;
  padding-right: 16px;
  border-right: 2px solid #aaa;
}
@media (max-width: 767.98px) {
  .inpage-nav > li {
    margin-right: 10px;
    padding-right: 10px;
    margin-bottom: 10px;
  }
}
.inpage-nav > li:last-child {
  border-right: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-right: 0;
}
.inpage-nav > li > a {
  color: #9E7B19;
  font-weight: 500;
}

.sticky-container {
  position: relative;
}

.page-solutions {
  margin-bottom: 35px;
}
@media (max-width: 767.98px) {
  .page-solutions {
    margin-bottom: 0;
  }
}

.solutions-nav {
  position: sticky;
  top: 79px;
  background: #fff;
  z-index: 55;
  padding: 10px 0;
}
@media (max-width: 767.98px) {
  .solutions-nav {
    top: 67px;
    -webkit-box-shadow: 0 2px 34px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 34px rgba(0, 0, 0, 0.1);
    padding-top: 20px;
  }
}

.jiffy-colorbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 36px 50px;
  border-radius: 10px;
  min-height: 226px;
}
.jiffy-colorbox__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10%;
          flex: 0 0 10%;
  margin-right: 24px;
}

@media (min-width: 992px) {
  .jiffy-alternate__content {
    max-width: 520px;
  }
}
.jiffy-alternate__iconed {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.jiffy-alternate__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  margin-right: 24px;
}

.onboarding-features {
  padding: 60px 0;
}

.jiffy-featurelist {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px dashed rgba(102, 102, 102, 0.5);
}
@media (min-width: 992px) {
  .jiffy-featurelist {
    max-width: 568px;
  }
}
@media (max-width: 767.98px) {
  .jiffy-featurelist {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.jiffy-featurelist__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  margin-right: 24px;
}
@media (max-width: 767.98px) {
  .jiffy-featurelist__icon {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.engagement-features__inner {
  padding: 48px;
}
@media (min-width: 992px) {
  .engagement-features .jiffy-feature {
    max-width: 362px;
  }
}

.jiffy-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .jiffy-feature {
    margin-bottom: 40px;
  }
}
@media (max-width: 767.98px) {
  .jiffy-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
}
.jiffy-feature__icon {
  margin-right: 24px;
}
@media (max-width: 767.98px) {
  .jiffy-feature__icon {
    margin-bottom: 10px;
  }
}

.jiffy-platform__inner {
  padding: 60px;
}
@media (max-width: 767.98px) {
  .jiffy-platform__inner {
    padding: 40px;
  }
}

.green-rush {
  background: #1C1C1C;
  color: #fff;
}
.green-rush__header {
  background: #000000;
  text-align: center;
  padding: 30px;
}
.green-rush__title {
  line-height: 43.2px;
}
.green-rush__inner {
  padding: 36px 48px;
}
.green-rush__item {
  margin-bottom: 30px;
  position: relative;
}
@media (max-width: 767.98px) {
  .green-rush__item {
    text-align: center;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1.5px dashed rgba(255, 255, 255, 0.2);
  }
}
.green-rush__item:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -12px;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.2);
  width: 287px;
}
@media (max-width: 767.98px) {
  .green-rush__item:after {
    display: none;
  }
}
.green-rush__metric {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .green-rush__metric {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}
.green-rush__icon {
  margin-right: 36px;
}
@media (max-width: 767.98px) {
  .green-rush__icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.green-rush__number {
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  .green-rush__number {
    margin-bottom: 10px;
  }
}
.green-rush__text {
  color: rgba(255, 255, 255, 0.8);
}
.green-rush__text p {
  line-height: 24.55px;
}
@media (min-width: 1200px) {
  .green-rush__video {
    padding-left: 10px;
  }
}
@media (max-width: 767.98px) {
  .green-rush__video {
    margin-top: 20px;
  }
}
@media (max-width: 767.98px) {
  .green-rush .jfy-resourcebox {
    margin-bottom: 20px;
  }
}

.gr-item-3:after {
  bottom: -20px;
}

@media (max-width: 767.98px) {
  .gr-item-5 {
    border-bottom: none;
  }
}
.gr-item-5:after {
  display: none;
}

.jiffy-dropbox {
  border-radius: 150px 0px 150px 0px;
  padding: 0 110px;
  background: #D4DEDA;
}
@media (max-width: 991.98px) {
  .jiffy-dropbox {
    padding: 50px;
    border-radius: 0px;
  }
}

.jiffy-label {
  display: inline-block;
  padding: 6px 24px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.02em;
}
@media (max-width: 767.98px) {
  .jiffy-label span {
    display: none;
  }
}

@media (min-width: 992px) {
  .why-jiffy .jiffy-feature {
    max-width: 498px;
  }
}

.jiffy-collateral {
  padding: 36px;
  max-width: 293px;
  padding: 36px;
  border-radius: 10px;
}
@media (max-width: 991.98px) {
  .jiffy-collateral {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 992px) {
  .jfy-resources {
    margin-bottom: 50px;
  }
}
.jfy-resources .jfy-resourcebox {
  max-width: 350px;
  min-height: 349px;
}

.casestudy-results .jfy-graybox {
  padding: 70px 60px;
}
.casestudy-results .jfy-graybox__inner {
  padding: 40px;
}
@media (max-width: 767.98px) {
  .casestudy-results .jfy-graybox__image {
    margin-bottom: 30px;
    text-align: center;
  }
}
.casestudy-results .jfy-iconbox {
  max-width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
}
.casestudy-results .jfy-iconbox__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 11%;
          flex: 0 0 11%;
}
.casestudy-results .half-box {
  max-width: 374px;
  min-height: 354px;
}

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

.num-circle {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 1px solid #285847;
  color: #285847;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}

.casestudy-metrics .jfy-metric__title {
  font-size: 28px;
}

.cetera-box .jfy-testimonial__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24%;
          flex: 0 0 24%;
  max-width: 24%;
}
.cetera-box .jfy-testimonial__inner {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 76%;
          flex: 0 0 76%;
  max-width: 76%;
  padding-top: 38px;
}

.cetera-results .jfy-graybox {
  padding: 70px 60px;
}
.cetera-results .jfy-graybox__inner {
  padding: 70px 70px 30px;
  margin-bottom: 0;
}
.cetera-results .jfy-boxless {
  margin-bottom: 40px;
}
.cetera-results .jfy-boxless__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  margin-right: 20px;
}
@media (max-width: 767.98px) {
  .cetera-results .jfy-boxless__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 10px;
  }
}

.casestudy-download {
  border: 1px solid #DDD;
  -webkit-box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
          box-shadow: 0px 0px 40px 0px rgba(204, 204, 204, 0.3);
  border-radius: 10px;
  padding: 24px;
}
@media (max-width: 991.98px) {
  .casestudy-download__thumb {
    margin-bottom: 20px;
  }
}

#jfyEvents .event-tabs {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  #jfyEvents .event-tabs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 40px;
  }
}
#jfyEvents .event-tabs__live {
  border-radius: 8px 0 0 8px;
}
#jfyEvents .event-tabs__webinars {
  border-radius: 0 8px 8px 0;
}
#jfyEvents .event-tabs .nav-item .nav-link {
  color: #333;
  font-weight: 300;
  background: transparent;
}
#jfyEvents .event-tabs .nav-item .active {
  color: #285847;
  font-weight: 600;
  background: transparent;
}

.jfy-btn-group {
  padding-left: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 991.98px) {
  .jfy-btn-group {
    max-width: 220px;
    text-align: center;
    margin: 0 auto 20px;
    padding: 0;
  }
}
.jfy-btn-group .btn-brown:hover {
  background: #BB8C32;
}
.jfy-btn-group .btn-brown-outline:hover {
  color: #BB8C32;
  background: white;
}

.inactive-link {
  pointer-events: none;
  cursor: not-allowed; /* Optional: Change the cursor to indicate it's inactive */
  color: #999; /* Optional: Change the link color to indicate it's inactive */
  text-decoration: none; /* Optional: Remove underline if needed */
}

.jfy-tags-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.jfy-tags-list li a {
  display: inline-block;
  color: #BB8C32;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 8px;
}
.jfy-tags-list .active {
  background: #BB8C32;
  color: #fff;
}

/* =====| Blog Single |===== */
.jfy-blog {
  padding-top: 100px;
}
.jfy-blog__title {
  font-size: 32px;
  line-height: 40px;
  color: #285847;
  margin-bottom: 20px;
}
.jfy-blog__meta {
  font-size: 15px;
  margin-bottom: 50px;
}
.jfy-blog__thumbnail {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 50px;
}

/* =====| Blog Styling |===== */
.jfy-article {
  margin-bottom: 100px;
}
.jfy-article h2, .jfy-article h3 {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  margin-bottom: 40px;
}
.jfy-article p {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}
.jfy-article ul, .jfy-article ol {
  margin-bottom: 20px;
  padding-left: 16px;
}
.jfy-article ul > li, .jfy-article ol > li {
  margin-bottom: 10px;
}

.entry-highlight {
  background: #F5F5F5;
  padding: 60px;
  border-radius: 8px;
}
.entry-highlight ul {
  background: #fff;
  padding: 40px 55px 25px;
  border-radius: 8px;
}

.also-read-box {
  border-radius: 10px;
  border: 1px solid #DDD;
  padding: 60px;
  text-align: center;
}
.also-read-box a {
  font-weight: 600;
  display: inline-block;
  text-decoration: underline;
  margin-bottom: 5px;
}

.blog-tags span {
  display: inline-block;
  margin-right: 14px;
}
.blog-tags a {
  display: inline-block;
  font-weight: 600;
  border: 1px solid #BB8C32;
  padding: 9px 22px;
  margin-right: 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.blog-tags a:hover {
  background: #BB8C32;
  color: #fff;
}

.usecase-points .jfy-feature {
  max-width: 438px;
}
@media (max-width: 767.98px) {
  .usecase-points .jfy-feature ul {
    list-style-type: none;
  }
}

.usecase-impact .jfy-graybox {
  padding: 70px 60px;
}
.usecase-impact .jfy-graybox__inner {
  padding: 40px;
}
@media (max-width: 767.98px) {
  .usecase-impact .jfy-graybox__image {
    margin-bottom: 30px;
    text-align: center;
  }
}

/* =====| Guide Single |===== */
.jfy-guide-roll {
  position: relative;
}

.jfy-sidenav {
  background: rgb(245, 245, 245);
  border-radius: 10px;
  padding: 32px 25px;
  max-width: 330px;
  position: sticky;
  top: 100px;
  margin-bottom: 80px;
}
.jfy-sidenav__menu {
  background: #fff;
  padding: 24px 30px 14px;
  border-radius: 10px;
  position: relative;
}
.jfy-sidenav__item {
  margin-bottom: 24px;
  position: relative;
}
.jfy-sidenav__link {
  color: #333;
  font-size: 16px;
  line-height: 20px;
  -webkit-transform: 0.35s ease;
          transform: 0.35s ease;
  font-weight: 600;
  display: inline-block;
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.35s ease, font-weight 0.35s ease;
  transition: color 0.35s ease, font-weight 0.35s ease;
}
.jfy-sidenav__link:hover {
  color: #9E7B19;
}
.jfy-sidenav__link:before {
  content: "";
  height: 100%;
  width: 3px;
  position: absolute;
  left: -30px;
  top: 0;
  -webkit-transition: background 0.35s ease, -webkit-transform 0.35s ease;
  transition: background 0.35s ease, -webkit-transform 0.35s ease;
  transition: transform 0.35s ease, background 0.35s ease;
  transition: transform 0.35s ease, background 0.35s ease, -webkit-transform 0.35s ease;
}

.jfy-sidenav__link.active {
  color: #9E7B19;
}

.jfy-sidenav__indicator {
  position: absolute;
  left: 0px;
  width: 3px;
  background: #9E7B19;
  -webkit-transition: top 0.35s ease, height 0.35s ease;
  transition: top 0.35s ease, height 0.35s ease;
}

.jfy-guide-search {
  max-width: 440px;
  position: relative;
  z-index: 2;
}
.jfy-guide-search select, .jfy-guide-search input {
  border: none;
  background: rgb(244, 244, 245);
  position: relative;
}
.jfy-guide-search select:focus, .jfy-guide-search input:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  background: rgb(244, 244, 245);
}
.jfy-guide-search select {
  border-radius: 25px 0 0 25px;
}
.jfy-guide-search input[type=text] {
  border-radius: 0 25px 25px 0;
  padding-left: 45px;
  display: block;
}
.jfy-guide-search input[type=text]::-webkit-input-placeholder {
  color: rgb(160, 163, 189);
}
.jfy-guide-search input[type=text]::-moz-placeholder {
  color: rgb(160, 163, 189);
}
.jfy-guide-search input[type=text]:-ms-input-placeholder {
  color: rgb(160, 163, 189);
}
.jfy-guide-search input[type=text]::-ms-input-placeholder {
  color: rgb(160, 163, 189);
}
.jfy-guide-search input[type=text]::placeholder {
  color: rgb(160, 163, 189);
}
.jfy-guide-search .field-separator {
  height: 20px;
  width: 1px;
  background: rgb(204, 204, 204);
  position: absolute;
  left: 30%;
  top: 50%;
  -webkit-transform: translate(25px, -18px);
          transform: translate(25px, -18px);
  z-index: 3;
}
.jfy-guide-search__input {
  position: relative;
}
.jfy-guide-search__input:after {
  content: "";
  display: block;
  height: 16px;
  width: 16px;
  background: url("../images/abstract/search.svg") no-repeat;
  background-size: cover;
  position: absolute;
  top: 10px;
  left: 22px;
}

.guide-meta {
  font-size: 14px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.6);
}
.guide-meta span {
  display: inline-block;
  position: relative;
  bottom: 0.5px;
  margin: 2px;
}
.guide-meta__avatar {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transform: translateY(13px);
          transform: translateY(13px);
  margin-right: 4px;
}

.about-banner .jfy-green-banner__text {
  line-height: 30px;
}

@media (min-width: 992px) {
  .way-forward .jfy-alternate__inner {
    max-width: 474px;
  }
}

.about-testimonial .jfy-testimonial {
  width: 100%;
}
.about-testimonial .jfy-testimonial__image {
  -ms-flex-preferred-size: 17%;
      flex-basis: 17%;
  max-width: 17%;
}
@media (max-width: 991.98px) {
  .about-testimonial .jfy-testimonial__image {
    max-width: 100%;
  }
}
.about-testimonial .jfy-testimonial__inner {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 83%;
          flex: 1 0 83%;
  max-width: 83%;
}
.about-testimonial .jfy-testimonial__logo {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .about-advisors {
    text-align: center;
  }
}
.about-advisors .jfy-alternate__inner {
  max-width: 720px;
}

.show-more-wrap {
  padding-bottom: 50px;
}

/* =====| About |===== */
.jf-about__leaders {
  padding: 70px 170px 30px;
  margin-bottom: 80px;
  border-radius: 10px;
  background: #000000;
  color: #fff;
  text-align: center;
}
@media (max-width: 991.98px) {
  .jf-about__leaders {
    padding: 40px 30px 0;
    margin-bottom: 50px;
  }
}
.jf-about__leaders .section-header {
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .jf-about__leaders .section-header {
    margin-bottom: 30px;
  }
}
.jf-about__jiffy {
  padding: 60px 60px 0;
  border-radius: 10px;
  margin-bottom: 80px;
  text-align: center;
}
@media (max-width: 767.98px) {
  .jf-about__jiffy {
    padding: 40px 30px 0;
    margin-bottom: 50px;
  }
}
.jf-about__jiffy .section-header {
  margin-bottom: 60px;
}
@media (max-width: 767.98px) {
  .jf-about__jiffy .section-header {
    margin-bottom: 40px;
  }
}

.jf-leader {
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .jf-leader {
    margin-bottom: 40px;
  }
}
.jf-leader__headshot {
  margin-bottom: 20px;
}
.jf-leader__name {
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-bottom: 5px;
}
.jf-leader__designation {
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
}

.col-constricter-3, .col-constricter-2 {
  border: none;
}
@media (max-width: 991.98px) {
  .col-constricter-3, .col-constricter-2 {
    display: none;
  }
}

.col-constricter-3 {
  width: 10%;
}

.col-constricter-2 {
  width: 20%;
}

.jfy-contact-mail {
  color: #fff;
  display: inline-block;
  margin-left: 25px;
  font-size: 18px;
  font-weight: 400;
}

.contact-info {
  max-width: 482px;
}
@media (min-width: 1200px) {
  .contact-info {
    margin-top: 70px;
    margin-left: auto;
  }
}

.contact-number {
  margin-bottom: 20px;
}
.contact-number__country {
  margin-bottom: 5px;
}
.contact-number .jfy-flag {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.contact-number .jfy-country {
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.contact-number .jfy-contact-number {
  line-height: 30px;
}

.jfy-contact-us .jfy-mini-underline-title:after {
  width: 70px;
}
.jfy-contact-us #jfy-RequestDemo textarea {
  min-height: 136px;
}

.people-passion .jfy-boxless-simple {
  max-width: 350px;
  margin-bottom: 70px;
}

.hr-blogs {
  padding: 80px 0 30px;
}
.hr-blogs .jfy-resourcebox {
  max-width: 350px;
}

.jfy-double-grid {
  max-width: 541px;
  margin-bottom: 40px;
}

.people-join .metrics-box {
  padding: 70px 50px;
  color: #fff;
}

.facts-wrap {
  max-width: 756px;
  margin: 0 auto;
}

.people-facts .jfy-stat {
  padding: 0;
  width: auto;
  height: auto;
}

.security-infrastructure .jfy-graybox {
  padding: 80px 70px 40px;
}
@media (max-width: 991.98px) {
  .security-infrastructure .jfy-graybox {
    padding: 40px;
  }
}
.security-infrastructure .jfy-graybox__content {
  max-width: 474px;
}
.security-infrastructure .jfy-graybox__image {
  max-width: 471px;
  margin-bottom: 40px;
}

.certification__image {
  max-width: 200px;
}
@media (max-width: 991.98px) {
  .certification__image {
    margin: 0 auto 20px;
  }
}
@media (max-width: 991.98px) {
  .certification {
    text-align: center;
  }
}

.news-banner {
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .news-banner {
    padding-bottom: 0;
  }
}
.news-banner .jfy-hero__thumb {
  max-width: 464px;
  position: relative;
  bottom: 37px;
}
@media (max-width: 991.98px) {
  .news-banner .jfy-hero__thumb {
    bottom: 0;
    right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  .news-banner .jfy-hero__inner {
    margin-bottom: 50px;
  }
}

#jfyNews .news-tabs {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 70px;
}
#jfyNews .news-tabs__news {
  border-radius: 8px 0 0 8px;
}
#jfyNews .news-tabs__podcast {
  border-radius: 0 8px 8px 0;
}
#jfyNews .news-tabs .nav-item .nav-link {
  color: #BB8C32;
  border: 1px solid #BB8C32;
  font-weight: 700;
  background: #fff;
}
#jfyNews .news-tabs .nav-item .active {
  color: #fff;
  background: #BB8C32;
}

.iph-feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767.98px) {
  .iph-feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
}
.iph-feature__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 200px;
  margin-right: 49px;
}
@media (max-width: 991.98px) {
  .iph-feature__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .iph-feature__image {
    margin-bottom: 20px;
  }
}

.iph-content .jfy-alternate__thumbnail, .iph-content .jfy-alternate__inner {
  max-width: 541px;
}

.st-features .jfy-feature {
  max-width: 541px;
}

.page-wws .jiffy-hero__image {
  max-width: 600px;
}

.phoenix-label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #EACB6B;
  border: 1px solid #5D4D1E;
  border-radius: 30px;
  padding: 10px 20px;
  margin-bottom: 0;
  background: rgba(93, 77, 30, 0.5);
}

.feature-card {
  padding: 30px;
  border-radius: 10px;
}
.feature-card__gray {
  background: #F4F4F5;
  border: 1px solid #E9E9EA;
}
.feature-card__gray .feature-card__icon {
  background: #F1E2A9;
  color: #9E7B19;
  border: 1px solid #EACB6B;
}
.feature-card__gold {
  background: #F9F4E1;
  border: 1px solid #F1E2A9;
}
.feature-card__gold .feature-card__icon {
  background: #F1E2A9;
  color: #9E7B19;
  border: 1px solid #EACB6B;
}
.feature-card__icon {
  font-size: 20px;
  display: inline-block;
  width: 40px;
  height: 40px;
  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;
  margin-bottom: 20px;
  border-radius: 10px;
}

.value-prop .feature-card {
  min-height: 356px;
}

.value-prop-bd .feature-card {
  min-height: 300px;
}

.value-prop-ft .feature-card {
  min-height: 331px;
}

/* =====| Dark Block |===== */
.dark-block {
  background: #1C1C1C;
  padding: 100px 0;
  color: #fff;
}

.dark-metrics__box {
  background: #000000;
  text-align: center;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #535862;
  border-top: 5px solid #DDB550;
}

/* =====| Golden Box |===== */
.golden-box {
  background: linear-gradient(105deg, #5D4D1E 0%, #A7831E 40%, #9E7B19 70%, #5D4D1E 100%);
  border-radius: 12px;
  padding: 40px 40px;
  border: 1px solid #EACB6B;
}

/* =====| Gray Card |===== */
.gray-card {
  background-color: #F4F4F5;
  border-radius: 16px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  border: 1px solid #E9E9EA;
}
.gray-card__icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 50px;
  height: 50px;
  background-color: #F1E2A9;
  border-radius: 10px;
  margin-bottom: 16px;
}
.gray-card__icon i {
  color: #A7831E;
  font-size: 18px;
}

.cta-section {
  background: radial-gradient(ellipse at 50% 100%, #5D4D1E 0%, #000000 55%);
  padding: 100px 0;
  position: relative;
}
.cta-section__eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #DDB550;
  margin-bottom: 16px;
}
.cta-section__heading {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 24px;
}
.cta-section__heading span {
  color: #DDB550;
}
.cta-section__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.cs-banner {
  padding: 50px 0;
}
@media (max-width: 991.98px) {
  .cs-banner__image {
    margin-bottom: 30px;
  }
}
.cs-banner__logo {
  margin-bottom: 20px;
}
.cs-banner__logo img {
  height: 55px;
  width: auto;
}
@media (max-width: 991.98px) {
  .cs-banner__logo img {
    height: 45px;
  }
}
@media (min-width: 992px) {
  .cs-banner__inner {
    padding-left: 30px;
  }
}
@media (max-width: 767.98px) {
  .cs-banner__inner {
    text-align: center;
  }
}
.cs-banner__text {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  .cs-banner__text {
    line-height: 35px;
  }
}

.fis-button {
  background: #BB8C32;
  border-radius: 20px;
  font-size: 16px;
  line-height: 22px;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
}

.cs-hero-fis {
  text-align: center;
  background: #285847;
  color: #fff;
  padding: 100px 0;
}

.cs-hero__inner2 {
  text-align: center;
}
@media (max-width: 991.98px) {
  .cs-hero__inner2 {
    padding-bottom: 60px;
    padding-top: 10;
  }
}

.small-underlined-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 40px;
}
.small-underlined-title:after {
  content: "";
  display: block;
  height: 3px;
  width: 40px;
  background: #333;
  margin-top: 14px;
}

.evt-banner {
  background: #285847;
  color: #fff;
  padding: 60px;
  border-radius: 10px;
  margin-bottom: 100px;
}
@media (max-width: 767.98px) {
  .evt-banner {
    padding: 40px;
  }
}
.evt-banner__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  .evt-banner__title {
    font-size: 30px;
    line-height: 40px;
  }
}
.evt-banner__title-small {
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}

.alerus-screens {
  max-width: 570px;
  margin: 0 auto;
}
.alerus-screens .screen-slide {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #eaeaea;
}

.livebox__fiserv {
  background-color: #f5f5f5;
  background: #f5f5f5 url("../images/resources/events/fiserv/manish.png") no-repeat;
  background-position: right 20px bottom;
  background-size: 290px;
}
@media (max-width: 991.98px) {
  .livebox__fiserv {
    background-position: center bottom;
  }
}
.livebox__fiserv--inner {
  padding-left: 50px;
  padding-right: 50px;
}
@media (min-width: 992px) {
  .livebox__text-2 {
    padding-right: 60px;
    padding-left: 60px;
  }
}
.livebox__content {
  text-align: left;
  padding-left: 60px;
  max-width: 70%;
}
@media (max-width: 991.98px) {
  .livebox__content {
    max-width: 100%;
    padding-bottom: 200px;
    padding-left: 20px;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .livebox__content {
    padding-bottom: 350px;
  }
}

.lp-resources .jfy-resourcebox {
  margin-bottom: 30px;
  min-height: 297.65px;
}
.lp-resources .jfy-resourcebox__icon {
  margin-bottom: 20px;
}
.lp-resources .jfy-resourcebox__title {
  font-size: 16px;
  line-height: 26px;
}

.innovator-platform .jfy-graybox {
  padding: 80px 70px;
}
@media (max-width: 767.98px) {
  .innovator-platform .jfy-graybox {
    padding: 50px;
  }
}
.innovator-platform .jfy-graybox__content {
  max-width: 474px;
}
.innovator-platform .jfy-graybox__image {
  max-width: 471px;
  margin-bottom: 40px;
}

.innovator-innovation {
  padding: 80px 0;
}

.hero-innovator {
  background-image: url("../images/innovator/hero-bg.png");
  background-position: center right;
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  .hero-innovator {
    background-size: cover;
    background-position: center left;
  }
}

/* =====| Legal |===== */
.jf-legal {
  background: #F5F5F5;
  padding: 60px 0;
  min-height: 86vh;
}
@media (max-width: 767.98px) {
  .jf-legal {
    padding: 30px 0;
  }
}

.jf-template {
  background: #fff;
  border-radius: 10px;
  padding: 60px;
  max-width: 930px;
  margin: 0 auto 60px;
}
@media (max-width: 767.98px) {
  .jf-template {
    padding: 40px;
    margin-bottom: 0;
  }
}
.jf-template__title {
  font-size: 32px;
  font-weight: 600;
  color: #285847;
  margin-bottom: 40px;
}
@media (max-width: 767.98px) {
  .jf-template__title {
    margin-bottom: 20px;
  }
}
.jf-template__intro {
  margin-bottom: 30px;
}
.jf-template__intro p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.jf-block {
  margin-bottom: 30px;
}
.jf-block__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.jf-block p, .jf-block ul {
  margin-bottom: 20px;
}
.jf-block .button-group a {
  padding: 10px 22px;
  font-size: 16px;
  line-height: 19px;
  font-family: "Source Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
  border-radius: 8px;
  font-weight: 400;
  margin: 0 10px;
}
.jf-block .wt-cli-accept-btn {
  color: #fff;
  background: #BB8C32 !important;
  border: 1px solid #BB8C32 !important;
}
.jf-block .wt-cli-accept-btn:hover, .jf-block .wt-cli-accept-btn:active {
  color: #fff !important;
  background: rgb(168.3, 126, 45) !important;
}
.jf-block .wt-cli-reject-btn {
  color: #285847 !important;
  background: #fff !important;
  border: 1px solid #285847 !important;
}
.jf-block .wt-cli-reject-btn:hover, .jf-block .wt-cli-reject-btn:active {
  color: #fff !important;
  background: #285847 !important;
}

/*--------------------------------------------------------------
>>> Gartner CFO
--------------------------------------------------------------*/
.events-banner {
  padding-top: 80px;
  margin-bottom: 70px;
}
@media (max-width: 767.98px) {
  .events-banner {
    margin-bottom: 60px;
    padding-top: 40px;
  }
}

.gartner-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
@media (max-width: 991.98px) {
  .gartner-banner {
    display: block;
    text-align: center;
  }
}
.gartner-banner__left {
  padding: 50px;
  width: 49%;
  border-radius: 10px 0px 0px 10px;
  background: url("../images/event/gartner/banner-bg-1.png") bottom center no-repeat;
  background-size: cover;
  background-color: #BB8C32;
  height: 282px;
  overflow: hidden;
}
@media (max-width: 991.98px) {
  .gartner-banner__left {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    height: auto;
  }
}
.gartner-banner__right {
  background: #285847;
  padding: 50px;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 991.98px) {
  .gartner-banner__right {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    height: auto;
  }
}
.gartner-banner__right h3 {
  margin-bottom: 35px;
}
.gartner-banner__right-2 {
  background: #285847;
  padding: 50px;
  width: 51%;
  overflow: hidden;
  border-radius: 8px;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 991.98px) {
  .gartner-banner__right-2 {
    width: 100%;
    border-radius: 0px 0px 10px 10px;
    height: auto;
  }
}
.gartner-banner__right-2 h3 {
  margin-bottom: 35px;
}
.gartner-banner__venue {
  font-size: 16px;
  line-height: 26px;
}
.gartner-banner__event-title {
  font-size: 18px;
  margin-bottom: 15px;
}
.gartner-banner__btn {
  font-size: 16px;
  line-height: 21px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 8px;
  padding: 9px 22px;
  color: #fff;
}
.gartner-banner__btn:hover {
  color: #285847;
  background: #fff;
}

/* =====| Advantages |===== */
.grt-advantage__wrapper {
  background: #F4F3EB;
  text-align: center;
  padding: 40px 30px;
  border-radius: 10px;
}
.grt-advantage__box {
  text-align: center;
}
@media (max-width: 991.98px) {
  .grt-advantage__box {
    margin-bottom: 40px;
  }
}
.grt-advantage__number {
  color: #684E1A;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 10px;
}
.grt-advantage__metric {
  color: #111;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

/* =====| Approach |===== */
.grt-list {
  padding-left: 16px;
}
.grt-list > li {
  margin-bottom: 5px;
}

/* =====| Live box |===== */
.livebox, .livebox-alt {
  border-radius: 10px;
  background-color: #f5f5f5;
  background-image: url("../images/event/kris.png"), url("../images/event/Sivaram.png");
  background-size: 24% auto, 26% auto;
  background-repeat: no-repeat;
  background-position: bottom left, bottom right;
}
@media (max-width: 991.98px) {
  .livebox, .livebox-alt {
    background-size: 24% auto, 26% auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 767.98px) {
  .livebox, .livebox-alt {
    padding-bottom: 150px;
    background-size: 40% auto, 42% auto;
  }
}
.livebox__header, .livebox-alt__header {
  background: #285847;
  border-radius: 10px 10px 0 0;
  padding: 15px 0;
}
.livebox__inner, .livebox__inner-2, .livebox-alt__inner, .livebox-alt__inner-2 {
  text-align: center;
  padding: 0 0 40px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .livebox__inner, .livebox__inner-2, .livebox-alt__inner, .livebox-alt__inner-2 {
    padding: 0 30px 130px;
  }
}
@media (max-width: 767.98px) {
  .livebox__inner, .livebox__inner-2, .livebox-alt__inner, .livebox-alt__inner-2 {
    padding-bottom: 20px;
  }
}
.livebox__inner-2, .livebox-alt__inner-2 {
  max-width: 100% !important;
}
.livebox__text, .livebox-alt__text {
  margin: 0 auto 40px;
  max-width: 560px;
  -moz-text-align-last: left;
       text-align-last: left;
  position: relative;
  left: 20px;
}
.livebox__bullets, .livebox-alt__bullets {
  text-align: left;
  padding-left: 16px;
}

.livebox-alt {
  background-image: url("../images/event/babu.png"), url("../images/event/Krishnan.png");
}

/* =====| Hyperapps |===== */
.grt-hyperapp {
  border-radius: 10px;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 991.98px) {
  .grt-hyperapp {
    margin-bottom: 30px;
  }
}
@media (min-width: 992px) {
  .grt-hyperapp {
    min-height: 554px;
  }
}
.grt-hyperapp__title {
  font-size: 22px;
  line-height: 28px;
}
.grt-hyperapp .grt-list {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* This ensures the list takes up remaining space */
}
.grt-hyperapp .grt-hyperapp__btn {
  margin-top: auto;
}

.bg-light-blue {
  background: #E0F2FE;
}

.bg-light-green {
  background: #E7F7EE;
}

.bg-light-gray {
  background: #EFF0F6;
}

/* =====| Impact |===== */
.grt-impact .jfy-feature__icon {
  margin-right: 10px;
}
@media (max-width: 991.98px) {
  .grt-impact .jfy-feature__icon {
    margin: 0 auto 10px;
  }
}
.grt-impact .jfy-feature__title {
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 15px;
}

/* =====| Read More |===== */
.evt-read {
  border: 1px solid #DDDDDD;
  border-radius: 10px;
  padding: 60px;
  text-align: center;
}
.evt-read__list > li > a {
  display: inline-block;
  line-height: 26px;
  max-width: 660px;
}

.evt-form {
  margin-bottom: 70px;
}
.evt-form .section-header {
  position: relative;
  margin-bottom: 50px;
}
.evt-form .section-header:after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #333;
  margin-top: 15px;
}
.evt-form__wrapper {
  margin-bottom: 30px;
}

.bny-banner__inner {
  max-width: 420px;
}
@media (max-width: 991.98px) {
  .bny-banner__inner {
    text-align: center;
    margin: 0 auto 30px;
  }
}
.bny-banner__image {
  max-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .bny-banner__image {
    margin-left: auto;
  }
}
@media (max-width: 991.98px) {
  .bny-banner__image {
    margin: 0 auto 30px;
  }
}

.speakerbox {
  background: #f5f5f5;
  -webkit-box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 2px 10px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto 30px;
}
.speakerbox__headshot {
  padding: 20px 20px 0;
}
.speakerbox__headshot img {
  position: relative;
  top: 1px;
}
.speakerbox__info {
  background: #285847;
  color: #fff;
  text-align: center;
  border-radius: 0 0 10px 10px;
  padding: 10px 0;
}

/* =====| Beta signup |===== */
.jrad-body {
  position: relative;
}

.jrad-article {
  max-width: 605px;
}

.jrad-signup {
  background: #F4F8F6;
  padding: 40px 50px;
  max-width: 605px;
}
@media (min-width: 992px) {
  .jrad-signup {
    position: sticky;
    top: 100px;
  }
}

/* =====| Author Profile |===== */
.author-header {
  background: #F5F8F6;
  padding: 40px 0;
}

.author-avatar {
  max-width: 180px;
}
.author-avatar img {
  width: 100%;
  height: auto;
}

.author-info {
  padding-left: 30px;
}

.author-links > li {
  display: inline-block;
  margin-right: 5px;
}
.author-links > li img {
  height: 25px;
  width: 25px;
}

.wns-hero {
  padding-bottom: 100px;
  padding-top: 70px;
}
@media (max-width: 991.98px) {
  .wns-hero {
    padding-bottom: 70px;
  }
}
.wns-hero .jiffy-hero__image {
  max-width: 600px;
}

.wns-solution .jfy-list > li::marker {
  color: #285847;
  font-size: 20px;
}

.tracone .bg-gray {
  border-radius: 10px;
  padding: 80px 80px 10px 80px;
}
.tracone__logo {
  max-width: 200px;
  margin: 0 auto;
}
.tracone__figure {
  margin: 0 auto 100px;
}

@media (max-width: 991.98px) {
  .wns-levers .jiffy-feature {
    text-align: center;
    max-width: 300px;
    margin: 0 auto 40px;
  }
}
@media (max-width: 991.98px) {
  .wns-levers .jiffy-feature__icon {
    margin-right: 0;
  }
}

.mw-fiserv .section-description {
  margin-bottom: 80px;
}
.mw-fiserv .section-description p {
  font-size: 16px;
  font-weight: 400;
}

.nope__wrapper {
  max-width: 540px;
  margin: 120px auto;
}
.nope__thumb, .nope__title {
  margin-bottom: 35px;
}

.jiffy-clients-partners {
  padding: 50px 0 40px;
  background: #F4F4F5;
}
.jiffy-clients-partners .logos-carousel img {
  max-height: 33px;
  margin: 0 25px;
}
.jiffy-clients-partners .logos-carousel .slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 20px;
}
.jiffy-clients-partners .slick-slide {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/*--------------------------------------------------------------
>>> Buttons
--------------------------------------------------------------*/
.btn {
  padding: 10px 22px;
  font-size: 16px;
  line-height: 19px;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  font-weight: 600;
}

.btn-brown,
.btn-primary {
  color: #fff;
  background: #9E7B19;
  border: 2px solid #9E7B19;
  border-radius: 8px;
  font-weight: 600;
}
.btn-brown:visited,
.btn-primary:visited {
  color: #fff;
}
.btn-brown:hover,
.btn-primary:hover {
  color: #fff;
  background: #B79229;
  border-color: #B79229;
}
.btn-brown:active, .btn-brown.active,
.btn-primary:active,
.btn-primary.active {
  color: #fff;
  background: #A7831E;
  border-color: #A7831E;
}
.btn-brown:focus,
.btn-primary:focus {
  color: #fff;
  background: #A7831E;
  border-color: #A7831E;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(167, 131, 30, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(167, 131, 30, 0.5);
}
.btn-brown:disabled, .btn-brown.disabled,
.btn-primary:disabled,
.btn-primary.disabled {
  color: #A8ABB1;
  background: #E9E9EA;
  border-color: #E9E9EA;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-gold {
  background: radial-gradient(ellipse at center, #DDB550 0%, #A7831E 100%);
  color: #1C1C1C;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 12px 28px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
}
.btn-gold:hover {
  background: radial-gradient(ellipse at center, #EACB6B 0%, #B79229 100%);
  color: #1C1C1C;
  text-decoration: none;
}
.btn-gold:focus, .btn-gold:focus-visible {
  background: radial-gradient(ellipse at center, #EACB6B 0%, #B79229 100%);
  color: #1C1C1C;
  outline: 2px solid #DDB550;
  outline-offset: 3px;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn-gold:active {
  background: radial-gradient(ellipse at center, #A7831E 0%, #9E7B19 100%);
  color: #1C1C1C;
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}
.btn-gold:visited {
  color: #1C1C1C;
}
.btn-gold:disabled, .btn-gold.disabled {
  background: radial-gradient(ellipse at center, #DDB550 0%, #A7831E 100%);
  color: #1C1C1C;
  opacity: 0.5;
  pointer-events: none;
}

.btn-gold-400 {
  background-color: #EACB6B;
  color: #5D4D1E !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 28px;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  white-space: nowrap;
}
.btn-gold-400:hover {
  background-color: #F1E2A9;
  color: #5D4D1E;
}
.btn-gold-400:active, .btn-gold-400.active {
  color: #000000;
}

.btn-green,
.btn-dark {
  color: #fff;
  background: #1C1C1C;
  border: 2px solid #1C1C1C;
  border-radius: 8px;
  font-weight: 600;
}
.btn-green:visited,
.btn-dark:visited {
  color: #fff;
}
.btn-green:hover,
.btn-dark:hover {
  color: #fff;
  background: #535862;
  border-color: #535862;
}
.btn-green:active, .btn-green.active,
.btn-dark:active,
.btn-dark.active {
  color: #fff;
  background: #000000;
  border-color: #000000;
}
.btn-green:focus,
.btn-dark:focus {
  color: #fff;
  background: #1C1C1C;
  border-color: #1C1C1C;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(28, 28, 28, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(28, 28, 28, 0.5);
}
.btn-green:disabled, .btn-green.disabled,
.btn-dark:disabled,
.btn-dark.disabled {
  color: #A8ABB1;
  background: #C9CACD;
  border-color: #C9CACD;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-white {
  color: #1C1C1C;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 8px;
  font-weight: 600;
}
.btn-white:visited {
  color: #1C1C1C;
}
.btn-white:hover {
  color: #000000;
  background: #F4F4F5;
  border-color: #F4F4F5;
}
.btn-white:active, .btn-white.active {
  color: #000000;
  background: #E9E9EA;
  border-color: #E9E9EA;
}
.btn-white:focus {
  color: #1C1C1C;
  background: #fff;
  border-color: #fff;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
}
.btn-white:disabled, .btn-white.disabled {
  color: #A8ABB1;
  background: #F4F4F5;
  border-color: #F4F4F5;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-brown-outline,
.btn-gold-outline {
  color: #A7831E;
  background: transparent;
  border: 2px solid #9E7B19;
  border-radius: 8px;
  font-weight: 600;
}
.btn-brown-outline:visited,
.btn-gold-outline:visited {
  color: #9E7B19;
}
.btn-brown-outline:hover,
.btn-gold-outline:hover {
  color: #fff;
  background: #9E7B19;
  border-color: #9E7B19;
}
.btn-brown-outline:active, .btn-brown-outline.active,
.btn-gold-outline:active,
.btn-gold-outline.active {
  color: #fff;
  background: #9E7B19;
  border-color: #9E7B19;
}
.btn-brown-outline:focus,
.btn-gold-outline:focus {
  color: #9E7B19;
  background: transparent;
  border-color: #A7831E;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(167, 131, 30, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(167, 131, 30, 0.5);
}
.btn-brown-outline:disabled, .btn-brown-outline.disabled,
.btn-gold-outline:disabled,
.btn-gold-outline.disabled {
  color: #A8ABB1;
  background: transparent;
  border-color: #C9CACD;
  cursor: not-allowed;
  opacity: 0.65;
}

.btn-white-outline {
  color: #fff;
  background: transparent;
  border: 2px solid #fff;
  border-radius: 8px;
  font-weight: 600;
}
.btn-white-outline:visited {
  color: #fff;
}
.btn-white-outline:hover {
  color: #1C1C1C;
  background: #fff;
  border-color: #fff;
}
.btn-white-outline:active, .btn-white-outline.active {
  color: #1C1C1C;
  background: #F1E2A9;
  border-color: #F1E2A9;
}
.btn-white-outline:focus {
  color: #fff;
  background: transparent;
  border-color: #fff;
  -webkit-box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
          box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-white-outline:disabled, .btn-white-outline.disabled {
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
  opacity: 0.65;
}

.btn.loading {
  color: transparent !important;
  pointer-events: none;
  position: relative;
}
.btn.loading::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-top-color: transparent;
  opacity: 0.5;
  -webkit-animation: btn-spinner 0.6s linear infinite;
          animation: btn-spinner 0.6s linear infinite;
}

@-webkit-keyframes btn-spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes btn-spinner {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.btn-cs-header {
  height: 40px;
}

.mobile-nav {
  margin-top: 25px;
}
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.btn-header {
  border-width: 1px;
}

.video-play-btn {
  display: inline-block;
  background-color: #A7831E;
  color: #fff;
  height: 53px;
  width: 53px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
  border: 3px solid #fff;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}
.video-play-btn:before {
  content: "▶"; /* Unicode character for right-pointing triangle */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -44%);
          transform: translate(-40%, -44%);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  z-index: 4;
}

/* =====| Modal |===== */
body.modal-open {
  padding-right: 15px; /* compensate for scrollbar */
}

.modal {
  z-index: 9999;
}

.modal-video {
  position: relative;
}
.modal-video .btn-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  background: #1C1C1C;
  color: #EACB6B;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.modal-video .btn-modal-close:hover {
  opacity: 0.8;
}
.modal-video .btn-modal-close span {
  display: inline-block;
  position: relative;
  bottom: 2px;
}
.modal-video .modal-body {
  padding: 0;
}

.jiffy-video {
  display: block;
  position: relative;
}
.jiffy-video__play {
  display: inline-block;
  background-color: #9E7B19;
  -webkit-box-shadow: 0 0px 26px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0px 26px rgba(0, 0, 0, 0.5);
  color: #fff;
  height: 52px;
  width: 52px;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.jiffy-video__play:before {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -44%);
          transform: translate(-40%, -44%);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  z-index: 4;
}
.jiffy-video:hover .jiffy-video__play {
  background-color: #fff;
  color: #9E7B19;
}

.video-modal {
  display: block;
  position: relative;
}
.video-modal .video-play {
  display: inline-block;
  background-color: #fff;
  color: #285847;
  height: 53px;
  width: 53px;
  border: none;
  border-radius: 50%;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 3;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}
.video-modal .video-play:before {
  content: "▶"; /* Unicode character for right-pointing triangle */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-40%, -44%);
          transform: translate(-40%, -44%);
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  z-index: 4;
}
.video-modal:hover .video-play {
  background-color: #285847;
  color: #fff;
}

.videoModal .modal-dialog {
  max-width: 920px !important;
}

.modal-backdrop {
  opacity: 0.7 !important; /* Change the opacity value as needed */
}

.modal-info .modal-body {
  padding: 30px;
}
.modal-info .modal-body .row.gx-40 {
  --bs-gutter-x: 40px;
}
.modal-info .btn-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  z-index: 10000;
  width: 40px;
  height: 40px;
  background: #1C1C1C;
  color: #EACB6B;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.modal-info .btn-modal-close:hover {
  opacity: 0.8;
}
.modal-info .btn-modal-close span {
  display: inline-block;
  position: relative;
  bottom: 2px;
}

.modal-integration {
  max-width: 700px;
}
@media (max-width: 767.98px) {
  .modal-integration {
    max-width: calc(100% - 30px);
    margin: 15px auto;
  }
}
.modal-integration .modal-content {
  border-radius: 10px;
  overflow: visible;
  background: #E9E9EA;
}

/*--------------------------------------------------------------
>>> Forms
--------------------------------------------------------------*/
/* =====| Section Styles |===== */
.jiffy-form {
  background: #F4F8F6;
  padding: 80px 0;
}
.jiffy-form__disclaimer {
  font-size: 14px;
  margin-top: 20px;
  max-width: 560px;
}

.jiffy-requestdemo {
  max-width: 560px;
}

#jiffyForm [type=color], #jiffyForm [type=date], #jiffyForm [type=datetime-local], #jiffyForm [type=email], #jiffyForm [type=month], #jiffyForm [type=number], #jiffyForm [type=password], #jiffyForm [type=search], #jiffyForm [type=tel], #jiffyForm [type=text], #jiffyForm [type=time], #jiffyForm [type=url], #jiffyForm [type=week], #jiffyForm input:not([type]), #jiffyForm textarea, #jiffyForm select, #jiffyFormGray [type=color], #jiffyFormGray [type=date], #jiffyFormGray [type=datetime-local], #jiffyFormGray [type=email], #jiffyFormGray [type=month], #jiffyFormGray [type=number], #jiffyFormGray [type=password], #jiffyFormGray [type=search], #jiffyFormGray [type=tel], #jiffyFormGray [type=text], #jiffyFormGray [type=time], #jiffyFormGray [type=url], #jiffyFormGray [type=week], #jiffyFormGray input:not([type]), #jiffyFormGray textarea, #jiffyFormGray select {
  background: white;
  border: none;
  margin-bottom: 8px;
  height: 40px !important;
  padding-left: 16px;
  width: 100%;
  max-width: 100%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
#jiffyForm ::-webkit-input-placeholder, #jiffyFormGray ::-webkit-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jiffyForm ::-moz-placeholder, #jiffyFormGray ::-moz-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jiffyForm :-ms-input-placeholder, #jiffyFormGray :-ms-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jiffyForm ::-ms-input-placeholder, #jiffyFormGray ::-ms-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jiffyForm ::placeholder, #jiffyFormGray ::placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jiffyForm select, #jiffyFormGray select {
  padding-left: 16px;
  color: rgba(136, 136, 136, 0.9);
}
#jiffyForm option, #jiffyFormGray option {
  color: #333;
}
#jiffyForm [type=color]:focus, #jiffyForm [type=date]:focus, #jiffyForm [type=datetime-local]:focus, #jiffyForm [type=email]:focus, #jiffyForm [type=month]:focus, #jiffyForm [type=number]:focus, #jiffyForm [type=password]:focus, #jiffyForm [type=search]:focus, #jiffyForm [type=tel]:focus, #jiffyForm [type=text]:focus, #jiffyForm [type=time]:focus, #jiffyForm [type=url]:focus, #jiffyForm [type=week]:focus, #jiffyForm input:not([type]):focus, #jiffyForm textarea:focus, #jiffyFormGray [type=color]:focus, #jiffyFormGray [type=date]:focus, #jiffyFormGray [type=datetime-local]:focus, #jiffyFormGray [type=email]:focus, #jiffyFormGray [type=month]:focus, #jiffyFormGray [type=number]:focus, #jiffyFormGray [type=password]:focus, #jiffyFormGray [type=search]:focus, #jiffyFormGray [type=tel]:focus, #jiffyFormGray [type=text]:focus, #jiffyFormGray [type=time]:focus, #jiffyFormGray [type=url]:focus, #jiffyFormGray [type=week]:focus, #jiffyFormGray input:not([type]):focus, #jiffyFormGray textarea:focus {
  background: #f5f5f5;
}
#jiffyForm textarea, #jiffyFormGray textarea {
  min-height: 80px;
  height: auto !important;
  padding: 10px;
  padding-left: 16px;
}

#jiffyFormGray [type=color], #jiffyFormGray [type=date], #jiffyFormGray [type=datetime-local], #jiffyFormGray [type=email], #jiffyFormGray [type=month], #jiffyFormGray [type=number], #jiffyFormGray [type=password], #jiffyFormGray [type=search], #jiffyFormGray [type=tel], #jiffyFormGray [type=text], #jiffyFormGray [type=time], #jiffyFormGray [type=url], #jiffyFormGray [type=week], #jiffyFormGray input:not([type]), #jiffyFormGray textarea, #jiffyFormGray select {
  background: #f5f5f5;
}

#jfy-RequestDemo {
  max-width: 570px;
}

.select-classic {
  position: relative;
}
.select-classic select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  /* add any other styling for the select field */
  position: relative;
  z-index: 2;
}
.select-classic:after {
  content: "";
  display: block;
  position: absolute;
  top: 25px;
  right: 15px; /* adjust this value to move the arrow left or right */
  width: 14.27px; /* adjust this value to change the width of the arrow */
  height: 7.97px; /* adjust this value to change the height of the arrow */
  background-image: url("../images/abstract/select-arrow.svg"); /* replace this with the path to your image file */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 5;
}

#jfy-meetUs [type=color], #jfy-meetUs [type=date], #jfy-meetUs [type=datetime-local], #jfy-meetUs [type=email], #jfy-meetUs [type=month], #jfy-meetUs [type=number], #jfy-meetUs [type=password], #jfy-meetUs [type=search], #jfy-meetUs [type=tel], #jfy-meetUs [type=text], #jfy-meetUs [type=time], #jfy-meetUs [type=url], #jfy-meetUs [type=week], #jfy-meetUs input:not([type]), #jfy-meetUs textarea, #jfy-meetUs select {
  background: #eaeaea;
  border: none;
  margin-bottom: 8px;
  height: 40px !important;
  padding-left: 16px;
  width: 100%;
  max-width: 100%;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
#jfy-meetUs ::-webkit-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jfy-meetUs ::-moz-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jfy-meetUs :-ms-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jfy-meetUs ::-ms-input-placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jfy-meetUs ::placeholder {
  color: rgba(136, 136, 136, 0.9);
  font-size: 16px;
}
#jfy-meetUs select {
  padding-left: 16px;
  color: rgba(136, 136, 136, 0.9);
}
#jfy-meetUs option {
  color: #333;
}
#jfy-meetUs [type=color]:focus, #jfy-meetUs [type=date]:focus, #jfy-meetUs [type=datetime-local]:focus, #jfy-meetUs [type=email]:focus, #jfy-meetUs [type=month]:focus, #jfy-meetUs [type=number]:focus, #jfy-meetUs [type=password]:focus, #jfy-meetUs [type=search]:focus, #jfy-meetUs [type=tel]:focus, #jfy-meetUs [type=text]:focus, #jfy-meetUs [type=time]:focus, #jfy-meetUs [type=url]:focus, #jfy-meetUs [type=week]:focus, #jfy-meetUs input:not([type]):focus, #jfy-meetUs textarea:focus {
  background: #f5f5f5;
}
#jfy-meetUs textarea {
  min-height: 80px;
  height: auto !important;
  padding: 10px;
  padding-left: 16px;
}

.jfy-download .jiffy-hsform {
  max-width: 570px;
}

.hsform-nolabel label {
  display: none;
}

.jiffy-hsform {
  margin-top: 20px;
}
.jiffy-hsform [type=color]:focus, .jiffy-hsform [type=date]:focus, .jiffy-hsform [type=datetime-local]:focus, .jiffy-hsform [type=email]:focus, .jiffy-hsform [type=month]:focus, .jiffy-hsform [type=number]:focus, .jiffy-hsform [type=password]:focus, .jiffy-hsform [type=search]:focus, .jiffy-hsform [type=tel]:focus, .jiffy-hsform [type=text]:focus, .jiffy-hsform [type=time]:focus, .jiffy-hsform [type=url]:focus, .jiffy-hsform [type=week]:focus, .jiffy-hsform input:not([type]):focus, .jiffy-hsform textarea:focus {
  outline: none;
}
.jiffy-hsform .hs-button {
  color: #fff;
  background: #BB8C32 !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px !important;
  padding: 10px 22px !important;
  margin-top: 5px;
  border: none;
}
.jiffy-hsform .hs-button:hover, .jiffy-hsform .hs-button:active {
  color: #fff;
  background: rgb(168.3, 126, 45) !important;
  cursor: pointer;
}

.hs-form-whitefields [type=color], .hs-form-whitefields [type=date], .hs-form-whitefields [type=datetime-local], .hs-form-whitefields [type=email], .hs-form-whitefields [type=month], .hs-form-whitefields [type=number], .hs-form-whitefields [type=password], .hs-form-whitefields [type=search], .hs-form-whitefields [type=tel], .hs-form-whitefields [type=text], .hs-form-whitefields [type=time], .hs-form-whitefields [type=url], .hs-form-whitefields [type=week], .hs-form-whitefields input:not([type]), .hs-form-whitefields textarea, .hs-form-whitefields [type=color]:active, .hs-form-whitefields [type=date]:active, .hs-form-whitefields [type=datetime-local]:active, .hs-form-whitefields [type=email]:active, .hs-form-whitefields [type=month]:active, .hs-form-whitefields [type=number]:active, .hs-form-whitefields [type=password]:active, .hs-form-whitefields [type=search]:active, .hs-form-whitefields [type=tel]:active, .hs-form-whitefields [type=text]:active, .hs-form-whitefields [type=time]:active, .hs-form-whitefields [type=url]:active, .hs-form-whitefields [type=week]:active, .hs-form-whitefields input:not([type]):active, .hs-form-whitefields textarea:active, .hs-form-whitefields [type=color]:focus, .hs-form-whitefields [type=date]:focus, .hs-form-whitefields [type=datetime-local]:focus, .hs-form-whitefields [type=email]:focus, .hs-form-whitefields [type=month]:focus, .hs-form-whitefields [type=number]:focus, .hs-form-whitefields [type=password]:focus, .hs-form-whitefields [type=search]:focus, .hs-form-whitefields [type=tel]:focus, .hs-form-whitefields [type=text]:focus, .hs-form-whitefields [type=time]:focus, .hs-form-whitefields [type=url]:focus, .hs-form-whitefields [type=week]:focus, .hs-form-whitefields input:not([type]):focus, .hs-form-whitefields textarea:focus, .hs-form-whitefields select {
  background: #fff !important;
}

/* =====| Form Columns |===== */
.jiffy-hsform .form-columns-1 {
  max-width: 100%;
}
.jiffy-hsform .form-columns-2 {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.98px) {
  .jiffy-hsform .form-columns-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.jiffy-hsform .form-columns-2 .hs-form-field {
  float: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 7px);
          flex: 0 0 calc(50% - 7px);
  margin-bottom: 12px;
  width: 100% !important;
}
@media (max-width: 767.98px) {
  .jiffy-hsform .form-columns-2 .hs-form-field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}
.jiffy-hsform .form-columns-3 {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 767.98px) {
  .jiffy-hsform .form-columns-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.jiffy-hsform .form-columns-3 .hs-form-field {
  float: none;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(33.33% - 10px);
          flex: 0 0 calc(33.33% - 10px);
  margin-bottom: 12px;
  width: 100% !important;
}
@media (max-width: 767.98px) {
  .jiffy-hsform .form-columns-3 .hs-form-field {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    width: 100%;
  }
}

/* =====| Errors and Warnings |===== */
.jiffy-hsform .hs-error-msgs {
  color: #B22222;
  font-size: 12px;
  line-height: 12px;
  list-style-type: none;
  padding-left: 0;
}
.jiffy-hsform .hs-error-msg {
  display: block;
}

.jf-slider .slick-dots {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.jf-slider .slick-dots > li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px;
  padding: 0;
  cursor: pointer;
}
.jf-slider .slick-dots > li > button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 7px;
  height: 7px;
  padding: 0px;
  color: transparent;
  background: tint(#285847, 60%);
  border-radius: 50%;
  border: 0;
  outline: none;
}
.jf-slider .slick-dots .slick-active > button {
  background: #285847;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
}
.slick-dots li {
  margin: 0 5px;
}
.slick-dots li button {
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background: #ddd;
  padding: 0;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
  color: transparent;
  border: none;
}
.slick-dots li.slick-active button {
  background: #BB8C32;
}

.hyperapp-accordian__collapse {
  font-size: 18px;
  line-height: 30px;
  position: relative;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  font-weight: 600;
  padding-left: 15px;
}
.hyperapp-accordian__collapse:active {
  background: none;
}
.hyperapp-accordian__collapse:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.hyperapp-accordian__collapse:hover {
  color: #285847;
}
.hyperapp-accordian__collapse[aria-expanded=true] {
  color: #285847;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.hyperapp-accordian__collapse[aria-expanded=true] .accordian-arrow svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.hyperapp-accordian .card {
  border: 1px solid #ddd;
  border-radius: 10px;
}
.hyperapp-accordian .card-header {
  background: #fff;
  border-bottom: none;
  padding: 2px 20px;
}
.hyperapp-accordian .card-body {
  background: #f9f9f9;
  padding: 35px 30px 35px 34px;
}
.hyperapp-accordian .accordian-arrow {
  position: absolute;
  right: 10px;
}
.hyperapp-accordian .accordian-arrow svg {
  color: #BB8C32;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
.hyperapp-accordian .inner-box {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}
@media (max-width: 1199.98px) {
  .hyperapp-accordian .inner-box {
    text-align: center;
  }
}
@media (min-width: 1200px) {
  .hyperapp-accordian .inner-box span {
    text-align: right;
  }
}
.hyperapp-accordian .inner-box p {
  line-height: 48px;
}
@media (max-width: 1199.98px) {
  .hyperapp-accordian .inner-box p {
    line-height: 30px;
    margin-bottom: 20px;
  }
}

/* =====| FAQ |===== */
/* FAQ Accordion - Bootstrap 5 Updated (Regular CSS) */
/* Update from .card to .accordion-item */
.faq-accordion .accordion-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

/* Update from .card-body to .accordion-body */
.faq-accordion .accordion-body {
  background: #f9f9f9;
  padding: 35px 30px 35px 34px;
}

/* Update from .card-header to .accordion-button */
.faq-accordion .accordion-button {
  cursor: pointer;
  position: relative;
  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;
  color: #333;
  background: #fff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: none;
  padding: 15px 30px;
  font-size: 18px;
  line-height: 28px;
}

.faq-accordion .accordion-button:hover {
  text-decoration: none;
}

/* Remove Bootstrap 5 default arrow */
.faq-accordion .accordion-button::after {
  display: none;
}

/* Add custom arrow */
.faq-accordion .accordion-button::before {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg); /* angle-down (collapsed) */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
  height: 6px;
  border: solid #C5955D; /* Replace with your brown color */
  border-width: 0 2px 2px 0;
  padding: 4px;
}

/* When accordion is open (not collapsed) */
.faq-accordion .accordion-button:not(.collapsed)::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg); /* angle-up (open) */
}

/* Remove default focus styles */
.faq-accordion .accordion-button:focus,
.faq-accordion .accordion-button:active,
.faq-accordion .accordion-button:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #fff;
}

/* Remove Bootstrap 5 default background on hover/focus */
.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #333;
}

/* Style the accordion header wrapper */
.faq-accordion .accordion-header {
  margin-bottom: 0;
}

.pagination .page-item .page-link {
  background: none;
  color: #BB8C32;
  border: 1px solid transparent;
  font-weight: 600;
  border-radius: 8px;
  padding: 9px 22px;
}
.pagination .page-item .page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.pagination .active .page-link {
  border: 1px solid #BB8C32;
}

/* =====| Header |===== */
.jfy-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 767.98px) {
  .btn-cs-header {
    display: none;
  }
}

.btn-header {
  margin-left: 22px;
}

@media (max-width: 1199.98px) {
  .btn-header-buttons {
    padding-bottom: 20px;
    padding-top: 20px;
    display: none;
  }
}

/* =====| Footer |===== */
.jiffy-footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
}
@media (max-width: 991.98px) {
  .jiffy-footer {
    text-align: center;
  }
}
.jiffy-footer a {
  color: #fff;
}
.jiffy-footer a:hover {
  color: #BB8C32;
}

.jiffy-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.jiffy-footer-logo img {
  height: 35px;
}

.jiffy-copyright {
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .jiffy-copyright {
    margin-bottom: 10px;
  }
}

.jiffy-legal-links {
  margin-bottom: 2px;
}
.jiffy-legal-links a {
  color: #9E7B19;
  font-weight: 600;
}
.jiffy-legal-links span {
  display: inline-block;
  margin: 0 6px;
}
@media (max-width: 991.98px) {
  .jiffy-legal-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.jiffy-social-icons {
  list-style: none;
  padding-left: 0;
}
.jiffy-social-icons > li {
  display: inline-block;
  margin-right: 20px;
}

.footer-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .footer-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.footer-wrap .footer-main {
  max-width: 320px;
}
@media (max-width: 1199.98px) {
  .footer-wrap .footer-main {
    text-align: center;
    margin: 0 auto 50px;
  }
}
.footer-wrap .footer-links {
  max-width: 762px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
@media (max-width: 1199.98px) {
  .footer-wrap .footer-links {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767.98px) {
  .footer-wrap .footer-links {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: repeat(2, 1fr); /* Two equal columns */
    gap: 40px; /* Adjust the gap between columns */
  }
}

.footer-menu {
  padding-left: 0;
  list-style: none;
}
.footer-menu__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
.footer-menu > li > a {
  font-size: 14px;
  line-height: 26px;
}

/* =====| News Bar |===== */
.newsbar {
  border-radius: 0;
  background: #111;
  margin-bottom: 0;
  text-align: left;
  height: 50px;
  z-index: 700;
  display: none;
}
@media (max-width: 767.98px) {
  .newsbar .container {
    padding: 0;
  }
}
.newsbar__title {
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 29px;
}
.newsbar .close {
  background: none;
  padding: 0 0 4px 0;
  color: #ccc;
  height: 20px;
  width: 20px;
  font-size: 18px;
  line-height: 12px;
  font-weight: 300;
  top: 3px;
  opacity: 1;
}
.newsbar .close:hover {
  color: #fff;
  opacity: 1 !important;
}
@media (max-width: 991.98px) {
  .newsbar .close {
    right: -50px;
    background: #9E7B19;
    font-size: 14px;
    border-radius: 100%;
  }
}
.newsbar .slick-slide {
  padding-left: 0;
}

.news-item {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.news-item a {
  color: rgba(221, 221, 221, 0.8666666667);
}

.news-link {
  font-family: "Source Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
  font-size: 16px;
  line-height: 25px;
  font-weight: 300;
  text-decoration: none !important;
  position: relative;
  left: 20px;
}
@media (max-width: 991.98px) {
  .news-link {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .news-link {
    font-size: 12px;
    line-height: 20px;
  }
}
.news-link:after {
  content: ">";
  display: inline-block;
  position: relative;
  left: 5px;
  bottom: 0px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 1000;
}
.news-link:hover {
  color: #fff;
}
.news-link:hover:after {
  left: 7px;
}
.news-link__strong {
  display: inline-block;
  padding-left: 20px;
  font-weight: 600;
}

/* =====| Mega Menu |===== */
.jiffy-navbar {
  width: 100%;
  top: 0;
  z-index: 999;
  background: #1C1C1C;
}
@media (max-width: 1199.98px) {
  .jiffy-navbar {
    padding: 15px 0 0px 0;
  }
}
.jiffy-navbar .navbar-logo {
  margin-right: 32px;
}
@media (max-width: 1199.98px) {
  .jiffy-navbar .navbar-logo {
    padding-bottom: 12px;
    padding-left: 15px;
  }
}
.jiffy-navbar .navbar-logo img {
  width: auto;
  height: 35px;
}
@media (max-width: 767.98px) {
  .jiffy-navbar .navbar-logo img {
    width: auto;
    height: 34px;
  }
}
.jiffy-navbar .hamburger {
  position: relative;
  bottom: 4px;
  right: 1px;
}

#jfyNavbar .navbar-nav {
  margin-top: 5px;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .navbar-nav {
    background: #1C1C1C;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
#jfyNavbar .navbar-nav > .nav-item > .nav-link {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  padding: 17px 0px;
  margin-inline: 18px;
  outline: none;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .navbar-nav > .nav-item > .nav-link {
    padding-left: 20px;
  }
}
#jfyNavbar .navbar-nav > .nav-item > .nav-link:hover {
  color: #9E7B19;
}
#jfyNavbar .navbar-nav > .nav-item > .nav-link:focus, #jfyNavbar .navbar-nav > .nav-item > .nav-link:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#jfyNavbar .navbar-nav > .nav-item .current-item {
  color: #9E7B19;
}
#jfyNavbar .navbar-nav .dropdown-menu {
  padding: 20px 0;
  top: 45px;
  inset-inline-start: 13px;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .navbar-nav .dropdown-menu {
    background: #000000;
  }
}
#jfyNavbar .navbar-nav .dropdown-item {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .navbar-nav .dropdown-item {
    color: #fff;
    -webkit-padding-start: 50px;
            padding-inline-start: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
#jfyNavbar .navbar-nav .dropdown-item:focus, #jfyNavbar .navbar-nav .dropdown-item:hover {
  background: rgba(187, 140, 50, 0.2);
  color: #333;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .navbar-nav .dropdown-item:focus, #jfyNavbar .navbar-nav .dropdown-item:hover {
    color: #fff;
  }
}
#jfyNavbar .navbar-nav .dropdown-toggle:after {
  display: none;
}
#jfyNavbar .navbar-nav .dropdown-toggle:focus, #jfyNavbar .navbar-nav .dropdown-toggle:focus-visible {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#jfyNavbar .active-menu > .nav-link, #jfyNavbar .active-menu .dropdown-toggle {
  color: #F1E2A9 !important;
  font-weight: 600;
  position: relative;
}
@media (max-width: 1199.98px) {
  #jfyNavbar .active-menu > .nav-link, #jfyNavbar .active-menu .dropdown-toggle {
    background: rgba(158, 123, 25, 0.4);
  }
}
#jfyNavbar .active-menu > .nav-link:before, #jfyNavbar .active-menu .dropdown-toggle:before {
  content: "";
  height: 2px;
  width: 100%;
  background: #F1E2A9;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1199.98px) {
  #jfyNavbar .active-menu > .nav-link:before, #jfyNavbar .active-menu .dropdown-toggle:before {
    display: none;
  }
}

@media (min-width: 1200px) {
  #mobileNav {
    display: none !important;
  }
}
#mobileNav .navbar-nav {
  margin-top: 10px;
  padding: 0 15px;
}
#mobileNav .navbar-nav > .nav-item {
  border-bottom: 1px solid #eaeaea;
  padding: 10px 0;
}
#mobileNav .navbar-nav > .nav-item > .nav-link {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
#mobileNav .navbar-nav .dropdown-menu > .nav-item {
  padding: 5px 0;
}
#mobileNav .navbar-nav .dropdown-toggle {
  position: relative;
}
#mobileNav .navbar-nav .dropdown-toggle:after {
  background-image: url("../images/abstract/select-arrow.svg");
  background-size: cover;
  width: 10px;
  height: 6px;
  border: none;
  text-align: right;
  position: absolute;
  top: 50%;
  left: 93%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*--------------------------------------------------------------
>>> Miscellaneous
--------------------------------------------------------------*/
/* =====| Bottom Margins |===== */
.mb-10 {
  margin-bottom: 10px !important;
}

.mt-10 {
  margin-top: 10px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt-60 {
  margin-top: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mt-70 {
  margin-top: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mt-80 {
  margin-top: 80px !important;
}

.mb-85 {
  margin-bottom: 85px !important;
}

.mt-85 {
  margin-top: 85px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

/* =====| Responsive Bottom Margins |===== */
.mb-120-50 {
  margin-bottom: 120px !important;
}
@media (max-width: 991.98px) {
  .mb-120-50 {
    margin-bottom: 50px !important;
  }
}

.mt-120-50 {
  margin-top: 120px;
}
@media (max-width: 991.98px) {
  .mt-120-50 {
    margin-top: 50px;
  }
}

.mb-120-70 {
  margin-bottom: 120px !important;
}
@media (max-width: 991.98px) {
  .mb-120-70 {
    margin-bottom: 70px !important;
  }
}

.mt-120-70 {
  margin-top: 120px;
}
@media (max-width: 991.98px) {
  .mt-120-70 {
    margin-top: 70px;
  }
}

.mb-100-0 {
  margin-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .mb-100-0 {
    margin-bottom: 0px !important;
  }
}

.mt-100-0 {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .mt-100-0 {
    margin-top: 0px;
  }
}

.mb-100-50 {
  margin-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .mb-100-50 {
    margin-bottom: 50px !important;
  }
}

.mt-100-50 {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .mt-100-50 {
    margin-top: 50px;
  }
}

.mb-100-70 {
  margin-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .mb-100-70 {
    margin-bottom: 70px !important;
  }
}

.mt-100-70 {
  margin-top: 100px;
}
@media (max-width: 991.98px) {
  .mt-100-70 {
    margin-top: 70px;
  }
}

.mb-80-50 {
  margin-bottom: 80px !important;
}
@media (max-width: 991.98px) {
  .mb-80-50 {
    margin-bottom: 50px !important;
  }
}

.mt-80-50 {
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .mt-80-50 {
    margin-top: 50px;
  }
}

.mb-80-70 {
  margin-bottom: 80px !important;
}
@media (max-width: 991.98px) {
  .mb-80-70 {
    margin-bottom: 70px !important;
  }
}

.mt-80-70 {
  margin-top: 80px;
}
@media (max-width: 991.98px) {
  .mt-80-70 {
    margin-top: 70px;
  }
}

.mb-85-85 {
  margin-bottom: 85px !important;
}
@media (max-width: 991.98px) {
  .mb-85-85 {
    margin-bottom: 85px !important;
  }
}

.mt-85-85 {
  margin-top: 85px;
}
@media (max-width: 991.98px) {
  .mt-85-85 {
    margin-top: 85px;
  }
}

.mb-85-45 {
  margin-bottom: 85px !important;
}
@media (max-width: 991.98px) {
  .mb-85-45 {
    margin-bottom: 45px !important;
  }
}

.mt-85-45 {
  margin-top: 85px;
}
@media (max-width: 991.98px) {
  .mt-85-45 {
    margin-top: 45px;
  }
}

.mb-70-50 {
  margin-bottom: 70px !important;
}
@media (max-width: 991.98px) {
  .mb-70-50 {
    margin-bottom: 50px !important;
  }
}

.mt-70-50 {
  margin-top: 70px;
}
@media (max-width: 991.98px) {
  .mt-70-50 {
    margin-top: 50px;
  }
}

.mb-60-10 {
  margin-bottom: 60px !important;
}
@media (max-width: 991.98px) {
  .mb-60-10 {
    margin-bottom: 10px !important;
  }
}

.mt-60-10 {
  margin-top: 60px;
}
@media (max-width: 991.98px) {
  .mt-60-10 {
    margin-top: 10px;
  }
}

.mb-50-0 {
  margin-bottom: 50px !important;
}
@media (max-width: 991.98px) {
  .mb-50-0 {
    margin-bottom: 0px !important;
  }
}

.mt-50-0 {
  margin-top: 50px;
}
@media (max-width: 991.98px) {
  .mt-50-0 {
    margin-top: 0px;
  }
}

.mb-30-0 {
  margin-bottom: 30px !important;
}
@media (max-width: 991.98px) {
  .mb-30-0 {
    margin-bottom: 0px !important;
  }
}

.mt-30-0 {
  margin-top: 30px;
}
@media (max-width: 991.98px) {
  .mt-30-0 {
    margin-top: 0px;
  }
}

/* =====| Padding |===== */
.pt-10 {
  padding-top: 10px !important;
}

.pb-10 {
  padding-bottom: 10px !important;
}

.pt-15 {
  padding-top: 15px !important;
}

.pb-15 {
  padding-bottom: 15px !important;
}

.pt-20 {
  padding-top: 20px !important;
}

.pb-20 {
  padding-bottom: 20px !important;
}

.pt-30 {
  padding-top: 30px !important;
}

.pb-30 {
  padding-bottom: 30px !important;
}

.pt-35 {
  padding-top: 35px !important;
}

.pb-35 {
  padding-bottom: 35px !important;
}

.pt-40 {
  padding-top: 40px !important;
}

.pb-40 {
  padding-bottom: 40px !important;
}

.pt-50 {
  padding-top: 50px !important;
}

.pb-50 {
  padding-bottom: 50px !important;
}

.pt-60 {
  padding-top: 60px !important;
}

.pb-60 {
  padding-bottom: 60px !important;
}

.pt-70 {
  padding-top: 70px !important;
}

.pb-70 {
  padding-bottom: 70px !important;
}

.pt-80 {
  padding-top: 80px !important;
}

.pb-80 {
  padding-bottom: 80px !important;
}

.pt-85 {
  padding-top: 85px !important;
}

.pb-85 {
  padding-bottom: 85px !important;
}

.pt-100 {
  padding-top: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/* =====| Responsive Padding |===== */
.pt-120-50 {
  padding-top: 120px !important;
}
@media (max-width: 991.98px) {
  .pt-120-50 {
    padding-top: 50px !important;
  }
}

.pb-120-50 {
  padding-bottom: 120px !important;
}
@media (max-width: 991.98px) {
  .pb-120-50 {
    padding-bottom: 50px !important;
  }
}

.pt-120-70 {
  padding-top: 120px !important;
}
@media (max-width: 991.98px) {
  .pt-120-70 {
    padding-top: 70px !important;
  }
}

.pb-120-70 {
  padding-bottom: 120px !important;
}
@media (max-width: 991.98px) {
  .pb-120-70 {
    padding-bottom: 70px !important;
  }
}

.pt-100-0 {
  padding-top: 100px !important;
}
@media (max-width: 991.98px) {
  .pt-100-0 {
    padding-top: 0px !important;
  }
}

.pb-100-0 {
  padding-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .pb-100-0 {
    padding-bottom: 0px !important;
  }
}

.pt-100-50 {
  padding-top: 100px !important;
}
@media (max-width: 991.98px) {
  .pt-100-50 {
    padding-top: 50px !important;
  }
}

.pb-100-50 {
  padding-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .pb-100-50 {
    padding-bottom: 50px !important;
  }
}

.pt-100-70 {
  padding-top: 100px !important;
}
@media (max-width: 991.98px) {
  .pt-100-70 {
    padding-top: 70px !important;
  }
}

.pb-100-70 {
  padding-bottom: 100px !important;
}
@media (max-width: 991.98px) {
  .pb-100-70 {
    padding-bottom: 70px !important;
  }
}

.pt-80-50 {
  padding-top: 80px !important;
}
@media (max-width: 991.98px) {
  .pt-80-50 {
    padding-top: 50px !important;
  }
}

.pb-80-50 {
  padding-bottom: 80px !important;
}
@media (max-width: 991.98px) {
  .pb-80-50 {
    padding-bottom: 50px !important;
  }
}

.pt-80-70 {
  padding-top: 80px !important;
}
@media (max-width: 991.98px) {
  .pt-80-70 {
    padding-top: 70px !important;
  }
}

.pb-80-70 {
  padding-bottom: 80px !important;
}
@media (max-width: 991.98px) {
  .pb-80-70 {
    padding-bottom: 70px !important;
  }
}

.pt-85-85 {
  padding-top: 85px !important;
}
@media (max-width: 991.98px) {
  .pt-85-85 {
    padding-top: 85px !important;
  }
}

.pb-85-85 {
  padding-bottom: 85px !important;
}
@media (max-width: 991.98px) {
  .pb-85-85 {
    padding-bottom: 85px !important;
  }
}

.pt-85-45 {
  padding-top: 85px !important;
}
@media (max-width: 991.98px) {
  .pt-85-45 {
    padding-top: 45px !important;
  }
}

.pb-85-45 {
  padding-bottom: 85px !important;
}
@media (max-width: 991.98px) {
  .pb-85-45 {
    padding-bottom: 45px !important;
  }
}

.pt-70-50 {
  padding-top: 70px !important;
}
@media (max-width: 991.98px) {
  .pt-70-50 {
    padding-top: 50px !important;
  }
}

.pb-70-50 {
  padding-bottom: 70px !important;
}
@media (max-width: 991.98px) {
  .pb-70-50 {
    padding-bottom: 50px !important;
  }
}

.pt-60-10 {
  padding-top: 60px !important;
}
@media (max-width: 991.98px) {
  .pt-60-10 {
    padding-top: 10px !important;
  }
}

.pb-60-10 {
  padding-bottom: 60px !important;
}
@media (max-width: 991.98px) {
  .pb-60-10 {
    padding-bottom: 10px !important;
  }
}

.pt-50-0 {
  padding-top: 50px !important;
}
@media (max-width: 991.98px) {
  .pt-50-0 {
    padding-top: 0px !important;
  }
}

.pb-50-0 {
  padding-bottom: 50px !important;
}
@media (max-width: 991.98px) {
  .pb-50-0 {
    padding-bottom: 0px !important;
  }
}

.pt-30-0 {
  padding-top: 30px !important;
}
@media (max-width: 991.98px) {
  .pt-30-0 {
    padding-top: 0px !important;
  }
}

.pb-30-0 {
  padding-bottom: 30px !important;
}
@media (max-width: 991.98px) {
  .pb-30-0 {
    padding-bottom: 0px !important;
  }
}

.p-48 {
  padding: 48px 48px 12px;
}

.pt-10 {
  padding-top: 10px;
}

.py-80 {
  padding: 80px 0;
}

.pt-60 {
  padding-top: 60px;
}

.pt-100-50 {
  padding-top: 100px;
}
@media (max-width: 991.98px) {
  .pt-100-50 {
    padding-top: 50px;
  }
}

.add-padding {
  padding: 48px;
}

.bb-none {
  border-bottom: none;
}

/* =====| Display Utilities |===== */
@media (max-width: 1199.98px) {
  .xl-up-only {
    display: none;
  }
}

@media (min-width: 1200px) {
  .xl-down-only {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .lg-up-only {
    display: none;
  }
}

@media (min-width: 992px) {
  .lg-down-only {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .md-up-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .md-down-only {
    display: none;
  }
}

.text-60 {
  font-size: 60px;
  line-height: 70px;
}

.text-50 {
  font-size: 50px;
  line-height: 60px;
}

.text-48 {
  font-size: 48px;
  line-height: 58px;
}
@media (max-width: 767.98px) {
  .text-48 {
    font-size: 36px;
    line-height: 46px;
  }
}

.text-45 {
  font-size: 45px;
  line-height: 55px;
}
@media (max-width: 767.98px) {
  .text-45 {
    font-size: 36px;
    line-height: 46px;
  }
}

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

.text-36 {
  font-size: 36px;
  line-height: 46px;
}
@media (max-width: 767.98px) {
  .text-36 {
    font-size: 30px;
    line-height: 40px;
  }
}

.text-32 {
  font-size: 32px;
  line-height: 42px;
}
@media (max-width: 767.98px) {
  .text-32 {
    font-size: 30px;
    line-height: 39px;
  }
}

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

.text-28 {
  font-size: 28px;
  line-height: 38px;
}

.text-24 {
  font-size: 24px;
  line-height: 34px;
}
@media (max-width: 767.98px) {
  .text-24 {
    font-size: 20px;
    line-height: 30px;
  }
}

.text-22 {
  font-size: 22px;
  line-height: 33px;
}

.text-20 {
  font-size: 20px;
  line-height: 30px;
}

.text-18 {
  font-size: 18px;
  line-height: 28px;
}

.text-16 {
  font-size: 16px;
  line-height: 26px;
}

.text-14 {
  font-size: 14px;
  line-height: 24px;
}

.weight-200,
.fw-200 {
  font-weight: 200 !important;
}

.weight-300,
.fw-300 {
  font-weight: 300 !important;
}

.weight-400,
.fw-400 {
  font-weight: 400 !important;
}

.weight-500,
.fw-500 {
  font-weight: 500 !important;
}

.weight-600,
.fw-600 {
  font-weight: 600 !important;
}

.weight-700,
.fw-700 {
  font-weight: 700 !important;
}

.weight-800,
.fw-800 {
  font-weight: 800 !important;
}

.weight-900,
.fw-900 {
  font-weight: 900 !important;
}

.ls-2 {
  letter-spacing: 0.02em;
}

.text-underlined {
  text-decoration: underline;
}

.bra-10 {
  border-radius: 10px;
}

.mw-568 {
  max-width: 568px;
}

.mw-541 {
  max-width: 541px;
}

.mw-435 {
  max-width: 435px;
}

.lh-1 {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-base {
  line-height: 1.5;
}

.lh-lg {
  line-height: 2;
}

.text-nunito {
  font-family: "Source Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
}

.text-fira {
  font-family: "Source Sans", Open Sans, Segoi UI, Arial, Helvetica;
}