@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);
}

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

body {
  font-family: "Nunito Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
  color: #333;
  font-size: 16px;
  font-weight: 300;
  padding-top: 79px;
}
@media (max-width: 767px) {
  body {
    padding-top: 61px;
  }
}
@media (max-width: 1200px) {
  body {
    padding-top: 66px;
  }
}

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

figure {
  margin-bottom: 0;
}

::-moz-selection {
  background: #BB8C32;
  color: #fff;
}

::selection {
  background: #BB8C32;
  color: #fff;
}

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

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

p {
  font-size: 16px;
  line-height: 22px;
}

strong {
  font-weight: 600;
}

sup {
  font-size: 10px;
}

/*--------------------------------------------------------------
>>> 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-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: 1200px) {
  .wrapper-930 {
    padding: 0 30px;
  }
}

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

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

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

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

.container {
  max-width: 1310px;
}

@media (max-width: 767px) {
  .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: 700;
  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;
}

/* =====| Hero |===== */
.home-banner {
  background: #285847;
  position: relative;
  padding-top: 80px;
  margin-bottom: 150px;
}
@media (max-width: 992px) {
  .home-banner {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .home-banner {
    padding-bottom: 50px;
  }
}
.home-banner__screen {
  max-width: 60%;
  position: relative;
  display: block;
  z-index: 0;
}
.home-banner__screen:hover .video-play-btn {
  background: #fff;
  color: #BB8C32;
  border-color: #BB8C32;
}
@media (max-width: 992px) {
  .home-banner__screen {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .home-banner__screen {
    max-width: 100%;
  }
}
.home-banner__image {
  width: 100%;
  position: relative;
  z-index: 1;
}
.home-banner__circles {
  max-width: 117px;
  position: absolute;
  top: -48px;
  right: -51px;
  z-index: 0;
}
.home-banner .triangle-bg {
  width: 100%;
  background: #fff;
  position: absolute;
  height: 625px;
  clip-path: polygon(100% 19%, 0 100%, 100% 100%);
  bottom: -1px;
  z-index: 3;
}
@media (max-width: 992px) {
  .home-banner .triangle-bg {
    display: none;
  }
}
.home-banner__inner {
  max-width: 1117px;
  position: absolute;
  left: 41%;
  top: 51%;
  z-index: 4;
  -webkit-transform: translate(0%, 60%);
          transform: translate(0%, 60%);
}
@media (max-width: 992px) {
  .home-banner__inner {
    position: static;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
    color: #fff;
    padding: 0 30px;
  }
}
.home-banner__content {
  max-width: 655px;
  margin-left: auto;
  position: relative;
}
@media (max-width: 992px) {
  .home-banner__content {
    margin: 0 auto;
    text-align: center;
  }
}
.home-banner__angle {
  position: absolute;
  top: 10px;
  right: -10px;
}
@media (max-width: 992px) {
  .home-banner__angle {
    display: none;
  }
}
.home-banner__arrow {
  position: absolute;
  left: -75px;
  top: 32px;
}
@media (max-width: 992px) {
  .home-banner__arrow {
    display: none;
  }
}
.home-banner__title {
  font-size: 50px;
  line-height: 66px;
  font-weight: 700;
  color: #285847;
  letter-spacing: 0.02em;
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .home-banner__title {
    color: #fff;
    font-size: 32px;
    line-height: 40px;
  }
}
.home-banner__text {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .home-banner__text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .home-banner__text {
    margin-bottom: 30px;
  }
}

.hero-banner__label {
  background: #487162 url("../images/home/ai-stars.svg") no-repeat 21px 7px;
  display: inline-block;
  color: #fff;
  height: 34px;
  width: 187px;
  border-radius: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 34px;
  padding-left: 20px;
  margin-bottom: 17px;
  font-weight: 600;
}

.home-banner__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.home-banner__buttons .home-banner-btn {
  margin-right: 10px;
}
@media (max-width: 767px) {
  .home-banner__buttons .home-banner-btn {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .home-banner__buttons .btn {
    width: 200px;
  }
}
@media (max-width: 992px) {
  .home-banner__buttons {
    margin-bottom: 10px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (max-width: 767px) {
  .home-banner__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* =====| Metrics |===== */
.jiffy-metrics-iconed {
  text-align: center;
}
.jiffy-metrics-iconed .jiffy-metric__icon {
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .jiffy-metrics-iconed .jiffy-metric__icon {
    margin-bottom: 10px;
  }
}
@media (max-width: 992px) {
  .jiffy-metrics-iconed .jiffy-metric {
    margin-bottom: 50px;
  }
}
.jiffy-metrics-iconed .jiffy-metric__figure {
  color: #285847;
  line-height: 48px;
}
@media (max-width: 992px) {
  .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: 992px) {
  .jiffy-metrics-iconed .jiffy-metric__number {
    line-height: 20px;
  }
}

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

/* =====| Casestudies |===== */
.jiffy-casestudy-box {
  padding: 36px;
  border-radius: 10px;
  display: block;
  width: 293px;
  height: 280px;
  color: #333;
  margin-bottom: 36px;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.01);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.01); /* Subtle shadow */
}
@media (max-width: 992px) {
  .jiffy-casestudy-box {
    margin: 0 auto 40px;
  }
}
.jiffy-casestudy-box:hover {
  color: #333;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.09);
          box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.09);
}
.jiffy-casestudy-box__title {
  line-height: 24px;
}
.jiffy-casestudy-box__text {
  line-height: 22px;
}

.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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .jiffy-casestudy__headshot, .jiffy-testimonial__headshot {
    margin-bottom: 10px;
    max-width: auto;
  }
}
@media (max-width: 992px) {
  .jiffy-casestudy__info, .jiffy-testimonial__info {
    text-align: center;
  }
}
.jiffy-casestudy__logo img, .jiffy-testimonial__logo img {
  display: inline-block !important;
}
@media (max-width: 992px) {
  .jiffy-casestudy__logo, .jiffy-testimonial__logo {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* =====| Casestudy Slider |===== */
.jiffy-casestudy-slide, .jiffy-testimonial {
  background: rgb(245, 245, 245);
  padding: 50px;
}

/* =====| Platform & Products |===== */
.jiffy-showcase .tab-content {
  background: #285847;
}
@media (max-width: 992px) {
  .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: 992px) {
  .showcase-box {
    padding: 40px;
  }
}
.showcase-box__title {
  font-size: 36px;
  line-height: 45px;
}
@media (max-width: 992px) {
  .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;
}

/* =====| Industries |===== */
.industry-tabs .nav-pills {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .industry-tabs .nav-pills {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin-bottom: 40px;
  }
}
.industry-tabs .nav-pills .nav-link {
  background: #fff;
  color: #666;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
@media (max-width: 767px) {
  .industry-tabs .nav-pills .nav-link {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.industry-tabs .nav-pills .nav-link.active {
  background: #fff;
  color: #285847;
}
.industry-tabs .nav-pills .nav-link.active .industry-tab__icon {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.industry-tabs .nav-pills .nav-link.active:after {
  border-bottom: 3px solid #285847;
}
.industry-tabs .nav-pills .nav-link:after {
  content: "";
  display: block;
  border-bottom: 3px solid transparent;
  width: 100%;
  padding-top: 10px;
}

.industry-tab {
  background: #f5f5f5;
}
.industry-tab__icon {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  margin-right: 8px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
}
@media (max-width: 992px) {
  .industry-tab__icon {
    margin-bottom: 10px;
  }
}
.industry-tab__icon img {
  height: 30px;
}

.industry-box {
  padding: 36px;
}
@media (max-width: 992px) {
  .industry-box {
    max-width: 410px;
    margin: 0 auto 40px;
  }
}
.industry-box__title {
  line-height: 24px !important;
}

#wealthContent .industry-box {
  min-height: 547px;
}
@media (max-width: 767px) {
  #wealthContent .industry-box {
    min-height: auto;
  }
}

#bankingContent .industry-box {
  min-height: 481px;
}
@media (max-width: 767px) {
  #bankingContent .industry-box {
    min-height: auto;
  }
}

/* =====| 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: #285847;
}
.underline-green:after {
  border-color: #285847;
}

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

/* =====| Box Headings |===== */
.box-heading {
  display: inline-block;
  text-align: center;
  padding: 11px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.02em;
  color: #333;
}
@media (max-width: 992px) {
  .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: #285847;
  color: #fff;
  padding: 70px 0;
}
.jfy-hero__thumb, .jfy-hero__video {
  max-width: 520px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .jfy-hero__thumb, .jfy-hero__video {
    margin-bottom: 30px;
  }
}
.jfy-hero__inner {
  max-width: 646px;
}

@media (max-width: 767px) {
  .jiffy-hero__title {
    font-size: 35px !important;
    line-height: 45px !important;
  }
}
@media (max-width: 992px) {
  .jiffy-hero__image {
    text-align: center;
    margin: 0 auto 30px;
  }
}
@media (max-width: 767px) {
  .jiffy-hero__inner {
    text-align: center;
  }
}
.jiffy-hero__title {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .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: 992px) {
  .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: 992px) {
  .jfy-iconbox {
    margin: 0 auto 70px;
  }
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .jfy-graybox {
    padding: 40px;
  }
}

.jfy-stat {
  background: #fff;
  text-align: center;
  padding: 47px;
  width: 250px;
  height: 285px;
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .jfy-clientbox {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .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: 992px) {
  .jfy-feature {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .jfy-feature {
    display: block;
    text-align: center;
    margin: 0 auto 40px;
  }
}
.jfy-feature__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  max-width: 42px;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .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: 992px) {
  .jfy-feature__title {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .jfy-feature__title {
    margin-bottom: 5px;
  }
}

.callout-box {
  background-color: #285847;
  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;
}

.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: "Nunito 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: 992px) {
  .jfy-problem, .cs-problem {
    margin-bottom: 50px;
  }
}

.jfy-ps, .cs-ps {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .jfy-ps, .cs-ps {
    margin-bottom: 30px;
  }
}
.jfy-ps__title, .cs-ps__title {
  font-size: 20px;
  line-height: 29px;
}
@media (max-width: 992px) {
  .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: 992px) {
  .jfy-demobox {
    padding: 40px;
  }
}
@media (max-width: 992px) {
  .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: 992px) {
  #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: 767px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 1200px) {
  .jfy-testimonial__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 32%;
            flex: 0 0 32%;
    max-width: 32%;
  }
}
@media (max-width: 992px) {
  .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: 1200px) {
  .jfy-testimonial__inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 68%;
            flex: 0 0 68%;
    max-width: 68%;
  }
}
@media (max-width: 992px) {
  .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: 1200px) {
  .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: 1200px) {
  .jfy-testimonial__customer {
    margin-bottom: 15px;
  }
}
@media (max-width: 992px) {
  .jfy-testimonial__customer {
    font-size: 14px;
    line-height: 23px;
  }
}
@media (max-width: 992px) {
  .jfy-testimonial__customer span {
    display: block;
  }
}
.jfy-testimonial__logo {
  max-width: 110px;
  margin-bottom: 24px;
}
@media (max-width: 1200px) {
  .jfy-testimonial__logo {
    max-width: 140px;
  }
}

.jfy-alternate__thumbnail {
  max-width: 541px;
}
@media (max-width: 992px) {
  .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: 992px) {
  .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: 767px) {
  .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: 992px) {
  .formside-logos {
    margin-top: 50px;
  }
}
.formside-logos__title {
  letter-spacing: 2%;
  margin-bottom: 37px;
}
@media (max-width: 992px) {
  .formside-logos__title {
    margin-bottom: 20px;
  }
}
.formside-logos__divider {
  max-width: 350px;
  width: 100%;
  height: 1px;
  margin: 30px 0 20px;
}
@media (max-width: 767px) {
  .formside-logos img {
    width: 100%;
  }
}

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

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

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

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

.jfy-green-banner {
  background: #285847;
  color: #fff;
  padding: 60px;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .jfy-green-banner {
    padding: 40px;
  }
}
.jfy-green-banner__thumb {
  max-width: 468px;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .overview-banner__image {
    display: none;
  }
}
@media (max-width: 992px) {
  .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: 992px) {
  .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: 767px) {
  .platform-comparisons .section-header {
    margin-bottom: 30px;
  }
}

.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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .e-Invoicing .jfy-boxless-simple {
    margin: 0 auto 40px;
  }
}

.cfo-read-more {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .e-Invoicing .jfy-boxless-simple {
    margin: 0 auto 40px;
  }
}

.cfo-read-more {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 1200px) {
  .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: 992px) {
  .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: 767px) {
  .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: 992px) {
  .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: 992px) {
  .metrics-box {
    padding-bottom: 20px;
  }
}
.metrics-box__inner {
  max-width: 780px;
  margin: 0 auto;
}

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

.media-products {
  padding: 100px 0 30px;
}
@media (max-width: 767px) {
  .media-products {
    padding: 50px 0 10px;
  }
}

.jiffy-hero {
  background: #285847;
  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: 767px) {
  .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: #BB8C32;
  font-weight: 700;
}

.sticky-container {
  position: relative;
}

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

.solutions-nav {
  position: sticky;
  top: 79px;
  background: #fff;
  z-index: 55;
  padding: 10px 0;
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 992px) {
  .jiffy-feature {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .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: 767px) {
  .jiffy-feature__icon {
    margin-bottom: 10px;
  }
}

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

.green-rush {
  background: #285847;
  color: #fff;
}
.green-rush__header {
  background: #144030;
  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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .green-rush__icon {
    margin-right: 0;
    margin-bottom: 12px;
  }
}
.green-rush__number {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .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: 767px) {
  .green-rush__video {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .green-rush .jfy-resourcebox {
    margin-bottom: 20px;
  }
}

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

@media (max-width: 767px) {
  .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: 992px) {
  .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: 767px) {
  .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: 992px) {
  .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: 767px) {
  .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: 767px) {
  .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: 992px) {
  .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: 992px) {
  #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: 992px) {
  .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: 20px;
  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: 767px) {
  .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: 767px) {
  .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: #285847;
}
.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: #3e6959;
}

.jfy-sidenav__indicator {
  position: absolute;
  left: 0px;
  width: 3px;
  background: #285847;
  -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: 992px) {
  .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: 992px) {
  .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: #285847;
  color: #fff;
  text-align: center;
}
@media (max-width: 992px) {
  .jf-about__leaders {
    padding: 40px 30px 0;
    margin-bottom: 50px;
  }
}
.jf-about__leaders .section-header {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .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: 767px) {
  .jf-about__jiffy {
    padding: 40px 30px 0;
    margin-bottom: 50px;
  }
}
.jf-about__jiffy .section-header {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .jf-about__jiffy .section-header {
    margin-bottom: 40px;
  }
}

.jf-leader {
  margin-bottom: 70px;
}
@media (max-width: 767px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .certification__image {
    margin: 0 auto 20px;
  }
}
@media (max-width: 992px) {
  .certification {
    text-align: center;
  }
}

.news-banner {
  overflow: hidden;
}
@media (max-width: 992px) {
  .news-banner {
    padding-bottom: 0;
  }
}
.news-banner .jfy-hero__thumb {
  max-width: 464px;
  position: relative;
  bottom: 37px;
}
@media (max-width: 992px) {
  .news-banner .jfy-hero__thumb {
    bottom: 0;
    right: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .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: 767px) {
  .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: 992px) {
  .iph-feature__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .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;
}

.cs-banner {
  padding: 50px 0;
}
@media (max-width: 992px) {
  .cs-banner__image {
    margin-bottom: 30px;
  }
}
.cs-banner__logo {
  margin-bottom: 20px;
}
.cs-banner__logo img {
  height: 55px;
  width: auto;
}
@media (max-width: 992px) {
  .cs-banner__logo img {
    height: 45px;
  }
}
@media (min-width: 992px) {
  .cs-banner__inner {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .cs-banner__inner {
    text-align: center;
  }
}
.cs-banner__text {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .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: 992px) {
  .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: 767px) {
  .evt-banner {
    padding: 40px;
  }
}
.evt-banner__title {
  font-size: 40px;
  line-height: 50px;
  font-weight: 400;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .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: 992px) {
  .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: 992px) {
  .livebox__content {
    max-width: 100%;
    padding-bottom: 200px;
    padding-left: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 992px) {
  .hero-innovator {
    background-size: cover;
    background-position: center left;
  }
}

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

.jf-template {
  background: #fff;
  border-radius: 10px;
  padding: 60px;
  max-width: 930px;
  margin: 0 auto 60px;
}
@media (max-width: 767px) {
  .jf-template {
    padding: 40px;
    margin-bottom: 0;
  }
}
.jf-template__title {
  font-size: 32px;
  font-weight: 600;
  color: #285847;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .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: "Nunito 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: #a87e2d !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: 767px) {
  .events-banner {
    margin-bottom: 60px;
    padding-top: 40px;
  }
}

.gartner-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
}
@media (max-width: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .livebox, .livebox-alt {
    background-size: 24% auto, 26% auto;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .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: 992px) {
  .livebox__inner, .livebox__inner-2, .livebox-alt__inner, .livebox-alt__inner-2 {
    padding: 0 30px 130px;
  }
}
@media (max-width: 767px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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;
}

.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: 100px 0;
  background: #F4F8F6;
}
.jiffy-clients-partners .logos-carousel img {
  max-height: 40px;
  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;
  font-family: "Nunito Sans", Nunito, Open Sans, Segoi UI, Arial, Helvetica;
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
  font-weight: 600;
}

.btn-brown, .btn-gold {
  color: #fff;
  background: #BB8C32;
  border-radius: 8px;
}
.btn-brown:hover, .btn-brown:active, .btn-gold:hover, .btn-gold:active {
  color: #fff;
  background: #a87e2d;
}

.btn-brown-outline, .btn-gold-outline {
  color: #BB8C32;
  border: 2px solid #BB8C32;
  border-radius: 8px;
}
.btn-brown-outline:hover, .btn-brown-outline:active, .btn-gold-outline:hover, .btn-gold-outline:active {
  color: #fff;
  background: #a87e2d;
}

.btn-green {
  color: #fff;
  background: #285847;
  border-radius: 8px;
}
.btn-green:hover, .btn-green:active {
  color: #fff;
  background: #244f40;
}

.btn-cs-header {
  height: 40px;
}

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

.btn-white {
  color: #285847;
  background: #fff;
  border-radius: 8px;
  border: 25px solid #fff;
}
.btn-white:hover, .btn-white:active {
  color: #fff;
  background: transparent;
  color: #fff;
}

.btn-white-outline {
  border: 2px solid #fff;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
}
.btn-white-outline:hover {
  background: #fff;
  color: #285847;
}

.btn-brown-outline, .btn-gold-outline {
  border: 2px solid #BB8C32;
  border-radius: 8px;
  color: #BB8C32;
  font-weight: 600;
}
.btn-brown-outline:hover, .btn-gold-outline:hover {
  background: #BB8C32;
  color: #fff;
}

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

.video-play-btn {
  display: inline-block;
  background-color: #BB8C32;
  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 .modal-header {
  border: none;
  padding: 0;
  position: relative;
}
.modal-video .modal-header .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10000;
  width: 40px;
  height: 40px;
  background: #BB8C32;
  color: #fff;
  border-radius: 50%;
  opacity: 1;
}
.modal-video .modal-header .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.modal-video .modal-body {
  padding: 0;
}

.jiffy-video {
  display: block;
  position: relative;
}
.jiffy-video__play {
  display: inline-block;
  background-color: #BB8C32;
  -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: "▶"; /* 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;
}
.jiffy-video:hover .jiffy-video__play {
  background-color: #fff;
  color: #BB8C32;
}

.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 */
}

/*--------------------------------------------------------------
>>> 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], #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], #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]: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]: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], #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], #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]: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]: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: #a87e2d !important;
  cursor: pointer;
}

.hs-form-whitefields [type=color], .hs-form-whitefields [type=date], .hs-form-whitefields [type=datetime], .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]: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]: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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: 767px) {
  .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: #a9bcb5;
  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: 1200px) {
  .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: 1200px) {
  .hyperapp-accordian .inner-box p {
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.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: 767px) {
  .btn-cs-header {
    display: none;
  }
}

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

@media (max-width: 1200px) {
  .btn-header-buttons {
    padding-bottom: 20px;
    padding-top: 20px;
    background: #204639;
  }
}

/* =====| Footer |===== */
.jiffy-footer {
  background: #000;
  color: #fff;
  padding: 60px 0;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 992px) {
  .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: 992px) {
  .jiffy-copyright {
    margin-bottom: 10px;
  }
}

.jiffy-legal-links {
  margin-bottom: 2px;
}
.jiffy-legal-links a {
  color: #BB8C32;
  font-weight: 600;
}
.jiffy-legal-links span {
  display: inline-block;
  margin: 0 6px;
}
@media (max-width: 992px) {
  .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: 1200px) {
  .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: 1200px) {
  .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: 1200px) {
  .footer-wrap .footer-links {
    text-align: center;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .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: 767px) {
  .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: 992px) {
  .newsbar .close {
    right: -50px;
    background: #BB8C32;
    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: "Nunito 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: 992px) {
  .news-link {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .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: #285847;
}
@media (max-width: 1200px) {
  .jiffy-navbar {
    padding: 15px 0 0px 0;
  }
}
.jiffy-navbar .navbar-logo {
  margin-right: 32px;
}
@media (max-width: 1200px) {
  .jiffy-navbar .navbar-logo {
    padding-bottom: 12px;
    padding-left: 15px;
  }
}
.jiffy-navbar .navbar-logo img {
  width: auto;
  height: 50px;
}
@media (max-width: 767px) {
  .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: 1200px) {
  #jfyNavbar .navbar-nav {
    background: #376454;
    padding-top: 20px;
    padding-bottom: 10px;
  }
}
#jfyNavbar .navbar-nav > .nav-item > .nav-link {
  font-size: 16px;
  color: #fff;
  padding: 17px 0px;
  margin-left: 18px;
  margin-right: 18px;
}
@media (max-width: 1200px) {
  #jfyNavbar .navbar-nav > .nav-item > .nav-link {
    padding-left: 20px;
  }
}
#jfyNavbar .navbar-nav > .nav-item .current-item {
  color: #285847;
  font-weight: 600;
}
#jfyNavbar .navbar-nav .dropdown-menu {
  padding: 20px 0;
  top: 45px;
  left: 13px;
}
@media (max-width: 1200px) {
  #jfyNavbar .navbar-nav .dropdown-menu {
    background: #426c5d;
  }
}
#jfyNavbar .navbar-nav .dropdown-item {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 1200px) {
  #jfyNavbar .navbar-nav .dropdown-item {
    color: #fff;
    padding-left: 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;
}
@media (max-width: 1200px) {
  #jfyNavbar .navbar-nav .dropdown-item:focus, #jfyNavbar .navbar-nav .dropdown-item:hover {
    color: #fff;
  }
}
#jfyNavbar .navbar-nav .dropdown-toggle:after {
  display: none;
}
#jfyNavbar .active-menu > .nav-link, #jfyNavbar .active-menu .dropdown-toggle {
  color: #fff !important;
  font-weight: 600;
  position: relative;
}
@media (max-width: 1200px) {
  #jfyNavbar .active-menu > .nav-link, #jfyNavbar .active-menu .dropdown-toggle {
    background: rgba(187, 140, 50, 0.4);
  }
}
#jfyNavbar .active-menu > .nav-link:before, #jfyNavbar .active-menu .dropdown-toggle:before {
  content: "";
  height: 2px;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 1200px) {
  #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: 992px) {
  .mb-120-50 {
    margin-bottom: 50px !important;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.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: 992px) {
  .pt-100-50 {
    padding-top: 50px;
  }
}

.add-padding {
  padding: 48px;
}

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

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

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

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

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

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

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

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

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

.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: 767px) {
  .text-48 {
    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: 767px) {
  .text-36 {
    font-size: 30px;
    line-height: 40px;
  }
}

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

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

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

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

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

.text-20 {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 767px) {
  .text-20 {
    font-size: 18px;
    line-height: 28px;
  }
}

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

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

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

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

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

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

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

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

.weight-800 {
  font-weight: 800 !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;
}