:root {
  --findox-font: "DM Sans", sans-serif;
  --findox-heading-font: "Sora", sans-serif;
  --findox-text: #636363;
  --findox-text-rgb: 99, 99, 99;
  --findox-base: #006654;
  --findox-base-rgb: 0, 102, 84;
  --findox-primary: #f5c835;
  --findox-primary-rgb: 245, 200, 53;
  --findox-gray: #92918f;
  --findox-gray-rgb: 146, 145, 143;
  --findox-white: #ffffff;
  --findox-white-rgb: 255, 255, 255;
  --findox-white2: #f0f2f8;
  --findox-white2-rgb: 240, 242, 248;
  --findox-white3: #ecf5f4;
  --findox-white3-rgb: 236, 245, 244;
  --findox-white4: #e2edec;
  --findox-white4-rgb: 226, 237, 236;
  --findox-black: #000000;
  --findox-black-rgb: 0, 0, 0;
  --findox-black2: #222222;
  --findox-black2-rgb: 34, 34, 34;
  --findox-black3: #333333;
  --findox-black3-rgb: 51, 51, 51;
  --findox-black4: #131111;
  --findox-black4-rgb: 19, 17, 17;
  --findox-black5: #444444;
  --findox-black5-rgb: 68, 68, 68;
  --findox-border-color: #dddddd;
  --findox-border-color-rgb: 221, 221, 221;
  --section-space: 120px;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-weight: 400;
  color: var(--findox-text, #636363);
  font-size: 16px;
  line-height: 1.625;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--findox-base, #006654);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  color: var(--findox-black, #000000);
}
@media (max-width: 767px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 767px) {
  p br {
    display: none;
  }
}

.findox-text {
  color: var(--findox-text, #636363);
}

.background-base {
  background-color: var(--findox-base, #006654);
}

.background-white {
  background-color: var(--findox-white, #ffffff);
}

.background-white2 {
  background-color: var(--findox-white2, #f0f2f8);
}

.background-white3 {
  background-color: var(--findox-white3, #ecf5f4);
}

.background-black {
  background-color: var(--findox-black, #000000);
}

.background-black-2 {
  background-color: var(--findox-black2, #222222);
}

.background-black-3 {
  background-color: var(--findox-black3, #333333);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.section-space {
  padding-top: var(--section-space, 120px);
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-t {
  padding-top: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-t {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-t {
    padding-top: 80px;
  }
}

.section-space-b {
  padding-bottom: var(--section-space, 120px);
}
@media (max-width: 767px) {
  .section-space-b {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-b {
    padding-bottom: 80px;
  }
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-40 {
  --bs-gutter-y: 40px;
}

.gutter-y-50 {
  --bs-gutter-y: 50px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* section title */
.sec-title {
  margin-bottom: 11px;
}
.sec-title--center {
  margin-bottom: 38px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  justify-content: center;
  padding-left: 44px;
  clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
}
.sec-title__top {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 17px;
  padding: 13px 37px 11px 30px;
  background-color: var(--tagline-bg);
  clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%);
}
@media (max-width: 767px) {
  .sec-title__top {
    padding-left: 25px;
  }
}
.sec-title__shape {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 1px;
}
@media (max-width: 767px) {
  .sec-title__shape {
    top: 0px;
  }
}
.sec-title__tagline {
  margin: 0px;
  font-size: 18px;
  color: var(--findox-primary, #f5c835);
  font-weight: 600;
  line-height: 1.277;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .sec-title__tagline {
    font-size: 16px;
  }
}
.sec-title__title {
  margin: 0px;
  font-size: 35px;
  font-weight: 700;
  color: var(--title-color);
  line-height: 1.314;
}
@media (max-width: 575px) {
  .sec-title__title {
    font-size: 30px;
  }
}

/* button */
.findox-btn {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 7px 8px 7px 32px;
  background-color: var(--findox-primary, #f5c835);
  z-index: 1;
  overflow: hidden;
  border-radius: 0px 100px 100px 0px;
  transition: 500ms;
}
@media (max-width: 390px) {
  .findox-btn {
    padding-left: 25px;
  }
}
.findox-btn::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.findox-btn::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.findox-btn:hover::after {
  width: 100%;
  left: 0px;
}
.findox-btn__text {
  display: inline-block;
  font-size: 16px;
  color: var(--findox-black4, #131111);
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
  transition: all 500ms ease;
}
.findox-btn__icon-box {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.findox-btn__icon {
  width: 12px;
  height: 12px;
  position: relative;
  overflow: hidden;
  font-size: 12px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.findox-btn__icon i {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.findox-btn__icon i:last-child {
  left: -15px;
  bottom: -15px;
  transform: translate(0, 0);
}
.findox-btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.findox-btn:hover .findox-btn__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn:hover .findox-btn__icon {
  color: var(--findox-base, #006654);
}
.findox-btn:hover .findox-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}
.findox-btn:hover .findox-btn__icon i:last-child {
  visibility: visible;
}
.findox-btn--base {
  background-color: var(--findox-base, #006654);
}
.findox-btn--base::before {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--base::after {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--base .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.findox-btn--base:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.findox-btn--base .findox-btn__icon {
  color: var(--findox-base, #006654);
}
.findox-btn--base:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.findox-btn--base .findox-btn__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--base:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}
.findox-btn--white {
  background-color: var(--findox-white, #ffffff);
}
.findox-btn--white::before {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--white::after {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--white .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.findox-btn--white:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.findox-btn--white .findox-btn__icon {
  color: var(--findox-base, #006654);
}
.findox-btn--white:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.findox-btn--white .findox-btn__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.findox-btn--white:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}

.video-btn {
  width: 41px;
  height: 41px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 20px;
  color: var(--findox-black4, #131111);
  border-radius: 50%;
  z-index: 1;
  background-color: var(--findox-primary, #f5c835);
  transition: all 0.5s ease;
}
.video-btn::after {
  content: "";
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: inherit;
  border: 3px solid var(--findox-primary, #f5c835);
  transition: all 0.5s ease;
}
.video-btn:hover {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.video-btn:hover::after {
  border-color: var(--findox-base, #006654);
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* social links */
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}
.social-links a {
 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
   
  overflow: hidden;
  transition: all 500ms ease;
}
.social-links a:hover {
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.social-links__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover .social-links__icon {
  color: var(--findox-base, #006654);
  animation: slideTop 500ms;
}

/* ratings */
.findox-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.findox-ratings__icon {
  display: inline-flex;
  font-size: 14px;
  color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.findox-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* post pagination */
.post-pagination {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 991px) {
  .post-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .post-pagination {
    gap: 15px;
  }
}
.post-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: var(--findox-base, #006654);
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1;
  background-color: var(--findox-white2, #f0f2f8);
  border-radius: 5px;
  overflow: hidden;
  transition: all 400ms ease;
}
@media (max-width: 575px) {
  .post-pagination__btn {
    width: 45px;
    height: 45px;
  }
}
.post-pagination__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.post-pagination__btn:hover {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.post-pagination__btn.active {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.post-pagination__icon {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: var(--findox-base, #006654);
  transition: all 400ms ease;
}
@media (max-width: 575px) {
  .post-pagination__icon {
    font-size: 22px;
  }
}
.post-pagination__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/* active user */
.active-user {
  display: inline-flex;
  gap: 30px;
  align-items: center;
  padding: 11px 20px 11px 11px;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
}
.active-user__image {
  display: inline-flex;
  align-items: center;
}
.active-user img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid var(--findox-white, #ffffff);
}
.active-user img:not(:first-child) {
  margin-left: -12px;
}
.active-user__info {
  position: relative;
}
.active-user__info::before, .active-user__info::after {
  content: "";
  width: 2px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: -12px;
  border-radius: 50px;
  background-color: var(--findox-primary, #f5c835);
}
.active-user__info::after {
  top: auto;
  bottom: 0px;
  background-color: var(--findox-base, #006654);
}
.active-user__count {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}
.active-user__text {
  margin-bottom: -5px;
  color: var(--findox-black, #000000);
}

/* owl slider buton, dots customize */
.findox-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.findox-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.findox-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.findox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--findox-black2, #222222);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--findox-black2, #222222);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .findox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--findox-white, #ffffff);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-base, #006654);
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 16px;
  height: 16px;
  outline: 0;
  position: relative;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--findox-base, #006654);
  transition: all 500ms ease;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 10px);
  height: calc(100% + 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.findox-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled,
.findox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.custom-nav {
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  position: relative;
  bottom: 10px;
}
@media (max-width: 991px) {
  .custom-nav {
    bottom: 0px;
  }
}
.custom-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--findox-black2, #222222);
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid var(--findox-black2, #222222);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .custom-nav button {
    width: 50px;
    height: 50px;
    font-size: 14px;
  }
}
.custom-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.custom-nav button:hover {
  color: var(--findox-white, #ffffff);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-base, #006654);
}
.custom-nav button span {
  border: none;
  outline: none;
  color: inherit;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--findox-base, #006654);
}

.hammer {
  width: 22px;
  height: 22px;
  fill: var(--findox-base, #006654);
}

.hammer path:nth-child(1),
.hammer path:nth-child(2) {
  animation: hammerBounce 3s ease-in-out infinite;
}

.hammer path:nth-child(3),
.hammer path:nth-child(4),
.hammer path:nth-child(5),
.hammer path:nth-child(6) {
  transform-origin: center;
  animation: hammerStrike 3s ease-in-out infinite;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--findox-black, #000000);
  color: var(--findox-white, #ffffff);
  font-family: var(--findox-font, "DM Sans", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--findox-font, "DM Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--findox-text, #636363);
  background-image: none;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  color: var(--findox-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--findox-border-color, #dddddd);
  background-color: var(--findox-text, #636363);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--findox-border-color, #dddddd);
  background-color: var(--findox-text, #636363);
  background-image: none;
  color: var(--findox-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--findox-white, #ffffff);
  color: var(--findox-black, #000000);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--findox-base, #006654);
  color: var(--findox-white, #ffffff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/* scroll to top */
.scroll-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--findox-base, #006654);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--findox-black, #000000);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* preloader */
.preloader {
  position: fixed;
  background-color: var(--findox-black4, #131111);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--findox-base, #006654);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--findox-base, #006654);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--findox-base, #006654);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(-10px) translateX(-10px) rotate(-5deg);
    transform: translateY(-10px) translateX(-10px) rotate(-5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1.25);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
@keyframes zoomIn2 {
  0% {
    transform: scale(0.5) rotate(0deg);
  }
  100% {
    transform: scale(1.25) rotate(45deg);
  }
}
@keyframes zoomIn3 {
  0% {
    transform: scale(0.7) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}
@keyframes zoomIn4 {
  0% {
    transform: scale(0.5) rotate(0deg);
  }
  100% {
    transform: scale(1) rotate(45deg);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@keyframes zoom-out-in {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes moveX {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes moveX2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes rotateReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}
@keyframes shapeRotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }
  33.3% {
    transform: translateX(-3px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -190deg);
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -170deg);
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes smartMove {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove2 {
  0% {
    width: 0;
  }
  15% {
    width: 126px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 126px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove3 {
  0% {
    width: 0;
  }
  15% {
    width: 173px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 173px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes rectMove {
  0%, 50%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25%, 75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackgroundY {
  0% {
    background-position: 100% 1920px;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideRight {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animatedCircle {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes vibrant2 {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(2px, -2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(-2px, 2px);
  }
  100% {
    transform: translate(0);
  }
}
/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  position: relative;
  z-index: 999;
  padding: 10.5px 0px;
  background-color: var(--findox-white, #ffffff);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 991px) {
  .topbar {
    padding: 17px 0px;
  }
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.topbar::before, .topbar::after {
  content: "";
  width: 673px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.3);
  clip-path: polygon(100% 0%, 93% 50%, 100% 100%, 0 100%, 0% 50%, 0 0);
}
@media (max-width: 991px) {
  .topbar::before, .topbar::after {
    width: 100%;
    clip-path: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar::before, .topbar::after {
    width: 540px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .topbar::before, .topbar::after {
    width: 600px;
  }
}
.topbar::after {
  width: 663px;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 991px) {
  .topbar::after {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .topbar::after {
    width: 530px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .topbar::after {
    width: 590px;
  }
}
.topbar .container {
  max-width: 1299px;
  position: relative;
  z-index: 1;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.topbar__info {
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 991px) {
  .topbar__info {
    width: 100%;
    justify-content: center;
  }
}
.topbar__info li {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
  line-height: 1.285;
}
.topbar__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__info li a:hover {
  background-size: 100% 1px;
}
.topbar__info li a:hover {
  color: var(--findox-primary, #f5c835);
}
.topbar__info__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--findox-primary, #f5c835);
}
.topbar__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar__right {
  display: flex;
  align-items: center;
  gap: 23px;
}
@media (max-width: 991px) {
  .topbar__right {
    display: none;
  }
}
.topbar__pages {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 0px;
}
.topbar__pages li {
  position: relative;
  font-size: 14px;
  color: var(--findox-text, #636363);
  line-height: 1.285;
  text-transform: capitalize;
}
.topbar__pages li:not(:last-of-type)::after {
  content: "";
  width: 1px;
  height: 18px;
  margin: auto 0px;
  position: absolute;
  top: 0px;
  right: -10px;
  bottom: 0px;
  background-color: var(--findox-border-color, #dddddd);
}
.topbar__pages a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__pages a:hover {
  background-size: 100% 1px;
}
.topbar__pages a:hover {
  color: var(--findox-base, #006654);
}
.topbar .social-links a {
  color:#fff;
  height: 28px;
  border-color: var(--findox-gray, #92918f);
}
.topbar .social-links a:hover {
  border-color: var(--findox-primary, #f5c835);
}
.topbar .social-links__icon {
  font-size: 12px;
  color: var(--findox-gray, #92918f);
}
.topbar--two {
  padding: 0px;
  border: none;
  overflow: hidden;
  background-color: var(--findox-white3, #ecf5f4);
}
.topbar--two::before, .topbar--two::after {
  display: none;
}
.topbar--two .container {
  max-width: 1430px;
}
@media (min-width: 1800px) {
  .topbar--two .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 176px;
  }
}
.topbar--two .topbar__note {
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar--two .topbar__note__title {
  flex-shrink: 0;
  margin: 0px;
  position: relative;
  padding: 7px 7.5px;
  font-size: 14px;
  color: var(--findox-black4, #131111);
  line-height: 1.25;
  font-weight: 500;
  text-transform: uppercase;
  writing-mode: sideways-lr;
  background-color: var(--findox-primary, #f5c835);
}
.topbar--two .topbar__note__title::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent var(--findox-base, #006654);
}
.topbar--two .topbar__note__text {
  margin: 0px;
  font-size: 14px;
}
.topbar--two .topbar__right {
  display: flex;
  gap: 69px;
}
@media (max-width: 1199px) {
  .topbar--two .topbar__info {
    display: none;
  }
}
.topbar--two .topbar__info li {
  color: var(--findox-text, #636363);
}
.topbar--two .topbar__social {
  display: flex;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.topbar--two .topbar__social::after {
  content: "";
  width: calc(100% + 218px);
  height: calc(100% + 24px);
  position: absolute;
  top: 50%;
  left: -40px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--findox-base, #006654);
}
@media (max-width: 1799px) {
  .topbar--two .topbar__social::after {
    width: calc(100% + 235px);
  }
}
.topbar--two .topbar__social__title {
  margin: 0px;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
  line-height: 1.25;
  text-transform: capitalize;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.header {
  width: 100%;
  max-width: 1400px;
  padding: 0px 15px;
  margin: 0px auto;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 999;
}
.header::before {
  content: "";
  width: 5px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 10px;
  background-color: var(--findox-primary, #f5c835);
}
.header::after {
  content: "";
  width: 1px;
  height: 85px;
  position: absolute;
  top: 0px;
  right: 14px;
  background-color: var(--findox-border-color, #dddddd);
}
@media (max-width: 991px) {
  .header::after {
    display: none;
  }
}
.header--two {
  max-width: 100%;
  padding: 0px;
  margin: 0px;
  position: relative;
}
.header--two::before, .header--two::after {
  display: none;
}

.main-header {
  position: relative;
  z-index: 999;
  background-color: var(--findox-white, #ffffff);
}
.main-header > .container {
  max-width: 1356px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
@media (max-width: 412px) {
  .main-header__logo {
    margin-right: 20px;
  }
}
.main-header__logo a {
  display: inline-block;
}
.main-header__logo img {
  max-width: 100%;
  height: auto;
}
.main-header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.main-header__nav {
  margin-right: 36px;
}
@media (max-width: 1199px) {
  .main-header__nav {
    display: none;
  }
}
.main-header__search {
  display: inline-flex;
  position: relative;
  font-size: 26px;
  color: var(--findox-black4, #131111);
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .main-header__search {
    margin-left: 50px;
  }
}
@media (max-width: 430px) {
  .main-header__search {
    margin-left: 40px;
  }
}
.main-header__search:hover {
  color: var(--findox-primary, #f5c835);
}
.main-header__search::before {
  content: "";
  display: none;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: -25px;
  transform: translateY(-50%);
  background-color: var(--findox-border-color, #dddddd);
}
@media (max-width: 1199px) {
  .main-header__search::before {
    display: inline-block;
  }
}
@media (max-width: 430px) {
  .main-header__search::before {
    left: -20px;
  }
}
.main-header__search svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-header__btn {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .main-header__btn {
    margin-left: 25px;
  }
}
.main-header__call {
  display: flex;
  align-items: center;
  gap: 15px;
}
.main-header__call__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 23px;
  color: var(--findox-primary, #f5c835);
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.main-header__call__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-header__call__title {
  margin-bottom: 3px;
  font-size: 18px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.main-header__call__number {
  margin: 0px;
  font-size: 16px;
  color: var(--findox-black3, #333333);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__call__number:hover {
  background-size: 100% 1px;
}
.main-header .sidebar-btn__toggler {
  width: 50px;
  height: 50px;
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
}
.main-header .sidebar-btn__toggler__line {
  width: 21px;
  height: 2px;
  display: inline-block;
  border-radius: 100px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.main-header .sidebar-btn__toggler__line:nth-child(2) {
  transform: translateX(6px);
}
.main-header .sidebar-btn__toggler:hover .sidebar-btn__toggler__line {
  transform: translateX(0px);
}
.main-header--two {
  width: 100%;
  position: absolute;
  top: 23px;
  left: 0px;
  background-color: transparent;
}
@media (max-width: 767px) {
  .main-header--two {
    top: 10px;
  }
}
.main-header--two .main-menu .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
}
.main-header--two .main-menu .main-menu__list > li > a,
.main-header--two .main-menu .main-menu__list > li.megamenu > a::after,
.main-header--two .main-menu .main-menu__list > li.dropdown > a::after,
.main-header--two .main-header__search {
  color: var(--findox-white, #ffffff);
}
.main-header--two .main-menu__list > li.current > a::after,
.main-header--two .main-menu__list > li.megamenu:hover > a::after,
.main-header--two .main-menu__list > li.dropdown:hover > a::after {
  color: var(--findox-primary, #f5c835) !important;
}
.main-header--two .main-header__search:hover {
  color: var(--findox-primary, #f5c835);
}
.main-header--two .main-header__search::before {
  background-color: RGBA(var(--findox-border-color-rgb, 221, 221, 221), 0.5);
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--findox-white, #ffffff);
}
.main-header--two .mobile-nav__btn:hover span {
  background-color: var(--findox-primary, #f5c835);
}
.main-header--two .main-header__call {
  margin-left: 38px;
}
@media (max-width: 1299px) {
  .main-header--two .main-header__call {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__call {
    display: none;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call__icon {
    color: var(--findox-base, #006654);
    background-color: var(--findox-primary, #f5c835);
  }
}
.main-header--two .main-header__call:hover .main-header__call__icon {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-black4, #131111);
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call:hover .main-header__call__icon {
    color: var(--findox-primary, #f5c835);
    background-color: var(--findox-white, #ffffff);
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call__title {
    color: var(--findox-white, #ffffff);
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call__number {
    color: var(--findox-white, #ffffff);
  }
}
@media (min-width: 1800px) {
  .main-header--three::before {
    content: "";
    width: 100px;
    height: 235px;
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--findox-primary, #f5c835);
  }
  .main-header--three::after {
    content: "";
    width: 57px;
    height: 100%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: -1;
    background-color: var(--findox-base, #006654);
  }
}
.main-header--three > .container {
  max-width: 1430px;
}
@media (min-width: 1800px) {
  .main-header--three > .container {
    max-width: 100%;
    padding-left: 100px;
    padding-right: 31px;
  }
}
@media (min-width: 1800px) {
  .main-header--three .main-header__inner {
    padding-left: 30px;
  }
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-header--three .main-header__call {
  margin-left: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1799px) {
  .main-header--three .main-header__call {
    display: none;
  }
}
.main-header--three .main-header__call::after {
  content: "";
  width: calc(100% + 156px);
  height: calc(100% + 48.5px);
  position: absolute;
  top: 50%;
  left: -40px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--findox-white3, #ecf5f4);
}
.main-header--three .main-header__call__icon {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.main-header--three .sidebar-btn__toggler {
  margin-left: 91px;
}
@media (max-width: 1799px) {
  .main-header--three .sidebar-btn__toggler {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .main-header--three .sidebar-btn__toggler {
    margin-left: 25px;
  }
}
@media (max-width: 500px) {
  .main-header--three .sidebar-btn__toggler {
    display: none;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .main-header--three .sidebar-btn__toggler {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  visibility: hidden;
  transform: translateY(-100%);
  background-color: var(--findox-white, #ffffff);
  box-shadow: 0px 3px 18px rgba(var(--findox-black-rgb, 0, 0, 0), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned.main-header--two {
  background-color: var(--findox-black2, #222222);
}
.sticky-header--cloned.main-header--two .main-menu .main-menu__list > li {
  padding-top: 48px;
  padding-bottom: 48px;
}
.sticky-header--cloned.main-header--two .main-header__call:hover .main-header__call__icon {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.sticky-header--cloned.main-header--two .main-header__call .main-header__call__title,
.sticky-header--cloned.main-header--two .main-header__call .main-header__call__number {
  color: var(--findox-white, #ffffff);
}
.sticky-header--cloned.main-header--two .main-header__call .main-header__call__number:hover {
  color: var(--findox-primary, #f5c835);
}
.sticky-header--cloned.main-header--three::before {
  display: none;
}

.mobile-nav__btn {
  width: 26px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--findox-black4, #131111);
  transition: all 500ms ease;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}
.mobile-nav__btn:hover span {
  background-color: var(--findox-base, #006654);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 42px;
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
@media (min-width: 1300px) and (max-width: 1399px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
.main-menu .main-menu__list > li > a {
  position: relative;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--findox-black3, #333333);
  line-height: 1.25;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--findox-primary, #f5c835);
}
.main-menu .main-menu__list > li.megamenu > a,
.main-menu .main-menu__list > li.dropdown > a {
  padding-right: 16px;
}
.main-menu .main-menu__list > li.megamenu > a::after,
.main-menu .main-menu__list > li.dropdown > a::after {
  content: "\f078";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 600;
  color: var(--findox-black3, #333333);
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li.megamenu:hover > a::after,
.main-menu .main-menu__list > li.dropdown:hover > a::after {
  color: var(--findox-primary, #f5c835);
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 15px 20px 11px;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--findox-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: -15px !important;
  right: -15px !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  transition: all 300ms linear 0ms;
  transform: perspective(500px) rotateX(-20deg);
  transform-origin: 50% 0%;
  pointer-events: none;
}
.main-menu .main-menu__list li.megamenu:hover > ul {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: perspective(500px) rotateX(0);
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
  margin-bottom: 5px;
}
.main-menu .main-menu__list li ul li:last-child {
  margin-bottom: 0px;
}
.main-menu .main-menu__list li.megamenu ul li {
  margin: 0;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 15px;
  line-height: 26px;
  color: var(--findox-black3, #333333);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f054";
  color: var(--findox-black2, #222222);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  color: var(--findox-black2, #222222);
  background-color: var(--findox-primary, #f5c835);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  opacity: 1;
  visibility: visible;
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

.main-menu-five .main-menu__list > li.current > a,
.main-menu-five .main-menu__list > li:hover > a {
  color: var(--findox-primary, #f5c835) !important;
  text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--findox-white, #ffffff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--findox-black, #000000);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--findox-base, #006654);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--findox-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(var(--findox-black3-rgb, 51, 51, 51), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--findox-black, #000000);
  font-weight: 600;
}
.demo-one__title a {
  color: inherit;
}
.demo-one__title a:hover {
  color: var(--findox-base, #006654);
}
.demo-one__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  background-color: rgba(var(--findox-black4-rgb, 19, 17, 17), 0.7);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .demo-one__btns {
    flex-direction: column;
  }
}
@media (max-width: 375px) {
  .demo-one__btns {
    flex-direction: column;
  }
}
.demo-one .findox-btn {
  padding-left: 25px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .demo-one .findox-btn {
    min-width: 183.98px;
  }
}
@media (max-width: 375px) {
  .demo-one .findox-btn {
    min-width: 183.98px;
  }
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__title {
  padding-top: 28px;
  padding-bottom: 28px;
}

.home-showcase .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  max-height: 90vh;
  overflow-y: scroll;
  padding: 40px 40px 21px;
  background-color: var(--findox-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(var(--findox-black3-rgb, 51, 51, 51), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .findox-btn {
  min-width: 183.98px;
  padding-left: 25px;
  justify-content: flex-end;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 16px;
  color: var(--findox-black4, #131111);
  text-transform: capitalize;
  margin-top: 20px;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--findox-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--findox-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--findox-black4, #131111);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding: 65px 15px 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  display: inline-flex;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--findox-white, #ffffff);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__close:hover {
  color: var(--findox-base, #006654);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--findox-white-rgb, 255, 255, 255), 0.05);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--findox-white-rgb, 255, 255, 255), 0.05);
}

.mobile-nav__content .main-menu__list li > a {
  height: 46px;
  display: flex;
  justify-content: space-between;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  line-height: 30px;
  color: var(--findox-white, #ffffff);
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list > li > ul > li > a {
  font-size: 15px;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--findox-base, #006654);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  border: none;
  outline: none;
  color: var(--findox-white, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  background-color: var(--findox-base, #006654);
  transition: transform 500ms ease;
}
.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  color: var(--findox-black4, #131111);
  transform: rotate(0deg);
  background-color: var(--findox-white, #ffffff);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mobile-nav__contact li {
  color: var(--findox-white, #ffffff);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--findox-base, #006654);
}
.mobile-nav__contact__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 12px;
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .social-links {
  gap: 12px;
}
.mobile-nav__content .social-links a {
  width: 32px;
  height: 32px;
  border: none;
  background-color: var(--findox-base, #006654);
}
.mobile-nav__content .social-links a:hover {
  background-color: var(--findox-primary, #f5c835);
}
.mobile-nav__content .social-links__icon {
  font-size: 14px;
  color: var(--findox-white, #ffffff);
}
.mobile-nav__content .social-links a:hover .social-links__icon {
  color: var(--findox-base, #006654);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 25px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--findox-black2, #222222);
}
.search-popup__form .findox-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  font-size: 20px;
  color: var(--findox-white, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0px;
}
.search-popup__form .findox-btn::before {
  display: none;
}
.search-popup__form .findox-btn:hover {
  color: var(--findox-base, #006654);
}
.search-popup__form .findox-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}
@media (min-width: 768px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  border-radius: 5px;
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select .dropdown-menu {
  border-radius: 5px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border: 0;
  border-radius: 0px;
  background-color: var(--findox-white2, #f0f2f8) !important;
  margin: 0;
  padding: 0;
  padding-left: 29px;
  padding-right: 29px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  color: var(--findox-text, #636363) !important;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 400;
  line-height: 50px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
@media (max-width: 767px) {
  .form-one .bootstrap-select > .dropdown-toggle {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.form-one .bootstrap-select > .dropdown-toggle::before {
  position: absolute;
  top: 0;
  right: 29px;
  bottom: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--findox-text, #636363);
}
@media (max-width: 767px) {
  .form-one .bootstrap-select > .dropdown-toggle::before {
    right: 25px;
  }
}
.form-one .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--findox-border-color, #dddddd);
}
.form-one .bootstrap-select .dropdown-menu {
  border: none;
}
.form-one .bootstrap-select .dropdown-menu > li > a {
  padding: 10px 29px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 15px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  background-color: var(--findox-white2, #f0f2f8);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 767px) {
  .form-one .bootstrap-select .dropdown-menu > li > a {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.form-one .bootstrap-select .dropdown-menu > li:hover > a,
.form-one .bootstrap-select .dropdown-menu > li.selected > a {
  color: var(--findox-white, #ffffff);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-base, #006654);
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=search],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  height: 50px;
  border: none;
  outline: none;
  padding: 0px 29px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .form-one .bootstrap-select > .dropdown-toggle,
  .form-one input[type=text],
  .form-one input[type=email],
  .form-one input[type=search],
  .form-one input[type=tel],
  .form-one textarea {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.form-one .bootstrap-select > .dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=search]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus {
  color: var(--findox-black4, #131111);
}
.form-one textarea {
  height: 122px;
  padding-top: 10px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 53px;
}
.comments-one__title {
  margin-bottom: 52px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
}
.comments-one__list {
  margin: 0;
}
.comments-one__card {
  display: grid;
  grid-template-columns: 150px auto;
  grid-gap: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__card {
    grid-template-columns: 140px auto;
  }
}
@media (max-width: 767px) {
  .comments-one__card {
    grid-template-columns: auto;
  }
}
.comments-one__card:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .comments-one__card:not(:last-child) {
    margin-bottom: 50px;
  }
}
.comments-one__image {
  width: 150px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__image {
    width: 140px;
  }
}
@media (max-width: 575px) {
  .comments-one__image {
    width: 140px;
  }
}
.comments-one__image img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .comments-one__image img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 575px) {
  .comments-one__image img {
    width: 140px;
    height: 140px;
  }
}
.comments-one__content {
  margin-top: 2px;
}
@media (max-width: 767px) {
  .comments-one__content {
    margin-top: 0px;
  }
}
.comments-one__top {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 30px;
}
@media (max-width: 991px) {
  .comments-one__top {
    margin-bottom: 25px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (max-width: 575px) {
  .comments-one__top {
    gap: 20px;
  }
}
.comments-one__left {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media (max-width: 575px) {
  .comments-one__left {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.comments-one__name {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
  line-height: 1.318;
}
.comments-one__date {
  margin: 0;
  position: relative;
  color: var(--findox-base, #006654);
}
.comments-one__date::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -4px;
  width: 19px;
  height: 1px;
  margin-right: 9px;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 575px) {
  .comments-one__date::before {
    display: none;
  }
}
.comments-one__bottom {
  margin-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px 30px;
}
@media (max-width: 412px) {
  .comments-one__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.comments-one__reply {
  margin-top: 21px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  color: var(--findox-base, #006654);
  line-height: 1.25;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.comments-one__reply:hover {
  color: var(--findox-primary, #f5c835);
}
.comments-one__text {
  margin: 0px;
}

.comments-form {
  margin-top: 53px;
}
.comments-form__title {
  margin-bottom: 52px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  overflow: hidden;
}
.contact-one--page {
  margin-top: 120px;
}
@media (max-width: 1299px) {
  .contact-one--page {
    margin-top: 0px;
  }
}
.contact-one--page .contact-one__bg {
  width: calc(100% - 250px);
  border-radius: 50px 0px 0px 0px;
}
@media (max-width: 1799px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 150px);
  }
}
@media (max-width: 1599px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 70px);
  }
}
@media (max-width: 1399px) {
  .contact-one--page .contact-one__bg {
    width: calc(100% - 20px);
  }
}
@media (max-width: 1299px) {
  .contact-one--page .contact-one__bg {
    width: 100%;
    border-radius: 0px;
  }
}
.contact-one--page .contact-one__bg::before {
  border-radius: inherit;
}
.contact-one--page .contact-one__bg__shape {
  display: inline-block;
  left: 0px;
}
@media (max-width: 1299px) {
  .contact-one--page .contact-one__bg__shape {
    display: none;
  }
}
.contact-one__bg {
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  right: 0px;
  overflow: hidden;
}
.contact-one__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-base, #006654);
}
.contact-one__bg::after {
  content: "";
  width: 41.103%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(37% 0, 100% 0%, 100% 100%, 0 100%);
}
@media (max-width: 991px) {
  .contact-one__bg::after {
    display: none;
  }
}
.contact-one__bg__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  animation: moveX2 2s ease-in-out infinite;
}
@media (max-width: 1799px) {
  .contact-one__bg__shape {
    left: -120px;
  }
}
@media (max-width: 1599px) {
  .contact-one__bg__shape {
    left: -200px;
  }
}
@media (max-width: 1399px) {
  .contact-one__bg__shape {
    display: none;
  }
}
.contact-one .container {
  position: relative;
  z-index: 2;
}
.contact-one .sec-title {
  margin-bottom: 26px;
}
.contact-one__info {
  margin: 0px;
}
.contact-one__info li + li {
  margin-top: 30px;
}
.contact-one__info li:nth-child(even) {
  margin-left: 70px;
}
@media (max-width: 991px) {
  .contact-one__info li:nth-child(even) {
    margin-left: 0px;
  }
}
.contact-one__info__inner {
  min-width: 285px;
  display: inline-flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  padding: 20px 21px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.contact-one__info__inner::before {
  content: "";
  width: 54px;
  height: 54px;
  position: absolute;
  top: 20px;
  left: 21px;
  z-index: -1;
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.contact-one__info__inner:hover {
  border-color: var(--findox-primary, #f5c835);
}
.contact-one__info__inner:hover::before {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  border-radius: 0px;
}
.contact-one__info__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 24px;
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.contact-one__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.contact-one__info__inner:hover .contact-one__info__icon {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.contact-one__info__title {
  margin-bottom: 5px;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
  font-weight: 700;
  line-height: 1.277;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.contact-one__info__inner:hover .contact-one__info__title {
  color: var(--findox-black2, #222222);
}
.contact-one__info__text {
  font-size: 16px;
  color: var(--findox-white, #ffffff);
  font-weight: 400;
  line-height: 1.277;
  line-height: 1.3125;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__info__text:hover {
  background-size: 100% 1px;
}
.contact-one__info__inner:hover .contact-one__info__text {
  color: var(--findox-black3, #333333);
}
.contact-one__form {
  padding: 85px 80px;
  border-radius: 50px;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 991px) {
  .contact-one__form {
    padding: 60px 50px;
  }
}
@media (max-width: 440px) {
  .contact-one__form {
    padding: 40px 30px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-one__form {
    padding: 46px 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-one .form-one__group {
    grid-template-columns: 1fr;
  }
}
.contact-one .form-one .bootstrap-select > .dropdown-toggle,
.contact-one .form-one input[type=text],
.contact-one .form-one input[type=email],
.contact-one .form-one input[type=search],
.contact-one .form-one input[type=tel] {
  height: 48px;
  border-radius: 100px;
  background-color: transparent !important;
  border: 1px solid var(--findox-border-color, #dddddd);
}
.contact-one .form-one .bootstrap-select > .dropdown-toggle:focus,
.contact-one .form-one input[type=text]:focus,
.contact-one .form-one input[type=email]:focus,
.contact-one .form-one input[type=search]:focus,
.contact-one .form-one input[type=tel]:focus {
  border-color: var(--findox-base, #006654);
}
.contact-one .form-one .findox-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 14px 35px;
  gap: 10px;
  border-radius: 100px;
}
.contact-one .form-one .findox-btn::before {
  display: none;
}
.contact-one .form-one .findox-btn:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.contact-one .form-one .findox-btn .findox-btn__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
}
.contact-one .form-one .findox-btn .findox-btn__icon i {
  position: absolute;
  top: 0px;
  bottom: auto;
}
.contact-one .form-one .findox-btn .findox-btn__icon i:last-child {
  left: -20px;
  bottom: auto;
}
.contact-one .form-one .findox-btn:hover .findox-btn__icon {
  color: var(--findox-black4, #131111);
}
.contact-one .form-one .findox-btn:hover .findox-btn__icon i {
  transform: translate(20px, 0px);
}
.contact-one__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  animation: moveX 2s linear infinite;
}
@media (max-width: 1599px) {
  .contact-one__image {
    right: -50px;
  }
}
@media (max-width: 1399px) {
  .contact-one__image {
    display: none;
  }
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter-one {
  position: relative;
  z-index: 1;
}
.newsletter-one__inner {
  position: relative;
  margin-bottom: -153px;
  padding: 70px 120px 77px;
  overflow: hidden;
  border-radius: 500px;
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 1199px) {
  .newsletter-one__inner {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 991px) {
  .newsletter-one__inner {
    padding-left: 80px;
    padding-right: 80px;
    border-radius: 150px;
  }
}
@media (max-width: 767px) {
  .newsletter-one__inner {
    padding: 50px 40px 57px;
    border-radius: 50px;
  }
}
@media (max-width: 412px) {
  .newsletter-one__inner {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;
  }
}
.newsletter-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.newsletter-one__content {
  max-width: 694px;
  margin: 0px auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.newsletter-one__title {
  margin-bottom: 13px;
  font-size: 35px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  line-height: 1.314;
}
@media (max-width: 767px) {
  .newsletter-one__title {
    font-size: 32px;
  }
}
@media (max-width: 440px) {
  .newsletter-one__title {
    font-size: 30px;
  }
}
.newsletter-one__text {
  margin-bottom: 23px;
  font-size: 18px;
  color: var(--findox-black3, #333333);
  line-height: 1.444;
}
@media (max-width: 440px) {
  .newsletter-one__text {
    font-size: 16px;
  }
}
.newsletter-one__form {
  max-width: 470px;
  margin: 0px auto;
  position: relative;
}
.newsletter-one__form input[type=email],
.newsletter-one__form input[type=text] {
  width: 100%;
  height: 45px;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  padding-left: 30px;
  padding-right: 5px;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.newsletter-one__form input[type=email]:focus,
.newsletter-one__form input[type=text]:focus {
  color: var(--findox-black, #000000);
}
.newsletter-one__form .findox-btn {
  width: 100%;
  display: block;
  margin-top: 17px;
  padding: 9.5px 30px;
  text-align: center;
  border-radius: 100px;
}
.newsletter-one__form .findox-btn::before {
  display: none;
}
@media (max-width: 575px) {
  .newsletter-one__form .findox-btn::after {
    background-color: var(--findox-white, #ffffff);
  }
}
@media (min-width: 576px) {
  .newsletter-one__form .findox-btn {
    width: auto;
    display: inline-flex;
    margin: 0px;
    padding: 9.5px 24px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
}
.newsletter-one__form .findox-btn__text {
  font-size: 15px;
}
.newsletter-one__form .findox-btn__text__icon {
  margin-left: 3px;
  font-size: 14px;
  color: inherit;
}
.newsletter-one__form .findox-btn__text__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  z-index: 1;
}
.video-one .container {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .video-one .container {
    width: auto;
    min-width: auto;
    max-width: inherit;
    padding-right: 0;
    margin-left: calc((100% - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .video-one .container {
    margin-left: calc((100% - 1200px) / 2);
  }
}
.video-one__inner {
  padding: 260.5px 0px;
  position: relative;
}
@media (max-width: 991px) {
  .video-one__inner {
    padding: 240.5px 0px;
  }
}
@media (max-width: 575px) {
  .video-one__inner {
    padding: 200.5px 0px;
  }
}
.video-one__bg {
  position: relative;
  position: absolute;
  inset: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.video-one__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-black-rgb, 0, 0, 0), 0.6);
}
.video-one__button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.video-one__btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 93px;
  height: 93px;
  font-size: 35px;
  color: var(--findox-primary, #f5c835);
  border-radius: 50%;
  background-color: var(--findox-white, #ffffff);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-one__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-one__btn:hover {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.video-one__btn__ripple::before, .video-one__btn__ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 RGBA(var(--findox-white-rgb, 255, 255, 255), 0.7);
  -webkit-animation: pulse 3s infinite;
  animation: pulse 3s infinite;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-one__btn__ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.video-one__btn__ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.video-one__btn:hover .video-one__btn__ripple::before, .video-one__btn:hover .video-one__btn__ripple::after {
  box-shadow: 0 0 0 0 RGBA(var(--findox-primary-rgb, 245, 200, 53), 0.7);
}
@keyframes pulse {
  70% {
    box-shadow: 0 0 0 50px RGBA(var(--findox-white-rgb, 255, 255, 255), 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(var(--findox-white-rgb, 255, 255, 255), 0);
  }
}
.video-one__title {
  margin: 0px;
  position: absolute;
  top: 38px;
  left: 60px;
  font-size: 100px;
  white-space: nowrap;
  color: transparent;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--findox-white, #ffffff);
}
@media (max-width: 991px) {
  .video-one__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .video-one__title {
    top: 46px;
    left: 50%;
    font-size: 65px;
    transform: translateX(-50%);
    -webkit-text-stroke-width: 1px;
  }
}
@media (max-width: 575px) {
  .video-one__title {
    font-size: 60px;
  }
}
@media (max-width: 440px) {
  .video-one__title {
    font-size: 55px;
  }
}
@media (max-width: 390px) {
  .video-one__title {
    font-size: 50px;
  }
}
.video-one__title--right {
  top: auto;
  left: auto;
  right: 60px;
  bottom: 32px;
}
@media (max-width: 767px) {
  .video-one__title--right {
    right: auto;
    bottom: 42px;
    left: 50%;
  }
}
@media (max-width: 575px) {
  .video-one__title--right {
    bottom: 43px;
  }
}
@media (max-width: 440px) {
  .video-one__title--right {
    bottom: 41px;
  }
}
@media (max-width: 390px) {
  .video-one__title--right {
    bottom: 43px;
  }
}
.video-one__shape {
  display: none;
  height: 275px;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
}
@media (min-width: 1200px) {
  .video-one__shape {
    display: block;
    width: calc((100% - 1170px) / 2);
  }
}
.video-one__shape::before, .video-one__shape::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
}
.video-one__shape::before {
  left: 0px;
  background-color: var(--findox-base, #006654);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.video-one__shape::after {
  right: 0px;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.team-card__image {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.team-card__image img {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.team-card__social {
  width: 80px;
  height: 45px;
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 3;
}
.team-card__social__icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
  border-radius: 20px 0px 0px 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.team-card__social__icon:hover {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.team-card__social__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.team-card__social .social-links {
  gap: 8px;
  flex-wrap: nowrap;
  position: absolute;
  top: calc(50% - 6px);
  right: 90%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-70%) translateY(-50%);
  transition: all 500ms ease;
}
@media (min-width: 576px) and (max-width: 767px) {
  .team-card__social .social-links {
    right: 70%;
  }
}
.team-card__social .social-links a {
  width: 35px;
  height: 35px;
  border: none;
  background-color: var(--findox-white, #ffffff);
}
.team-card__social .social-links a:hover {
  background-color: var(--findox-primary, #f5c835);
}
.team-card__social .social-links a .social-links__icon {
  color: var(--findox-base, #006654);
}
.team-card__social .social-links a:hover .social-links__icon {
  color: var(--findox-base, #006654);
}
.team-card__social:hover .social-links {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%) translateY(-50%);
}
.team-card__overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.5);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-repeat: no-repeat;
  mask-size: cover;
  z-index: 1;
  transition: all 0.5s ease;
}
.team-card:hover .team-card__overlay {
  height: 100%;
  opacity: 1;
}
.team-card__shape {
  width: 100%;
  height: 242px;
  position: relative;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--findox-white4, #e2edec);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 270.000000 242.000000"><g transform="translate(0.000000,242.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M3850 4821 c-382 -83 -750 -370 -1140 -891 -583 -777 -954 -975 -1692 -902 -384 39 -853 -161 -976 -414 -41 -85 -42 -110 -42 -1350 l0 -1264 2700 0 2700 0 0 1947 0 1947 -45 83 c-297 548 -1014 950 -1505 844z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 270.000000 242.000000"><g transform="translate(0.000000,242.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M3850 4821 c-382 -83 -750 -370 -1140 -891 -583 -777 -954 -975 -1692 -902 -384 39 -853 -161 -976 -414 -41 -85 -42 -110 -42 -1350 l0 -1264 2700 0 2700 0 0 1947 0 1947 -45 83 c-297 548 -1014 950 -1505 844z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.team-card__shape::before, .team-card__shape::after {
  content: "";
  width: 231px;
  height: 236px;
  position: absolute;
  border-radius: 50%;
  border: 20px solid;
  transition: all 500ms ease;
}
.team-card__shape::before {
  left: -96px;
  bottom: 50px;
  z-index: 1;
  border-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.3);
}
.team-card__shape::after {
  top: -138px;
  right: -43px;
  border-color: RGBA(var(--findox-primary-rgb, 245, 200, 53), 0.3);
}
.team-card:hover .team-card__shape::before {
  border-color: var(--findox-base, #006654);
}
.team-card:hover .team-card__shape::after {
  border-color: var(--findox-primary, #f5c835);
}
.team-card__info {
  position: relative;
  z-index: 1;
  padding: 20px 25px 17px;
  text-align: center;
  overflow: hidden;
  border-radius: 0px 0px 50px 50px;
  background-color: var(--findox-white, #ffffff);
  filter: drop-shadow(0 2px 4.4px rgba(0, 0, 0, 0.15));
}
.team-card__info::before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.team-card:hover .team-card__info::before {
  height: 100%;
  top: 0px;
}
.team-card__name {
  margin-bottom: 6px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.318;
}
@media (min-width: 576px) and (max-width: 767px) {
  .team-card__name {
    font-size: 19px;
  }
}
.team-card__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__name a:hover {
  background-size: 100% 1px;
}
.team-card__designation {
  margin: 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.team-card:hover .team-card__name, .team-card:hover .team-card__designation {
  color: var(--findox-white, #ffffff);
}

.team-card-two__image__inner {
  position: relative;
  overflow: hidden;
  border: 10px solid var(--findox-white, #ffffff);
  border-bottom: none;
  border-radius: 500px 500px 0px 0px;
}
.team-card-two__image__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(50%);
  background: linear-gradient(180deg, rgba(199, 199, 199, 0) 63.97%, rgba(245, 200, 53, 0.8) 83.11%);
  transition: all 0.5s ease;
}
.team-card-two__image__inner img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.team-card-two:hover .team-card-two__image__inner::after {
  opacity: 1;
  transform: translateY(0%);
}
.team-card-two__info {
  width: calc(100% - 90px);
  position: relative;
  margin: -50px auto 0px;
}
@media (max-width: 412px) {
  .team-card-two__info {
    width: calc(100% - 50px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-card-two__info {
    width: calc(100% - 70px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card-two__info {
    width: calc(100% - 40px);
  }
}
.team-card-two__info__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 34px 25px 21px;
  text-align: center;
  border-radius: 10px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 360px) {
  .team-card-two__info__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.team-card-two__info__inner::before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.team-card-two:hover .team-card-two__info__inner::before {
  height: 100%;
  top: 0px;
}
.team-card-two__social {
  width: 46px;
  height: 70px;
  position: relative;
  position: absolute;
  top: -47px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.team-card-two__social__icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  position: absolute;
  left: 0px;
  bottom: 0px;
  font-size: 16px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  border: 3px solid var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.team-card-two__social__icon:hover {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.team-card-two__social__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.team-card-two__social .social-links {
  gap: 8px;
  flex-direction: column;
  margin: auto;
  position: absolute;
  top: -220%;
  left: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.team-card-two__social .social-links a {
  width: 35px;
  height: 35px;
  border: none;
  background-color: var(--findox-white, #ffffff);
}
.team-card-two__social .social-links a:hover {
  background-color: var(--findox-primary, #f5c835);
}
.team-card-two__social .social-links a .social-links__icon {
  color: var(--findox-base, #006654);
}
.team-card-two__social .social-links a:hover .social-links__icon {
  color: var(--findox-base, #006654);
}
.team-card-two__social:hover .social-links {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}
.team-card-two__name {
  margin-bottom: 2px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.318;
}
@media (max-width: 390px) {
  .team-card-two__name {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .team-card-two__name {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card-two__name {
    font-size: 20px;
  }
}
.team-card-two__name a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-two__name a:hover {
  background-size: 100% 1px;
}
.team-card-two__designation {
  margin: 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.team-card-two:hover .team-card-two__name, .team-card-two:hover .team-card-two__designation {
  color: var(--findox-white, #ffffff);
}

.team-one,
.team-two,
.team-page {
  background-color: var(--findox-white, #ffffff);
}

.team-two {
  position: relative;
}
.team-two__bg {
  width: 100%;
  height: calc(100% - 478px);
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 430px) {
  .team-two__bg {
    height: calc(100% - 400px);
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .team-two__bg {
    height: calc(100% - 400px);
  }
}
.team-two__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.9);
}

.team-page .team-card-two__image__inner {
  border-color: var(--findox-white2, #f0f2f8);
}

/* team details */
.team-details {
  background-color: var(--findox-white, #ffffff);
}
.team-details__image img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-details__image img {
    width: 100%;
    display: block;
  }
}
.team-details__content {
  margin-top: -5px;
}
@media (max-width: 991px) {
  .team-details__content {
    margin-top: 0px;
  }
}
.team-details__identity {
  margin-bottom: 24px;
}
.team-details__name {
  margin-bottom: 5px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  font-weight: 700;
  text-transform: capitalize;
}
.team-details__designation {
  margin-bottom: 10px;
}
.team-details__text {
  margin: 0px;
}
.team-details__info {
  margin: 0px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
.team-details__info li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 25px;
  position: relative;
  z-index: 1;
}
.team-details__info li::after {
  content: "";
  width: calc(100% + 2px);
  height: 100%;
  position: absolute;
  top: -1px;
  left: -1px;
  z-index: -1;
  opacity: 0;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.team-details__info li.active::after {
  opacity: 1;
}
.team-details__info__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.team-details__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.team-details__info__title {
  margin: 0px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.team-details__info__text {
  color: var(--findox-black3, #333333);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details__info__text:hover {
  background-size: 100% 1px;
}
li.active .team-details__info__icon, li.active .team-details__info__title, li.active .team-details__info__text {
  color: var(--findox-white, #ffffff);
}
.team-details__programs {
  max-width: 335px;
  position: relative;
  padding: 37px 34px 40px 24px;
  border: 1px solid var(--findox-border-color, #dddddd);
  border-left-width: 0px;
}
@media (max-width: 767px) {
  .team-details__programs {
    max-width: 100%;
    border: none;
    padding: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-details__programs {
    max-width: 100%;
    border: none;
    padding: 0px;
  }
}
.team-details__programs::before, .team-details__programs::after {
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  left: -30px;
  background-color: var(--findox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .team-details__programs::before, .team-details__programs::after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-details__programs::before, .team-details__programs::after {
    display: none;
  }
}
.team-details__programs::before {
  top: -1px;
}
.team-details__programs::after {
  bottom: -1px;
}
.team-details__programs__inner {
  position: relative;
  padding-left: 23px;
}
.team-details__programs__inner::before {
  content: "";
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-border-color, #dddddd);
}
.team-details__programs__inner::after {
  content: "";
  width: 2px;
  height: 32px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-primary, #f5c835);
}
.team-details__programs__title {
  margin-bottom: 8px;
  font-size: 22px;
  color: var(--findox-black, #000000);
  line-height: 1.272;
  font-weight: 700;
  text-transform: capitalize;
}
.team-details__programs__list {
  margin: 0px;
}
.team-details__programs__list li + li {
  margin-top: 9px;
}
.team-details__programs__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 16px;
}
.team-details__programs__list__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  position: relative;
  top: 5px;
  border: 1px solid var(--findox-primary, #f5c835);
}
.team-details__programs__list__icon::after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--findox-black4, #131111);
}
.team-details__personal {
  margin: 10px 0px 35px;
}
.team-details__personal__title {
  margin-bottom: 13px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
}
.team-details__personal__text {
  margin: 0px;
}
.team-details__personal__text + .team-details__personal__text {
  margin-top: 15px;
}
.team-details__skill {
  display: grid;
  grid-gap: 30px 0px;
  grid-template-columns: repeat(3, 1fr);
  border-radius: 10px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 575px) {
  .team-details__skill {
    border: none;
    border-radius: 0px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.team-details .skill-box {
  position: relative;
  padding: 30px 20px 23px;
  text-align: center;
}
@media (max-width: 575px) {
  .team-details .skill-box {
    border-radius: 10px;
    border: 1px solid var(--findox-border-color, #dddddd);
  }
}
@media (min-width: 576px) {
  .team-details .skill-box:not(:last-child) {
    border-right: 1px solid var(--findox-border-color, #dddddd);
  }
}
.team-details .skill-box__count {
  width: 108px;
  height: 108px;
  margin: 0px auto 18px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.team-details .skill-box__count .circle-progress {
  position: absolute;
  top: 0px;
  left: 0px;
}
.team-details .skill-box__funfact {
  margin: 0px;
  display: inline-flex;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  transition: all 500ms ease;
}
.team-details .skill-box__title {
  margin: 0px;
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
  transition: all 500ms ease;
}
@media (min-width: 576px) and (max-width: 767px) {
  .team-details .skill-box__title {
    font-size: 18px;
  }
}
.team-details__certificate {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 441px) and (max-width: 767px) {
  .team-details__certificate {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.team-details__certificate img {
  max-width: 100%;
  height: auto;
}

.blog-card {
  position: relative;
  padding: 10px;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.blog-card::before {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card:hover::before {
  height: 100%;
  top: 0px;
}
.blog-card::after {
  content: "";
  width: 100%;
  height: 240px;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0;
  transform: translateY(-30%);
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(100% 0, 100% 43%, 50% 100%, 0 43%, 0 0);
  transition: all 500ms ease;
}
.blog-card:hover::after {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 300ms;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px 15px 0px 0px;
}
.blog-card__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.blog-card__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--findox-black4-rgb, 19, 17, 17), 0.5);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  border-radius: inherit;
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--findox-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image__link {
  opacity: 1;
  transform: translateY(0);
}
.blog-card__content {
  position: relative;
  z-index: 1;
  padding: 0px 20px 30px;
}
@media (max-width: 412px) {
  .blog-card__content {
    padding: 0px 10px 15px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 0px 10px 15px;
  }
}
.blog-card__admin {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: -36px 0px 19px;
  position: relative;
  top: 0px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 10px 25px 10px 10px;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
}
.blog-card__admin__image {
  width: 50px !important;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
}
.blog-card__admin__name {
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
}
.blog-card__admin__date {
  margin: 0px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 10px 17px;
  margin-bottom: 15px;
}
@media (max-width: 390px) {
  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-card__meta li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  line-height: 1.25;
}
.blog-card__meta li a {
  color: inherit;
}
.blog-card__meta li a:hover {
  color: var(--findox-primary, #f5c835);
}
.blog-card__meta__icon {
  font-size: 18px;
  color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-card:hover .blog-card__meta li {
  color: var(--findox-white, #ffffff);
}
.blog-card:hover .blog-card__meta__icon {
  color: var(--findox-primary, #f5c835);
}
.blog-card__title {
  margin-bottom: 27px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
}
@media (max-width: 375px) {
  .blog-card__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__title {
    font-size: 20px;
  }
}
.blog-card__title a {
  color: inherit;
}
.blog-card__title a:hover {
  color: var(--findox-primary, #f5c835);
}
.blog-card__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card:hover .blog-card__title {
  color: var(--findox-white, #ffffff);
}
.blog-card:hover .findox-btn::after {
  width: 100%;
  left: 0px;
}
.blog-card:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.blog-card:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}
.blog-card:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.blog-card:hover .findox-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}
.blog-card:hover .findox-btn__icon i:last-child {
  visibility: visible;
}
.blog-card__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 30px;
  bottom: 30px;
  opacity: 0;
  transition: all 500ms ease;
  animation: rotate 5s linear infinite;
}
@media (max-width: 412px) {
  .blog-card__shape {
    right: 15px;
    bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card__shape {
    right: 15px;
    bottom: 15px;
  }
}
.blog-card:hover .blog-card__shape {
  opacity: 1;
}
.blog-card__border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.blog-card:hover .blog-card__border {
  border-color: var(--findox-base, #006654);
}

.blog-card-two {
  display: grid;
  align-items: center;
  grid-template-columns: 270px auto;
  background-color: var(--findox-white, #ffffff);
  border-radius: 10px;
  overflow: hidden;
  filter: drop-shadow(2px 0 5.7px rgba(0, 0, 0, 0.1));
}
@media (max-width: 767px) {
  .blog-card-two {
    display: block;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two {
    display: block;
  }
}
.blog-card-two__image {
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px 0px 0px 10px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .blog-card-two__image {
    height: 270px;
    border-radius: 10px 10px 0px 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__image {
    height: 270px;
    border-radius: 10px 10px 0px 0px;
  }
}
.blog-card-two__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--findox-black4-rgb, 19, 17, 17), 0.5);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-two__image__link::before, .blog-card-two__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--findox-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-two__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-two:hover .blog-card-two__image__link {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-two__date {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 1;
  min-width: 57px;
  text-align: center;
}
.blog-card-two__date__day {
  display: block;
  position: relative;
  z-index: 1;
  padding: 11.5px 5px 7.5px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 30px;
  color: var(--findox-white, #ffffff);
  font-weight: 600;
  line-height: 1;
  border-radius: 15px 15px 0px 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card-two__date__month {
  display: block;
  position: relative;
  padding: 8px 5px 7px;
  font-size: 16px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  line-height: 1;
  text-transform: uppercase;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 15% 100%);
}
.blog-card-two:hover .blog-card-two__date__day {
  color: var(--findox-black3, #333333);
  background-color: var(--findox-white, #ffffff);
}
.blog-card-two__content {
  position: relative;
  z-index: 1;
  padding: 20px 23px 20px 28px;
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 767px) {
  .blog-card-two__content {
    padding: 29px 30px 30px;
    border-radius: 0px 0px 10px 10px;
  }
}
@media (max-width: 390px) {
  .blog-card-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card-two__content {
    padding: 29px 30px 30px;
    border-radius: 0px 0px 10px 10px;
  }
}
.blog-card-two__content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card-two:hover .blog-card-two__content::after {
  height: 100%;
  top: 0px;
}
.blog-card-two__category {
  display: inline-block;
  padding: 9.5px 21px;
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 600;
  color: var(--findox-black4, #131111);
  text-transform: uppercase;
  border-radius: 10px;
  background-color: var(--findox-primary, #f5c835);
  border: 1px solid var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card-two:hover .blog-card-two__category {
  color: var(--findox-black2, #222222);
  border-color: var(--findox-white, #ffffff);
  background-color: var(--findox-white, #ffffff);
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 10px 15px;
  margin-bottom: 15px;
}
.blog-card-two__meta li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  line-height: 1.25;
}
.blog-card-two__meta li a {
  color: inherit;
}
.blog-card-two__meta li a:hover {
  color: var(--findox-primary, #f5c835);
}
.blog-card-two__meta__icon {
  font-size: 16px;
  color: var(--findox-text, #636363);
  transition: all 500ms ease;
}
.blog-card-two__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-card-two:hover .blog-card-two__meta li {
  color: var(--findox-white, #ffffff);
}
.blog-card-two:hover .blog-card-two__meta__icon {
  color: var(--findox-primary, #f5c835);
}
.blog-card-two__title {
  margin-bottom: 27px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
}
@media (max-width: 390px) {
  .blog-card-two__title {
    font-size: 20px;
  }
}
.blog-card-two__title a {
  color: inherit;
}
.blog-card-two__title a:hover {
  color: var(--findox-primary, #f5c835);
}
.blog-card-two__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two:hover .blog-card-two__title {
  color: var(--findox-white, #ffffff);
}
.blog-card-two:hover .findox-btn::after {
  width: 100%;
  left: 0px;
}
.blog-card-two:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.blog-card-two:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}
.blog-card-two:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.blog-card-two:hover .findox-btn__icon i {
  transform: translate(15px, -15px);
  transition: all 0.5s ease-out;
}
.blog-card-two:hover .findox-btn__icon i:last-child {
  visibility: visible;
}
.blog-card-two__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 16px;
  bottom: 0px;
  z-index: 1;
  transition: all 500ms ease;
}
.blog-card-two__shape--hover {
  opacity: 0;
}
.blog-card-two:hover .blog-card-two__shape {
  opacity: 0;
}
.blog-card-two:hover .blog-card-two__shape--hover {
  opacity: 1;
}
.blog-card-two--normal {
  display: block;
}
.blog-card-two--normal .blog-card-two__image {
  height: auto;
  border-radius: 10px 10px 0px 0px;
}
.blog-card-two--normal .blog-card-two__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.blog-card-two--normal .blog-card-two__category {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 1;
}
.blog-card-two--normal:hover .blog-card-two__category {
  color: var(--findox-black4, #131111);
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.blog-card-two--normal .blog-card-two__content {
  padding: 29px 30px 30px;
  border-radius: 0px 0px 10px 10px;
}
@media (max-width: 430px) {
  .blog-card-two--normal .blog-card-two__content {
    padding-top: 55px;
  }
}
@media (max-width: 390px) {
  .blog-card-two--normal .blog-card-two__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.blog-card-two--normal .blog-card-two__date {
  top: -50px;
  right: 62px;
  left: auto;
}
@media (max-width: 440px) {
  .blog-card-two--normal .blog-card-two__date {
    right: 30px;
  }
}
.blog-card-two--normal .blog-card-two__meta {
  margin-bottom: 14px;
}
.blog-card-two--normal .blog-card-two__shape {
  right: 57px;
}
@media (max-width: 767px) {
  .blog-card-two--normal .blog-card-two__shape {
    right: 30px;
  }
}
@media (max-width: 575px) {
  .blog-card-two--normal .blog-card-two__shape {
    display: none !important;
  }
}

.blog-card-three__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.blog-card-three__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
  transition: all 500ms ease;
}
.blog-card-three__image__link {
  width: 100%;
  height: 100%;
  background-color: rgba(var(--findox-black4-rgb, 19, 17, 17), 0.6);
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(-30%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-three__image__link::before, .blog-card-three__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--findox-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-three__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-three:hover .blog-card-three__image img {
  transform: scale(1.1);
}
.blog-card-three:hover .blog-card-three__image__link {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-three__content {
  width: calc(100% - 40px);
  position: relative;
  z-index: 1;
  margin: -83px 0px 0px auto;
  background-color: var(--findox-white, #ffffff);
  filter: drop-shadow(0 1px 6.3px rgba(0, 0, 0, 0.1));
}
@media (max-width: 412px) {
  .blog-card-three__content {
    width: calc(100% - 20px);
    margin-top: -100px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__content {
    width: calc(100% - 20px);
    margin-top: -100px;
  }
}
.blog-card-three__content::before {
  content: "";
  width: 40px;
  height: 41px;
  position: absolute;
  top: 0px;
  left: -40px;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  transition: all 500ms ease;
}
@media (max-width: 412px) {
  .blog-card-three__content::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__content::before {
    display: none;
  }
}
.blog-card-three__content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card-three:hover .blog-card-three__content::before {
  background-color: var(--findox-base, #006654);
}
.blog-card-three:hover .blog-card-three__content::after {
  height: 100%;
  top: 0px;
}
.blog-card-three__top {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 10.5px 60px 10.5px 20px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (max-width: 412px) {
  .blog-card-three__top {
    padding-right: 80px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__top {
    padding-right: 80px;
  }
}
.blog-card-three:hover .blog-card-three__top {
  background-color: var(--findox-primary, #f5c835);
}
.blog-card-three__meta {
  display: flex;
  gap: 10px 14px;
  align-items: center;
  margin: 0px;
}
@media (max-width: 412px) {
  .blog-card-three__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-card-three__meta li {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-white, #ffffff);
  line-height: 1.25;
  transition: all 500ms ease;
}
.blog-card-three__meta li a {
  color: inherit;
  transition: 0s;
}
.blog-card-three__meta__icon {
  font-size: 16px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.blog-card-three__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-card-three:hover .blog-card-three__meta li, .blog-card-three:hover .blog-card-three__meta__icon {
  color: var(--findox-black3, #333333);
}
.blog-card-three__btn {
  width: 41px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
@media (max-width: 412px) {
  .blog-card-three__btn {
    width: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__btn {
    width: 60px;
  }
}
.blog-card-three__btn__icon {
  font-size: 13px;
  color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.blog-card-three__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-card-three__btn:hover .blog-card-three__btn__icon {
  transform: rotate(45deg);
}
.blog-card-three:hover .blog-card-three__btn {
  background-color: var(--findox-base, #006654);
}
.blog-card-three:hover .blog-card-three__btn__icon {
  color: var(--findox-white, #ffffff);
}
.blog-card-three__inner {
  padding: 20px 24px 23px;
}
.blog-card-three__title {
  position: relative;
  padding-left: 17px;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
}
@media (max-width: 412px) {
  .blog-card-three__title {
    padding-left: 0px;
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__title {
    padding-left: 0px;
    font-size: 20px;
  }
}
.blog-card-three__title::before {
  content: "";
  width: 3px;
  height: calc(100% - 11px);
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  border-radius: 100px;
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 412px) {
  .blog-card-three__title::before {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-card-three__title::before {
    display: none;
  }
}
.blog-card-three__title a {
  color: inherit;
}
.blog-card-three__title a:hover {
  color: var(--findox-primary, #f5c835);
}
.blog-card-three__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-three__title a:hover {
  background-size: 100% 1px;
}
.blog-card-three__text {
  margin: 0px;
  transition: all 500ms ease;
}
.blog-card-three:hover .blog-card-three__title, .blog-card-three:hover .blog-card-three__text {
  color: var(--findox-white, #ffffff);
}

.blog-card-four__image {
  margin-bottom: 30px;
}
.blog-card-four__image img {
  width: 100%;
  display: block;
}
.blog-card-four__meta {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 25px;
}
.blog-card-four__category {
  padding: 7px 25px;
  border-radius: 100px;
}
.blog-card-four__category::before {
  display: none;
}
.blog-card-four__info {
  display: flex;
  align-items: center;
}
.blog-card-four__info__text {
  margin: 0;
  position: relative;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
}
.blog-card-four__info__text:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
}
.blog-card-four__info__text a {
  color: inherit;
}
.blog-card-four__info__text a:hover {
  color: var(--findox-base, #006654);
}
.blog-card-four__info__text a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-four__info__text a:hover {
  background-size: 100% 1px;
}
.blog-card-four__comment {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card-four__comment__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--findox-text, #636363);
}
.blog-card-four__comment__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-card-four__comment__text {
  color: var(--findox-text, #636363);
  text-transform: capitalize;
  transition: all 500ms ease;
}
.blog-card-four__comment__text:hover {
  color: var(--findox-base, #006654);
}
.blog-card-four__title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
}
@media (max-width: 412px) {
  .blog-card-four__title {
    font-size: 20px;
  }
}
.blog-card-four__title a {
  color: inherit;
}
.blog-card-four__title a:hover {
  color: var(--findox-base, #006654);
}
.blog-card-four__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-four__title a:hover {
  background-size: 100% 1px;
}
.blog-card-four__text {
  margin-bottom: 28px;
}

.blog-one {
  background-color: var(--findox-white, #ffffff);
}
.blog-one--home1 {
  position: relative;
}
.blog-one--home1::before {
  content: "";
  width: 100%;
  height: 568px;
  position: absolute;
  top: 0px;
  left: 0px;
  background: linear-gradient(180deg, #ecf5f4 14.98%, rgba(217, 217, 217, 0) 100%);
}
.blog-one--home1 .container {
  position: relative;
  z-index: 1;
}

.blog-two {
  background-color: var(--findox-white, #ffffff);
}

.blog-three {
  background-color: var(--findox-white, #ffffff);
}
.blog-three__top {
  margin-bottom: 38px;
}
.blog-three .sec-title {
  margin: 0px;
}

.blog-page {
  background-color: var(--findox-white, #ffffff);
}
.blog-page .post-pagination {
  justify-content: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-page--sidebar .blog-card-two__content {
    padding: 24px 20px;
  }
  .blog-page--sidebar .blog-card-two__title {
    font-size: 20px;
  }
  .blog-page--sidebar .blog-card-three__content {
    width: calc(100% - 40px);
    margin-top: -83px;
  }
  .blog-page--sidebar .blog-card-three__content::before {
    display: block;
  }
  .blog-page--sidebar .blog-card-three__top {
    padding-right: 60px;
  }
  .blog-page--sidebar .blog-card-three__meta {
    flex-direction: row;
    align-items: center;
  }
  .blog-page--sidebar .blog-card-three__btn {
    width: 41px;
  }
  .blog-page--sidebar .blog-card-three__title {
    padding-left: 17px;
    font-size: 22px;
  }
  .blog-page--sidebar .blog-card-three__title::before {
    display: block;
  }
}
.blog-page--sidebar .post-pagination {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .blog-page--sidebar .post-pagination {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  background-color: var(--findox-white, #ffffff);
}
.blog-details__card {
  margin-bottom: 53px;
}
.blog-details__card__image {
  margin-bottom: 40px;
}
.blog-details__card__image img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
.blog-details__card__meta {
  margin-bottom: 23px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 30px;
}
.blog-details__card__category {
  padding: 7px 25px;
  border-radius: 100px;
}
.blog-details__card__category::before {
  display: none;
}
.blog-details__card__admin {
  display: flex;
  align-items: center;
  gap: 11px;
}
.blog-details__card__admin__image {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--findox-base, #006654);
}
.blog-details__card__admin__name {
  margin: 0;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25;
}
.blog-details__card__admin__name a {
  color: inherit;
}
.blog-details__card__admin__name a:hover {
  color: var(--findox-base, #006654);
}
.blog-details__card__admin__name a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-details__card__admin__name a:hover {
  background-size: 100% 1px;
}
.blog-details__card__comment {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__card__comment__icon {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--findox-base, #006654);
}
.blog-details__card__comment__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-details__card__comment__text {
  color: var(--findox-text, #636363);
  text-transform: capitalize;
  transition: all 500ms ease;
}
.blog-details__card__comment__text:hover {
  color: var(--findox-base, #006654);
}
.blog-details__card__date {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__card__date__icon {
  position: relative;
  top: -1px;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--findox-base, #006654);
}
.blog-details__card__date__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.blog-details__card__date__text {
  margin: 0;
  text-transform: capitalize;
}
.blog-details__card__title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
}
@media (max-width: 412px) {
  .blog-details__card__title {
    font-size: 20px;
  }
}
.blog-details__card__text {
  margin: 0px;
}
.blog-details__card__text + .blog-details__card__text {
  margin-top: 11px;
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  padding-top: 29px;
  padding-bottom: 29px;
  border-top: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.blog-details__meta__title {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 700;
  color: var(--findox-black, #000000);
  text-transform: capitalize;
}
.blog-details__tags, .blog-details__categories {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.blog-details__tags .findox-btn, .blog-details__categories .findox-btn {
  padding: 7px 20px;
  border-radius: 100px;
  background-color: var(--findox-white2, #f0f2f8);
}
.blog-details__tags .findox-btn::before, .blog-details__categories .findox-btn::before {
  display: none;
}
.blog-details__tags .findox-btn::after, .blog-details__categories .findox-btn::after {
  background-color: var(--findox-base, #006654);
}
.blog-details__tags .findox-btn__text, .blog-details__categories .findox-btn__text {
  font-weight: 400;
  color: var(--findox-text, #636363);
}
.blog-details__tags .findox-btn:hover .findox-btn__text, .blog-details__categories .findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.blog-details__tags__box, .blog-details__categories__box {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.blog-details .comments-one__card {
  padding-bottom: 32px;
  grid-template-columns: 89px auto;
  grid-gap: 20px;
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .blog-details .comments-one__card {
    grid-template-columns: auto;
  }
}
@media (max-width: 412px) {
  .blog-details .comments-one__card {
    padding-bottom: 35px;
  }
}
.blog-details .comments-one__card:not(:last-child) {
  margin-bottom: 40px;
}
.blog-details .comments-one__image {
  width: 89px;
}
.blog-details .comments-one__image img {
  width: 89px;
  height: 89px;
}
.blog-details .comments-one__content {
  margin-top: 0px;
}
.blog-details .comments-one__name {
  margin-bottom: 10px;
}
.blog-details .comments-one__date {
  color: var(--findox-text, #636363);
}
.blog-details .comments-one__date::before {
  display: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-details__form .form-one__group {
    grid-template-columns: repeat(1, 1fr);
  }
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  margin-top: 85px;
  padding-top: 255px;
  padding-bottom: 186px;
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 1199px) {
  .page-header {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .page-header {
    margin-top: 0px;
    padding-top: 210px;
    padding-bottom: 120px;
  }
}
.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1800px) {
  .page-header__col {
    width: 100%;
  }
}
@media (min-width: 1800px) {
  .page-header__content {
    max-width: 600px;
  }
}
.page-header__title {
  margin-bottom: 10px;
  font-size: 60px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.166;
}
@media (max-width: 1199px) {
  .page-header__title {
    font-size: 55px;
  }
}
@media (max-width: 991px) {
  .page-header__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .page-header__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .page-header__title {
    font-size: 35px;
  }
}
.page-header__image {
  width: 933px;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  background-color: var(--findox-white, #ffffff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 531.000000"><g transform="translate(0.000000,531.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M650 5296 c0 -7 -10 -20 -22 -29 -66 -43 -205 -207 -274 -322 -68 -115 -135 -269 -167 -385 -119 -441 -101 -906 58 -1460 46 -163 61 -207 91 -278 8 -18 14 -40 14 -50 0 -9 7 -26 15 -36 8 -11 15 -28 15 -37 0 -10 6 -30 14 -46 8 -15 31 -68 52 -118 35 -85 58 -138 141 -315 34 -74 45 -98 77 -173 35 -82 44 -104 59 -142 8 -22 22 -59 31 -82 41 -108 53 -147 89 -273 140 -493 120 -878 -59 -1155 -41 -63 -122 -147 -199 -206 -56 -43 -240 -139 -265 -139 -7 0 -33 -7 -59 -15 -25 -8 -66 -18 -91 -23 -27 -6 1694 -10 4393 -11 l4437 -1 0 2655 0 2655 -4175 0 c-3550 0 -4175 -2 -4175 -14z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 531.000000"><g transform="translate(0.000000,531.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M650 5296 c0 -7 -10 -20 -22 -29 -66 -43 -205 -207 -274 -322 -68 -115 -135 -269 -167 -385 -119 -441 -101 -906 58 -1460 46 -163 61 -207 91 -278 8 -18 14 -40 14 -50 0 -9 7 -26 15 -36 8 -11 15 -28 15 -37 0 -10 6 -30 14 -46 8 -15 31 -68 52 -118 35 -85 58 -138 141 -315 34 -74 45 -98 77 -173 35 -82 44 -104 59 -142 8 -22 22 -59 31 -82 41 -108 53 -147 89 -273 140 -493 120 -878 -59 -1155 -41 -63 -122 -147 -199 -206 -56 -43 -240 -139 -265 -139 -7 0 -33 -7 -59 -15 -25 -8 -66 -18 -91 -23 -27 -6 1694 -10 4393 -11 l4437 -1 0 2655 0 2655 -4175 0 c-3550 0 -4175 -2 -4175 -14z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 1799px) {
  .page-header__image {
    display: none;
  }
}
.page-header__image::after {
  content: "";
  width: calc(100% - 15px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--findox-primary, #f5c835);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 540.000000"><g transform="translate(0.000000,540.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M655 5390 c3 -5 -6 -20 -21 -32 -234 -198 -403 -506 -478 -868 -43 -207 -59 -496 -36 -665 5 -38 12 -97 15 -130 7 -80 52 -313 80 -420 36 -135 74 -261 91 -303 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 13 -31 22 -55 62 -160 9 -24 22 -56 29 -73 7 -16 23 -55 35 -85 24 -60 51 -121 112 -250 94 -201 138 -299 138 -311 0 -6 6 -23 14 -37 26 -52 46 -103 46 -120 0 -10 4 -22 9 -27 4 -6 25 -64 45 -130 59 -191 62 -206 107 -430 6 -33 14 -136 16 -228 4 -136 2 -187 -12 -260 -30 -153 -73 -266 -138 -366 -41 -63 -204 -222 -252 -246 -22 -10 -47 -24 -55 -30 -36 -28 -248 -105 -290 -106 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2700 0 2700 -4176 0 c-2697 0 -4173 -3 -4169 -10z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 540.000000"><g transform="translate(0.000000,540.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M655 5390 c3 -5 -6 -20 -21 -32 -234 -198 -403 -506 -478 -868 -43 -207 -59 -496 -36 -665 5 -38 12 -97 15 -130 7 -80 52 -313 80 -420 36 -135 74 -261 91 -303 8 -18 14 -39 14 -47 0 -8 6 -29 14 -47 13 -31 22 -55 62 -160 9 -24 22 -56 29 -73 7 -16 23 -55 35 -85 24 -60 51 -121 112 -250 94 -201 138 -299 138 -311 0 -6 6 -23 14 -37 26 -52 46 -103 46 -120 0 -10 4 -22 9 -27 4 -6 25 -64 45 -130 59 -191 62 -206 107 -430 6 -33 14 -136 16 -228 4 -136 2 -187 -12 -260 -30 -153 -73 -266 -138 -366 -41 -63 -204 -222 -252 -246 -22 -10 -47 -24 -55 -30 -36 -28 -248 -105 -290 -106 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2700 0 2700 -4176 0 c-2697 0 -4173 -3 -4169 -10z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.page-header__image__main {
  width: calc(100% - 30px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 549.000000"><g transform="translate(0.000000,549.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M668 5476 c-2 -7 -24 -31 -50 -53 -41 -36 -89 -87 -153 -164 -24 -28 -78 -108 -88 -129 -4 -8 -16 -28 -26 -45 -25 -39 -75 -142 -106 -220 -44 -108 -89 -284 -105 -405 -29 -227 -32 -274 -27 -404 10 -270 62 -594 132 -817 8 -26 15 -54 15 -63 0 -8 6 -30 14 -48 7 -18 21 -60 31 -93 9 -33 23 -72 31 -87 8 -14 14 -33 14 -42 0 -8 6 -30 14 -48 8 -18 22 -53 31 -78 21 -55 43 -106 61 -143 8 -16 14 -33 14 -38 0 -9 26 -67 100 -224 68 -144 97 -209 120 -265 12 -30 26 -64 32 -74 6 -11 14 -31 18 -45 5 -14 18 -51 30 -81 26 -68 86 -248 105 -315 7 -27 21 -75 29 -106 9 -31 16 -64 16 -75 0 -10 6 -48 14 -84 8 -36 20 -125 27 -198 31 -335 -51 -631 -227 -821 -89 -97 -236 -196 -347 -237 -92 -33 -163 -54 -187 -55 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2745 0 2745 -4164 0 c-3498 0 -4165 -2 -4168 -14z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 549.000000"><g transform="translate(0.000000,549.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M668 5476 c-2 -7 -24 -31 -50 -53 -41 -36 -89 -87 -153 -164 -24 -28 -78 -108 -88 -129 -4 -8 -16 -28 -26 -45 -25 -39 -75 -142 -106 -220 -44 -108 -89 -284 -105 -405 -29 -227 -32 -274 -27 -404 10 -270 62 -594 132 -817 8 -26 15 -54 15 -63 0 -8 6 -30 14 -48 7 -18 21 -60 31 -93 9 -33 23 -72 31 -87 8 -14 14 -33 14 -42 0 -8 6 -30 14 -48 8 -18 22 -53 31 -78 21 -55 43 -106 61 -143 8 -16 14 -33 14 -38 0 -9 26 -67 100 -224 68 -144 97 -209 120 -265 12 -30 26 -64 32 -74 6 -11 14 -31 18 -45 5 -14 18 -51 30 -81 26 -68 86 -248 105 -315 7 -27 21 -75 29 -106 9 -31 16 -64 16 -75 0 -10 6 -48 14 -84 8 -36 20 -125 27 -198 31 -335 -51 -631 -227 -821 -89 -97 -236 -196 -347 -237 -92 -33 -163 -54 -187 -55 -14 0 -34 -4 -45 -9 -11 -5 1931 -9 4413 -9 l4432 -1 0 2745 0 2745 -4164 0 c-3498 0 -4165 -2 -4168 -14z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.page-header__shape {
  max-width: 100%;
  height: auto;
  margin: auto 0px;
  position: absolute;
  top: 80px;
  right: 79px;
  bottom: 0px;
  z-index: 1;
  animation: zoomIn 2s infinite alternate;
}
@media (max-width: 1199px) {
  .page-header__shape {
    display: none;
  }
}
@media (min-width: 1800px) {
  .page-header__shape {
    left: 79px;
    right: auto;
  }
}

.findox-breadcrumb {
  margin: 0;
  padding: 5px 15.5px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
  border-radius: 5px;
  background-color: var(--findox-white, #ffffff);
}
.findox-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25;
}
@media (max-width: 575px) {
  .findox-breadcrumb li {
    font-size: 15px;
  }
}
.findox-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  margin-left: 6px;
  margin-right: 6px;
  font-size: 16px;
}
.findox-breadcrumb li span,
.findox-breadcrumb li a {
  display: inline-flex;
}
.findox-breadcrumb li:not(:first-child) span {
  color: var(--findox-primary, #f5c835);
}
.findox-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.findox-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.findox-breadcrumb li a:hover {
  color: var(--findox-primary, #f5c835);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  overflow: hidden;
  background-color: var(--findox-base, #006654);
}
.main-footer__top {
  position: relative;
  padding-top: 223px;
  padding-bottom: 0px;
  overflow: hidden;
}
.main-footer__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.main-footer__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--findox-base-rgb, 0, 102, 84), 0.94);
}
.main-footer .container {
  position: relative;
  z-index: 1;
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px 30px;
  padding: 25px 0px;
  border-top: 1px solid rgba(var(--findox-white-rgb, 255, 255, 255), 0.3);
}
@media (max-width: 991px) {
  .main-footer__bottom__inner {
    flex-direction: column-reverse;
    justify-content: center;
    padding: 30px 0px;
    text-align: center;
  }
}
.main-footer__copyright {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-white, #ffffff);
  text-transform: capitalize;
}
.main-footer__page {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px 26px;
  margin: 0px;
}
@media (max-width: 991px) {
  .main-footer__page {
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .main-footer__page {
    gap: 13px 22px;
  }
}
.main-footer__page li {
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-white, #ffffff);
  line-height: 1.25;
  text-transform: capitalize;
}
.main-footer__page li a {
  color: inherit;
}
.main-footer__page li a:hover {
  color: var(--findox-primary, #f5c835);
}
.main-footer__page li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer__page li a:hover {
  background-size: 100% 1px;
}
.main-footer--two .main-footer__top {
  padding-top: 0px;
}
.main-footer--two .main-footer__newsletter {
  margin-bottom: 74px;
  border-bottom: 1px solid RGBA(var(--findox-border-color-rgb, 221, 221, 221), 0.3);
}
@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter {
    border: none;
  }
}
.main-footer--two .main-footer__newsletter__content {
  display: flex;
  gap: 39px;
  align-items: center;
}
@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter__content {
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .main-footer--two .main-footer__newsletter__content {
    text-align: center;
    flex-direction: column;
  }
}
.main-footer--two .main-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 42px 40px;
  position: relative;
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 360px) {
  .main-footer--two .main-footer__logo {
    padding: 30px;
  }
}
.main-footer--two .main-footer__logo::before, .main-footer--two .main-footer__logo::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0px;
  background-color: rgba(var(--findox-primary-rgb, 245, 200, 53), 0.3);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
@media (max-width: 1299px) {
  .main-footer--two .main-footer__logo::before, .main-footer--two .main-footer__logo::after {
    display: none;
  }
}
.main-footer--two .main-footer__logo::before {
  width: 80px;
  left: -80px;
}
.main-footer--two .main-footer__logo::after {
  width: 40px;
  left: -40px;
}
.main-footer--two .main-footer__logo img {
  max-width: 100%;
  height: auto;
}
.main-footer--two .main-footer__newsletter__title {
  margin: 0px;
  font-size: 22px;
  color: var(--findox-white, #ffffff);
  font-weight: 700;
  line-height: 1.314;
  text-transform: capitalize;
}
.main-footer--two .main-footer__newsletter__form {
  position: relative;
}
@media (max-width: 1199px) {
  .main-footer--two .main-footer__newsletter__form {
    max-width: 586px;
    margin: 0px auto;
  }
}
.main-footer--two .main-footer__newsletter__form input[type=email],
.main-footer--two .main-footer__newsletter__form input[type=text] {
  width: 100%;
  height: 45px;
  outline: none;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: var(--findox-text, #636363);
  padding-left: 30px;
  padding-right: 5px;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.main-footer--two .main-footer__newsletter__form input[type=email]:focus,
.main-footer--two .main-footer__newsletter__form input[type=text]:focus {
  color: var(--findox-black, #000000);
}
.main-footer--two .main-footer__newsletter__form .findox-btn {
  width: 100%;
  display: block;
  margin-top: 20px;
  padding: 9.5px 30px;
  text-align: center;
  border-radius: 100px;
}
.main-footer--two .main-footer__newsletter__form .findox-btn::before {
  display: none;
}
@media (max-width: 575px) {
  .main-footer--two .main-footer__newsletter__form .findox-btn::after {
    background-color: var(--findox-white, #ffffff);
  }
}
@media (min-width: 576px) {
  .main-footer--two .main-footer__newsletter__form .findox-btn {
    width: auto;
    display: inline-flex;
    margin: 0px;
    padding: 9.5px 24px;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
  }
}
.main-footer--two .main-footer__newsletter__form .findox-btn__text {
  font-size: 15px;
}
.main-footer--two .main-footer__newsletter__form .findox-btn__text__icon {
  margin-left: 3px;
  font-size: 14px;
  color: inherit;
}
.main-footer--two .main-footer__newsletter__form .findox-btn__text__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-footer--two .main-footer__newsletter__form .findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.main-footer--two .footer-widget__title {
  margin-bottom: 25px;
}
.main-footer--two .footer-widget--links,
.main-footer--two .footer-widget--blog {
  margin-top: 0px;
}
.main-footer--two .main-footer__shape-1,
.main-footer--two .main-footer__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
}
.main-footer--two .main-footer__shape-1 {
  top: 0px;
  left: 0px;
  animation: moveX2 2s linear infinite;
}
.main-footer--two .main-footer__shape-2 {
  right: 66px;
  bottom: 153px;
  animation: rotate 7s linear infinite;
}
@media (max-width: 1599px) {
  .main-footer--two .main-footer__shape-2 {
    right: 20px;
    bottom: 100px;
  }
}
@media (max-width: 1399px) {
  .main-footer--two .main-footer__shape-2 {
    display: none;
  }
}

.footer-widget--links, .footer-widget--blog {
  margin-top: 20px;
}
.footer-widget--links-1 {
  padding-left: 70px;
}
@media (max-width: 1199px) {
  .footer-widget--links-1 {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .footer-widget--links-1 {
    padding-left: 20px;
  }
}
@media (max-width: 767px) {
  .footer-widget--links-1 {
    margin-top: 0px;
    padding-left: 0px;
  }
}
.footer-widget--links-2 {
  padding-left: 70px;
}
@media (max-width: 1199px) {
  .footer-widget--links-2 {
    padding-left: 40px;
  }
}
@media (max-width: 991px) {
  .footer-widget--links-2 {
    margin-top: 0px;
    padding-left: 0px;
  }
}
.footer-widget--blog {
  padding-left: 12px;
}
@media (max-width: 1199px) {
  .footer-widget--blog {
    margin-top: 0px;
    padding-left: 0px;
  }
}
.footer-widget__title {
  margin-bottom: 34px;
  font-size: 22px;
  color: var(--findox-white, #ffffff);
  font-weight: 700;
  line-height: 1.363;
  text-transform: capitalize;
}
@media (max-width: 575px) {
  .footer-widget__title {
    margin-bottom: 25px;
  }
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 31px;
}
.footer-widget__logo img {
  max-width: 100%;
  height: auto;
}
.footer-widget__text {
  margin-bottom: 22px;
  color: var(--findox-white, #ffffff);
}
.footer-widget__links-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
}
.footer-widget__links {
  margin: 0px;
}
.footer-widget__links li + li {
  margin-top: 10px;
}
.footer-widget__links li {
  font-size: 16px;
  color: var(--findox-white, #ffffff);
}
.footer-widget__links li a {
  color: inherit;
}
.footer-widget__links li a:hover {
  color: var(--findox-primary, #f5c835);
}
.footer-widget__links li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links--1 li {
  position: relative;
  padding-left: 15px;
}
.footer-widget__links--1 li::before {
  content: "\f068";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "Font Awesome 5 Free";
  font-size: 8px;
  color: var(--findox-white, #ffffff);
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  transition: all 500ms ease;
}
.footer-widget__links--1 li:hover::before {
  color: var(--findox-primary, #f5c835);
}
.footer-widget__blog {
  margin: 0px;
}
.footer-widget__blog li + li {
  margin-top: 30px;
}
.footer-widget__blog li {
  display: grid;
  grid-template-columns: 75px auto;
  align-items: start;
  grid-gap: 19px;
}
.footer-widget__blog__image {
  width: 75px;
  border-radius: 5px;
}
.footer-widget__blog__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
}
.footer-widget__blog__date {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--findox-white, #ffffff);
}
.footer-widget__blog__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--findox-primary, #f5c835);
}
.footer-widget__blog__title {
  margin: 0px;
  font-size: 16px;
  font-weight: 600;
  color: var(--findox-white, #ffffff);
  line-height: 1.375;
}
.footer-widget__blog__title a {
  color: inherit;
}
.footer-widget__blog__title a:hover {
  color: var(--findox-primary, #f5c835);
}
.footer-widget__blog__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__blog__title a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
  padding: 34px 32px;
  border-radius: 10px;
  background-color: var(--findox-white2, #f0f2f8);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding: 26px 25px;
  }
}
@media (max-width: 375px) {
  .sidebar__single {
    padding: 26px 25px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  position: relative;
  margin-bottom: 34px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.363;
}
.sidebar__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 39px;
  height: 3px;
  background-color: var(--findox-primary, #f5c835);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  padding-left: 20px;
  padding-right: 44px;
  outline: none;
  border: 0;
  width: 100%;
  height: 55px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  border-radius: 10px;
  background-color: var(--findox-white, #ffffff);
  transition: all 400ms ease;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  color: var(--findox-black4, #131111);
}
.sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 400ms ease;
}
.sidebar__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__search button[type=submit]:hover {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.sidebar__categories-wrapper {
  padding-bottom: 34px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__categories-wrapper {
    padding-bottom: 27px;
  }
}
@media (max-width: 375px) {
  .sidebar__categories-wrapper {
    padding-bottom: 27px;
  }
}
.sidebar__categories {
  margin: 0px;
}
.sidebar__categories-title {
  margin-bottom: 28px;
}
.sidebar__categories-title::after {
  width: 67px;
}
.sidebar__categories li:not(:last-child) {
  margin-bottom: 10.5px;
}
.sidebar__categories li a {
  position: relative;
  font-size: 17px;
  color: var(--findox-text, #636363);
  text-transform: capitalize;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sidebar__categories li a {
    font-size: 16px;
  }
}
@media (max-width: 360px) {
  .sidebar__categories li a {
    font-size: 16px;
  }
}
.sidebar__categories li a:hover {
  color: var(--findox-base, #006654);
}
.sidebar__categories li a span {
  color: inherit;
}
.sidebar__categories__text {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.sidebar__categories__icon {
  position: relative;
  top: 1px;
  font-size: 16px;
  overflow: hidden;
}
.sidebar__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__categories a:hover .sidebar__categories__icon > * {
  animation: slideRight 500ms;
}
.sidebar__tags-wrapper {
  padding-bottom: 41px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__tags-wrapper {
    padding-bottom: 33px;
  }
}
@media (max-width: 375px) {
  .sidebar__tags-wrapper {
    padding-bottom: 33px;
  }
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.sidebar__tags .findox-btn {
  padding: 5px 20px 6px;
  border-radius: 5px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
}
.sidebar__tags .findox-btn:hover {
  border-color: var(--findox-base, #006654);
}
.sidebar__tags .findox-btn::before {
  display: none;
}
.sidebar__tags .findox-btn::after {
  background-color: var(--findox-base, #006654);
}
.sidebar__tags .findox-btn__text {
  color: var(--findox-text, #636363);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.25;
}
.sidebar__tags .findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.sidebar__posts-wrapper {
  padding-bottom: 41px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__posts-wrapper {
    padding-bottom: 29px;
  }
}
@media (max-width: 375px) {
  .sidebar__posts-wrapper {
    padding-bottom: 29px;
  }
}
.sidebar__posts {
  margin: 0px;
}
.sidebar__posts-title::after {
  width: 77px;
}
.sidebar__posts__item {
  display: flex;
  gap: 14px;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__posts__image {
  width: 94px;
  flex-shrink: 0;
}
.sidebar__posts__image img {
  width: 100%;
  display: block;
  border-radius: 5px;
}
.sidebar__posts__content {
  margin-top: 5px;
  width: calc(100% - 94px);
}
.sidebar__posts__meta {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--findox-text, #636363);
  font-size: 14px;
  line-height: 1;
}
.sidebar__posts__meta__icon {
  position: relative;
  top: 1px;
  display: inline-flex;
  font-size: 12px;
}
.sidebar__posts__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__posts__title {
  margin: 0;
  font-size: 17px;
  color: var(--findox-black3, #333333);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.352;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sidebar__posts__title {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .sidebar__posts__title {
    font-size: 15px;
  }
}
.sidebar__posts__title a {
  color: inherit;
}
.sidebar__posts__title a:hover {
  color: var(--findox-base, #006654);
}
.sidebar__posts__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}

.sidebar-two {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-two.active {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-two__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.8;
  cursor: url(../images/close.png), auto;
}
.sidebar-two__content {
  width: 310px;
  background-color: var(--findox-white, #ffffff);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 70px;
  padding-bottom: 30px;
  padding-left: 24px;
  padding-right: 24px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sidebar-two__content::-webkit-scrollbar {
  display: none;
}
.sidebar-two.active .sidebar-two__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-two__close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: var(--findox-black4, #131111);
  cursor: pointer;
  transition: all 400ms ease;
}
.sidebar-two__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar-two__close:hover {
  color: var(--findox-base, #006654);
}
.sidebar-two__item:not(:last-child) {
  margin-bottom: 40px;
}
.sidebar-two__title {
  margin-bottom: 25px;
  position: relative;
  font-size: 22px;
  color: var(--findox-black4, #131111);
  font-weight: 700;
  line-height: 1.4;
  text-transform: capitalize;
}
.sidebar-two__title::before, .sidebar-two__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: var(--findox-base, #006654);
  width: 20px;
  height: 2px;
}
.sidebar-two__title::after {
  width: 50px;
  left: 25px;
}
.sidebar-two__about__text {
  margin: 0px;
}
.sidebar-two__info__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-two__info__list li {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  color: var(--findox-text, #636363);
  font-weight: 500;
  line-height: 1.75;
}
.sidebar-two__info__list li + li {
  margin-top: 20px;
}
.sidebar-two__info__list li .sidebar-two__info__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
  margin-right: 12px;
  background-color: var(--findox-base, #006654);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.sidebar-two__info__list li .sidebar-two__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar-two__info__list li:hover .sidebar-two__info__icon {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.sidebar-two__info__list li:hover .sidebar-two__info__icon > * {
  animation: slideTop 400ms;
}
.sidebar-two__info__list li address {
  margin: 0;
  color: inherit;
  text-transform: capitalize;
}
.sidebar-two__info__list li a {
  position: relative;
  top: 3px;
  color: inherit;
}
.sidebar-two__info__list li a:hover {
  color: var(--findox-base, #006654);
}
.sidebar-two .social-links {
  gap: 15px;
}
.sidebar-two .social-links a {
  width: 32px;
  height: 32px;
  border: none;
  background-color: var(--findox-base, #006654);
}
.sidebar-two .social-links a:hover {
  background-color: var(--findox-primary, #f5c835);
}
.sidebar-two .social-links__icon {
  font-size: 14px;
  color: var(--findox-white, #ffffff);
}
.sidebar-two .social-links a:hover .social-links__icon {
  color: var(--findox-black4, #131111);
}
.sidebar-two__newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sidebar-two__newsletter__input {
  outline: 0;
  border: 0;
  padding-left: 20px;
  font-size: 14px;
  color: var(--findox-text, #636363);
  width: calc(100% - 50px);
  height: 50px;
  background-color: var(--findox-white3, #ecf5f4);
  transition: all 400ms ease;
}
.sidebar-two__newsletter__input:focus {
  color: var(--findox-black4, #131111);
}
.sidebar-two__newsletter__btn {
  outline: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
  width: 50px;
  height: 50px;
  background-color: var(--findox-base, #006654);
  overflow: hidden;
  transition: all 400ms ease;
}
.sidebar-two__newsletter__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar-two__newsletter__btn:hover {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.sidebar-two__newsletter__btn:hover > * {
  animation: slideTop 400ms;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  width: 100%;
  height: 484px;
  display: block;
  position: relative;
  border: none;
  mix-blend-mode: luminosity;
}
@media (max-width: 767px) {
  .google-map iframe {
    height: 450px;
  }
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--findox-black, #000000);
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.hero-one {
  position: relative;
  margin-top: 85px;
  padding: 263px 0px 176px;
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 1199px) {
  .hero-one {
    padding-top: 180px;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .hero-one {
    padding-top: 200px;
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .hero-one {
    padding-top: 190px;
  }
}
@media (max-width: 390px) {
  .hero-one {
    padding-top: 180px;
  }
}
@media (max-width: 360px) {
  .hero-one {
    padding-top: 170px;
  }
}
.hero-one__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.hero-one__bg::before {
  content: "";
  width: 195px;
  height: 195px;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media (max-width: 575px) {
  .hero-one__bg::before {
    display: none;
  }
}
.hero-one .container {
  position: relative;
  z-index: 1;
}
.hero-one__content {
  position: relative;
}
.hero-one__content__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -40px;
  right: -59px;
  animation: zoomIn2 2s infinite alternate;
}
@media (max-width: 1199px) {
  .hero-one__content__shape {
    display: none;
  }
}
.hero-one__tagline {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  margin-bottom: 22px;
  padding: 13px 80px 11px 20px;
  background-color: var(--findox-white, #ffffff);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
@media (max-width: 575px) {
  .hero-one__tagline {
    padding-left: 25px;
    padding-right: 40px;
  }
}
.hero-one__tagline::before {
  content: "";
  width: 33px;
  height: calc(100% - 8px);
  position: absolute;
  top: 50%;
  right: 9.5px;
  transform: translateY(-50%);
  background-color: var(--findox-base, #006654);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
@media (max-width: 575px) {
  .hero-one__tagline::before {
    display: none;
  }
}
.hero-one__tagline::after {
  content: "";
  width: 38px;
  height: 23px;
  position: absolute;
  top: 50%;
  right: 23.5px;
  z-index: 1;
  transform: translateY(-50%);
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media (max-width: 575px) {
  .hero-one__tagline::after {
    display: none;
  }
}
.hero-one__tagline__shape {
  max-width: 100%;
  height: auto;
  position: relative;
  top: 1px;
}
@media (max-width: 767px) {
  .hero-one__tagline__shape {
    top: 0px;
  }
}
.hero-one__tagline__text {
  margin: 0px;
  font-size: 18px;
  color: var(--findox-primary, #f5c835);
  font-weight: 600;
  line-height: 1.277;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .hero-one__tagline__text {
    font-size: 16px;
  }
}
.hero-one__title {
  margin-bottom: 26px;
  font-size: 60px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.166;
}
@media (max-width: 1399px) {
  .hero-one__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-one__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-one__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .hero-one__title {
    font-size: 35px;
  }
}
.hero-one__title span {
  position: relative;
}
.hero-one__title span::after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0px;
  bottom: 9px;
  border-radius: 100px;
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 1399px) {
  .hero-one__title span::after {
    bottom: 7px;
  }
}
@media (max-width: 767px) {
  .hero-one__title span::after {
    bottom: 5px;
  }
}
@media (max-width: 440px) {
  .hero-one__title span::after {
    height: 3px;
    bottom: 2px;
  }
}
.hero-one__title span span {
  color: var(--findox-primary, #f5c835);
}
.hero-one__video {
  width: 45px;
  height: 45px;
  top: -5px;
  vertical-align: middle;
}
@media (max-width: 1199px) {
  .hero-one__video {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .hero-one__video {
    width: 33px;
    height: 33px;
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .hero-one__video {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
.hero-one__bottom {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-one__image {
  display: inline-block;
  position: absolute;
  right: -167px;
  bottom: -182px;
}
@media (max-width: 1399px) {
  .hero-one__image {
    right: -90px;
  }
}
@media (max-width: 1199px) {
  .hero-one__image {
    position: static;
  }
  .hero-one__image img {
    max-width: 100%;
    height: auto;
  }
}
.hero-one__shape-1, .hero-one__shape-2, .hero-one__shape-3, .hero-one__shape-4 {
  max-width: 100%;
  height: auto;
  position: absolute;
}
.hero-one__shape-1 {
  left: 4.3%;
  bottom: 92px;
  animation: zoomIn2 2s infinite alternate;
}
@media (max-width: 1799px) {
  .hero-one__shape-1 {
    left: 2%;
  }
}
@media (max-width: 1599px) {
  .hero-one__shape-1 {
    display: none;
  }
}
.hero-one__shape-2 {
  right: 0px;
  bottom: 0px;
  animation: moveX 2s linear infinite;
}
.hero-one__shape-3 {
  top: 0px;
  right: 16.6%;
  animation: vibrant2 3s ease 0s infinite;
}
@media (max-width: 1799px) {
  .hero-one__shape-3 {
    right: 8.6%;
  }
}
@media (max-width: 1599px) {
  .hero-one__shape-3 {
    right: 5%;
  }
}
@media (max-width: 1199px) {
  .hero-one__shape-3 {
    top: -60px;
  }
}
@media (max-width: 767px) {
  .hero-one__shape-3 {
    display: none;
  }
}
.hero-one__shape-4 {
  right: 5%;
  bottom: 269px;
  animation: rotate 4.5s linear infinite;
}
@media (max-width: 1199px) {
  .hero-one__shape-4 {
    bottom: 230px;
  }
}
@media (max-width: 991px) {
  .hero-one__shape-4 {
    display: none;
  }
}

.hero-slider {
  --calculation: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.hero-slider__carousel {
  position: relative;
  z-index: 1;
}
.hero-slider__carousel.owl-carousel .owl-nav {
  margin: 0px;
  padding: 19.5px 30px;
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: inline-flex;
  gap: 65px;
  align-items: center;
  background-color: var(--findox-white, #ffffff);
}
.hero-slider__carousel.owl-carousel .owl-nav::after {
  content: "";
  width: calc(100% - 134px);
  height: calc(100% - 50px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--findox-white3, #ecf5f4);
}
.hero-slider__carousel.owl-carousel .owl-nav button {
  width: 51px;
  height: 51px;
  position: relative;
  z-index: 1;
  color: var(--findox-base, #006654);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-white, #ffffff);
}
.hero-slider__carousel.owl-carousel .owl-nav button:hover {
  color: var(--findox-base, #006654);
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.hero-slider__carousel .findox-owl__carousel__counter {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 92.5px;
  bottom: 35.5px;
  z-index: 1;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--findox-black, #000000);
  font-weight: 600;
  line-height: 1;
}
.hero-slider__carousel .findox-owl__carousel__counter__current {
  color: var(--findox-primary, #f5c835);
}
.hero-slider__carousel .findox-owl__carousel__counter__total {
  position: relative;
}
.hero-slider__carousel .findox-owl__carousel__counter__total::before {
  content: "/";
  position: absolute;
  top: -1px;
  left: -14px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--findox-black, #000000);
  font-weight: 700;
  line-height: 1;
}
.hero-slider__item {
  position: relative;
  padding: 175px 0px 82px;
  overflow: hidden;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 1199px) {
  .hero-slider__item {
    padding: 240px 0px 180px;
  }
}
@media (max-width: 767px) {
  .hero-slider__item {
    padding-top: 200px;
  }
}
@media (max-width: 440px) {
  .hero-slider__item {
    padding-top: 180px;
  }
}
.hero-slider__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: all 10s ease;
}
.hero-slider__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.95);
}
.hero-slider .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .hero-slider .container {
    max-width: 1356px;
  }
}
@media (min-width: 1600px) {
  .hero-slider .container {
    max-width: 1561px;
  }
}
@media (min-width: 1800px) {
  .hero-slider .container {
    margin-right: 69px;
  }
}
.hero-slider__grid {
  display: grid;
  gap: 6% 4%;
  align-items: center;
  grid-template-columns: 46% 50%;
}
@media (max-width: 1199px) {
  .hero-slider__grid {
    display: block;
  }
}
.hero-slider__content {
  opacity: 0;
  transition: 0.5s;
  transform: translateX(calc(-100vw * var(--calculation)));
}
.hero-slider__tagline, .hero-slider__title, .hero-slider__description, .hero-slider__button {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateX(calc(-200px * var(--calculation)));
}
.hero-slider__tagline {
  display: inline-flex;
  align-items: center;
  margin-bottom: 21px;
}
.hero-slider__tagline__image {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  border-radius: 0px 50px;
  border: 4px solid var(--findox-white, #ffffff);
}
@media (max-width: 440px) {
  .hero-slider__tagline__image {
    display: none !important;
  }
}
.hero-slider__tagline__text {
  margin: 0px;
  position: relative;
  padding: 10.5px 30px 9.5px 26px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 22px;
  color: var(--findox-primary, #f5c835);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.277;
}
@media (max-width: 991px) {
  .hero-slider__tagline__text {
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .hero-slider__tagline__text {
    padding-left: 20px;
  }
}
.hero-slider__tagline__text::after {
  content: "";
  width: calc(100% + 70px);
  height: 100%;
  position: absolute;
  top: 0px;
  left: -70px;
  border-radius: 0px 50px 50px 0px;
  border: 1px solid var(--findox-white, #ffffff);
}
@media (max-width: 440px) {
  .hero-slider__tagline__text::after {
    width: 100%;
    left: 0px;
  }
}
.hero-slider__title {
  margin-bottom: 20px;
  font-size: 60px;
  font-weight: 700;
  color: var(--findox-white, #ffffff);
  line-height: 1.166;
  text-transform: capitalize;
  transition-delay: 0.5s;
}
@media (max-width: 1599px) {
  .hero-slider__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .hero-slider__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-slider__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .hero-slider__title {
    font-size: 35px;
  }
}
.hero-slider__title span {
  display: inline-block;
}
.hero-slider__title__highlight {
  color: transparent;
  text-transform: lowercase;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--findox-primary, #f5c835);
}
@media (max-width: 1399px) {
  .hero-slider__title__highlight {
    -webkit-text-stroke-width: 1px;
  }
}
.hero-slider__title__highlight::first-letter {
  text-transform: capitalize;
}
.hero-slider__title__highlight span {
  position: relative;
  color: var(--findox-primary, #f5c835);
}
.hero-slider__title img {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .hero-slider__title img {
    display: none !important;
  }
}
.hero-slider__description {
  margin-bottom: 40px;
  transition-delay: 0.7s;
}
.hero-slider__text {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-white, #ffffff);
  line-height: 1.3125;
}
@media (max-width: 575px) {
  .hero-slider__text {
    font-size: 16px;
  }
}
.hero-slider__button {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
  align-items: center;
  transition-delay: 0.9s;
}
.hero-slider .findox-btn:last-child::after {
  background-color: var(--findox-white, #ffffff);
}
.hero-slider .findox-btn:last-child::before {
  background-color: var(--findox-primary, #f5c835);
}
.hero-slider .findox-btn:last-child:hover .findox-btn__text {
  color: var(--findox-black2, #222222);
}
.hero-slider__image {
  position: relative;
  opacity: 0;
  transform: translateX(calc(200px * var(--calculation)));
}
@media (max-width: 1199px) {
  .hero-slider__image {
    max-width: 762px;
    margin-top: 50px;
  }
}
.hero-slider__image__inner {
  padding: 10px;
  background-color: var(--findox-white, #ffffff);
  -webkit-mask: url("../images/shapes/hero-slider-image-shape-1-1.png");
  mask: url("../images/shapes/hero-slider-image-shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.hero-slider__image__main {
  -webkit-mask: url("../images/shapes/hero-slider-image-shape-1-2.png");
  mask: url("../images/shapes/hero-slider-image-shape-1-2.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.hero-slider__image__main img {
  width: 100%;
  display: block;
}
.hero-slider__image__chart {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 33px;
  bottom: 76px;
  z-index: 1;
  border-radius: 20px;
  animation: vibrant2 3s ease 0s infinite;
}
@media (max-width: 1199px) {
  .hero-slider__image__chart {
    right: 0px;
  }
}
@media (max-width: 767px) {
  .hero-slider__image__chart {
    bottom: 40px;
  }
}
@media (max-width: 575px) {
  .hero-slider__image__chart {
    display: none !important;
  }
}
.hero-slider__earning {
  padding: 11px 40px 11px 11px;
  display: flex;
  align-items: center;
  gap: 18px;
  position: absolute;
  top: 42px;
  left: -85px;
  z-index: 1;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  animation: vibrant 3s ease 0s infinite;
}
@media (max-width: 1399px) {
  .hero-slider__earning {
    top: 30px;
    left: -40px;
  }
}
@media (max-width: 1199px) {
  .hero-slider__earning {
    left: -20px;
  }
}
@media (max-width: 575px) {
  .hero-slider__earning {
    display: none;
  }
}
.hero-slider__earning__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 28px;
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.hero-slider__earning__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.hero-slider__earning:hover .main-header__call__icon {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-black4, #131111);
}
.hero-slider__earning__title {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
}
.hero-slider__earning__amount {
  margin: 0px;
  font-size: 18px;
  color: var(--findox-black2, #222222);
  font-weight: 600;
  line-height: 1.25;
  text-transform: capitalize;
}
.hero-slider__shape-1 {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  opacity: 0;
  animation: moveX2 2s linear infinite;
}
@media (max-width: 1599px) {
  .hero-slider__shape-1 {
    display: none !important;
  }
}
.hero-slider__shape-2 {
  width: 51.5%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--findox-primary, #f5c835);
  -webkit-mask: url("../images/shapes/hero-slider-shape-1-3.png");
  mask: url("../images/shapes/hero-slider-shape-1-3.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 1599px) {
  .hero-slider__shape-2 {
    width: 36.1%;
  }
}
@media (max-width: 1399px) {
  .hero-slider__shape-2 {
    width: 32.5%;
  }
}
@media (max-width: 1199px) {
  .hero-slider__shape-2 {
    display: none;
  }
}
.hero-slider .active .hero-slider__bg {
  transform: scale(1.1);
}
.hero-slider .active .hero-slider__content,
.hero-slider .active .hero-slider__tagline,
.hero-slider .active .hero-slider__title,
.hero-slider .active .hero-slider__description,
.hero-slider .active .hero-slider__button,
.hero-slider .active .hero-slider__image {
  opacity: 1;
  transform: translateX(0px);
}
.hero-slider .active .hero-slider__image {
  transition: 0.6s;
  transition-delay: 0.3s;
}
.hero-slider .active .hero-slider__shape-1 {
  opacity: 1;
  transition: opacity 500ms ease 500ms;
}

.hero-slider-two {
  --calculation: 1;
  --RT: 1.5s; /* transition time */
  --RTDELAY: 0.3s; /* transition delay */
  --BG-T: 1s; /* background zoom transition */
  --TOTAL-T: calc(var(--RT) + var(--RTDELAY) + var(--BG-T));
  padding-left: 100px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 1799px) {
  .hero-slider-two {
    padding-left: 0px;
  }
}
.hero-slider-two__carousel {
  position: relative;
  z-index: 1;
}
.hero-slider-two__carousel.owl-carousel .owl-dots {
  margin: 0px !important;
  position: absolute;
  left: 15px;
  bottom: 126px;
}
@media (max-width: 440px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    bottom: 116px;
  }
}
@media (min-width: 576px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    bottom: 146px;
    left: calc((100% - 510px) / 2);
  }
}
@media (min-width: 768px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    left: calc((100% - 690px) / 2);
  }
}
@media (min-width: 992px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    left: calc((100% - 930px) / 2);
  }
}
@media (min-width: 1200px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    left: calc((100% - 1170px) / 2);
  }
}
@media (min-width: 1400px) {
  .hero-slider-two__carousel.owl-carousel .owl-dots {
    bottom: 189px;
    left: calc((100% - 1330px) / 2);
  }
}
.hero-slider-two__carousel.owl-carousel .owl-dots .owl-dot {
  border-color: var(--findox-white, #ffffff);
}
.hero-slider-two__item {
  position: relative;
  padding: 186px 0px 245px;
  overflow: hidden;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 1399px) {
  .hero-slider-two__item {
    padding: 150px 0px 213px;
  }
}
@media (max-width: 575px) {
  .hero-slider-two__item {
    padding: 130px 0px 198px;
  }
}
@media (max-width: 440px) {
  .hero-slider-two__item {
    padding: 120px 0px 192px;
  }
}
.hero-slider-two .slider--el {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform var(--TOTAL-T), z-index 0.1s;
  overflow: hidden;
}
.hero-slider-two .slider--el-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background-size: cover;
  transition: transform var(--BG-T) var(--RT);
  will-change: transform;
}
.hero-slider-two .slider--el.anim-5parts .part {
  position: absolute;
  top: 0;
  width: 20.1%;
  height: 100%;
  overflow: hidden;
  will-change: transform;
}
.hero-slider-two .slider--el.anim-5parts .part::before {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  top: 0;
  width: 500%;
  height: 100%;
  background-image: inherit;
}
.hero-slider-two .slider--el.anim-5parts .part-1 {
  left: 0%;
}
.hero-slider-two .slider--el.anim-5parts .part-2 {
  left: 20%;
}
.hero-slider-two .slider--el.anim-5parts .part-3 {
  left: 40%;
}
.hero-slider-two .slider--el.anim-5parts .part-4 {
  left: 60%;
}
.hero-slider-two .slider--el.anim-5parts .part-5 {
  left: 80%;
}
.hero-slider-two .slider--el.anim-5parts .part-1::before {
  left: 0%;
}
.hero-slider-two .slider--el.anim-5parts .part-2::before {
  left: -100%;
}
.hero-slider-two .slider--el.anim-5parts .part-3::before {
  left: -200%;
}
.hero-slider-two .slider--el.anim-5parts .part-4::before {
  left: -300%;
}
.hero-slider-two .slider--el.anim-5parts .part-5::before {
  left: -400%;
}
.hero-slider-two .slider--el.anim-5parts .part-1 {
  transition: transform calc(var(--RT) - 0.4s) var(--RTDELAY);
}
.hero-slider-two .slider--el.anim-5parts .part-2 {
  transition: transform calc(var(--RT) - 0.4s) calc(var(--RTDELAY) + 0.2s);
}
.hero-slider-two .slider--el.anim-5parts .part-3 {
  transition: transform calc(var(--RT) - 0.4s) calc(var(--RTDELAY) + 0.4s);
}
.hero-slider-two .slider--el.anim-5parts .part-4 {
  transition: transform calc(var(--RT) - 0.4s) calc(var(--RTDELAY) + 0.2s);
}
.hero-slider-two .slider--el.anim-5parts .part-5 {
  transition: transform calc(var(--RT) - 0.4s) var(--RTDELAY);
}
.hero-slider-two .slider--el.anim-5parts .part {
  transform: translateY(100%);
}
.hero-slider-two .slider--el.anim-9parts .slider--el-bg {
  perspective: 2000px;
}
.hero-slider-two .slider--el.anim-9parts .part {
  position: absolute;
  width: 33.5%;
  height: 33.5%;
  overflow: hidden;
  will-change: transform;
  transform-origin: 0% 100%;
}
.hero-slider-two .slider--el.anim-9parts .part::before {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  width: 300%;
  height: 300%;
  background-image: inherit;
}
.hero-slider-two .slider--el.anim-9parts .left-top {
  top: 0%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-top {
  top: 0%;
  left: 33.3333333333%;
}
.hero-slider-two .slider--el.anim-9parts .right-top {
  top: 0%;
  left: 66.6666666667%;
}
.hero-slider-two .slider--el.anim-9parts .left-mid {
  top: 33.3333333333%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-mid {
  top: 33.3333333333%;
  left: 33.3333333333%;
}
.hero-slider-two .slider--el.anim-9parts .right-mid {
  top: 33.3333333333%;
  left: 66.6666666667%;
}
.hero-slider-two .slider--el.anim-9parts .left-bot {
  top: 66.6666666667%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-bot {
  top: 66.6666666667%;
  left: 33.3333333333%;
}
.hero-slider-two .slider--el.anim-9parts .right-bot {
  top: 66.6666666667%;
  left: 66.6666666667%;
}
.hero-slider-two .slider--el.anim-9parts .left-top::before {
  top: 0%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-top::before {
  top: 0%;
  left: -100%;
}
.hero-slider-two .slider--el.anim-9parts .right-top::before {
  top: 0%;
  left: -200%;
}
.hero-slider-two .slider--el.anim-9parts .left-mid::before {
  top: -100%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-mid::before {
  top: -100%;
  left: -100%;
}
.hero-slider-two .slider--el.anim-9parts .right-mid::before {
  top: -100%;
  left: -200%;
}
.hero-slider-two .slider--el.anim-9parts .left-bot::before {
  top: -200%;
  left: 0%;
}
.hero-slider-two .slider--el.anim-9parts .mid-bot::before {
  top: -200%;
  left: -100%;
}
.hero-slider-two .slider--el.anim-9parts .right-bot::before {
  top: -200%;
  left: -200%;
}
.hero-slider-two .slider--el.anim-9parts .left-top {
  transition: transform 0.9s calc(0.2s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.6s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .mid-top {
  transition: transform 0.9s calc(0.1s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.5s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .right-top {
  transition: transform 0.9s calc(0.2s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.6s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .left-mid {
  transition: transform 0.9s calc(0.3s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.7s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .mid-mid {
  transition: transform 0.9s calc(0s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.4s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .right-mid {
  transition: transform 0.9s calc(0.3s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.7s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .left-bot {
  transition: transform 0.9s calc(0.4s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.8s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .mid-bot {
  transition: transform 0.9s calc(0.5s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.9s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .right-bot {
  transition: transform 0.9s calc(0.4s + var(--RTDELAY)) cubic-bezier(0.58, -0.7, 0.59, 0.95), opacity 0.6s calc(0.8s + var(--RTDELAY));
}
.hero-slider-two .slider--el.anim-9parts .part {
  transform: rotateX(90deg);
  opacity: 0;
}
.hero-slider-two .slider--el.anim-3parts .part {
  position: absolute;
  top: 0;
  width: 33.5%;
  height: 100%;
  overflow: hidden;
  transition: transform var(--RT) var(--RTDELAY);
  will-change: transform;
}
.hero-slider-two .slider--el.anim-3parts .part::before {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  width: 300%;
  height: 100%;
  background-image: inherit;
}
.hero-slider-two .slider--el.anim-3parts .left {
  left: 0;
}
.hero-slider-two .slider--el.anim-3parts .left::before {
  left: 0;
}
.hero-slider-two .slider--el.anim-3parts .mid {
  left: 33.3333333333%;
}
.hero-slider-two .slider--el.anim-3parts .mid::before {
  left: -100%;
}
.hero-slider-two .slider--el.anim-3parts .right {
  left: 66.6666666667%;
}
.hero-slider-two .slider--el.anim-3parts .right::before {
  left: -200%;
}
.hero-slider-two .slider--el.anim-3parts .left {
  transform: translate3d(-100%, -33.333%, 0);
}
.hero-slider-two .slider--el.anim-3parts .mid {
  transform: translate3d(0, 100%, 0);
}
.hero-slider-two .slider--el.anim-3parts .right {
  transform: translate3d(100%, -33.333%, 0);
}
.hero-slider-two .slider--el.anim-4parts .part {
  position: absolute;
  width: 50.2%;
  height: 50.2%;
  overflow: hidden;
  will-change: transform;
}
.hero-slider-two .slider--el.anim-4parts .part::before {
  content: "";
  display: block;
  position: absolute;
  background-size: cover;
  width: 200%;
  height: 200%;
  background-image: inherit;
}
.hero-slider-two .slider--el.anim-4parts .top {
  top: 0;
  transition: transform calc(var(--RT) - 0.2s) var(--RTDELAY);
}
.hero-slider-two .slider--el.anim-4parts .bot {
  top: 50%;
  transition: transform calc(var(--RT) - 0.2s) calc(var(--RTDELAY) + 0.2s);
}
.hero-slider-two .slider--el.anim-4parts .left {
  left: 0;
}
.hero-slider-two .slider--el.anim-4parts .right {
  left: 50%;
}
.hero-slider-two .slider--el.anim-4parts .top::before {
  top: 0;
}
.hero-slider-two .slider--el.anim-4parts .bot::before {
  top: -100%;
}
.hero-slider-two .slider--el.anim-4parts .left::before {
  left: 0;
}
.hero-slider-two .slider--el.anim-4parts .right::before {
  left: -100%;
}
.hero-slider-two .slider--el.anim-4parts .left {
  transform: translateX(-100%);
}
.hero-slider-two .slider--el.anim-4parts .right {
  transform: translateX(100%);
}
.hero-slider-two__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 11;
  background: linear-gradient(to right, RGBA(var(--findox-base-rgb, 0, 102, 84), 0.95) 0%, RGBA(var(--findox-base-rgb, 0, 102, 84), 0.95) 40%, rgba(14, 80, 75, 0) 80%);
}
@media (max-width: 1199px) {
  .hero-slider-two__overlay {
    background: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.8);
  }
}
.hero-slider-two .container {
  position: relative;
  z-index: 13;
}
@media (min-width: 1400px) {
  .hero-slider-two .container {
    max-width: 1364px;
  }
}
.hero-slider-two__content {
  opacity: 0;
  transition: 0.5s;
  transform: translateY(calc(100vw * var(--calculation)));
}
.hero-slider-two__tagline, .hero-slider-two__title, .hero-slider-two__description, .hero-slider-two__button {
  opacity: 0;
  transition: 0.7s;
  transition-delay: 0.3s;
  transform: translateY(calc(200px * var(--calculation)));
}
.hero-slider-two__tagline {
  display: inline-flex;
  align-items: center;
  margin-bottom: 11px;
}
@media (max-width: 575px) {
  .hero-slider-two__tagline {
    margin-bottom: 25px;
  }
}
.hero-slider-two__tagline__text {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0px;
  position: relative;
  z-index: 1;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 18px;
  color: var(--findox-primary, #f5c835);
  font-weight: 600;
  line-height: 1.277;
  text-transform: uppercase;
  padding: 13px 35px 11px 20px;
  background-color: var(--findox-white, #ffffff);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
@media (max-width: 991px) {
  .hero-slider-two__tagline__text {
    font-size: 16px;
  }
}
@media (max-width: 440px) {
  .hero-slider-two__tagline__text {
    padding-left: 20px;
  }
}
.hero-slider-two__tagline__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: relative;
  top: 1px;
}
@media (max-width: 767px) {
  .hero-slider-two__tagline__shape {
    top: 0px;
  }
}
.hero-slider-two__tagline__image {
  margin-left: -42px;
  flex-shrink: 0;
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  border-radius: 50px;
  border: 3px solid var(--findox-white, #ffffff);
}
@media (max-width: 500px) {
  .hero-slider-two__tagline__image {
    display: none !important;
  }
}
.hero-slider-two__title {
  margin-bottom: 14px;
  font-size: 60px;
  font-weight: 700;
  color: var(--findox-white, #ffffff);
  line-height: 1.166;
  text-transform: capitalize;
  transition-delay: 0.5s;
}
@media (max-width: 1399px) {
  .hero-slider-two__title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .hero-slider-two__title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .hero-slider-two__title {
    font-size: 40px;
  }
}
@media (max-width: 440px) {
  .hero-slider-two__title {
    font-size: 35px;
  }
}
.hero-slider-two__title span {
  font-weight: 400;
}
.hero-slider-two__title__text {
  color: var(--findox-primary, #f5c835);
}
.hero-slider-two__description {
  margin-bottom: 30px;
  transition-delay: 0.7s;
}
.hero-slider-two__text {
  margin: 0px;
  font-size: 16px;
  font-weight: 400;
  color: var(--findox-white, #ffffff);
  line-height: 1.3125;
}
@media (max-width: 575px) {
  .hero-slider-two__text {
    font-size: 16px;
  }
}
.hero-slider-two__button {
  display: flex;
  gap: 30px 35px;
  flex-wrap: wrap;
  align-items: center;
  transition-delay: 0.9s;
}
.hero-slider-two__video {
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero-slider-two__video__text {
  margin: 0px;
  font-weight: 500;
  color: var(--findox-white, #ffffff);
  text-transform: uppercase;
}
.hero-slider-two .video-btn:hover:hover {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.hero-slider-two .video-btn:hover:hover::after {
  border-color: var(--findox-primary, #f5c835);
}
.hero-slider-two__shape-1 {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 200px;
  left: 64px;
  z-index: 12;
  opacity: 0;
  animation: moveX2 2s linear infinite;
}
@media (max-width: 1799px) {
  .hero-slider-two__shape-1 {
    top: 100px;
    left: 10px;
  }
}
@media (max-width: 1599px) {
  .hero-slider-two__shape-1 {
    display: none !important;
  }
}
.hero-slider-two__shape-2 {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 38%;
  bottom: 94px;
  z-index: 12;
  opacity: 0;
  animation: zoomIn2 2s infinite alternate;
}
@media (max-width: 1399px) {
  .hero-slider-two__shape-2 {
    left: 50%;
    bottom: 80px;
  }
}
@media (max-width: 1199px) {
  .hero-slider-two__shape-2 {
    left: 60%;
  }
}
@media (max-width: 991px) {
  .hero-slider-two__shape-2 {
    left: 70%;
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .hero-slider-two__shape-2 {
    display: none !important;
  }
}
.hero-slider-two .active .slider--el-1 {
  z-index: 10;
}
.hero-slider-two .active .slider--el-1 .slider--el-bg {
  transform: scale(0.834);
}
.hero-slider-two .active .slider--el-1 .slider--el-content {
  opacity: 1;
  transition: opacity var(--RTDELAY) calc(var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--el-1 .part {
  transform: translateZ(0);
  opacity: 1;
}
.hero-slider-two .active .slider--el-2 {
  z-index: 10;
}
.hero-slider-two .active .slider--el-2 .slider--el-bg {
  transform: scale(0.834);
}
.hero-slider-two .active .slider--el-2 .slider--el-content {
  opacity: 1;
  transition: opacity var(--RTDELAY) calc(var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--el-2 .part {
  transform: translateZ(0);
  opacity: 1;
}
.hero-slider-two .active .slider--el-3 {
  z-index: 10;
}
.hero-slider-two .active .slider--el-3 .slider--el-bg {
  transform: scale(0.834);
}
.hero-slider-two .active .slider--el-3 .slider--el-content {
  opacity: 1;
  transition: opacity var(--RTDELAY) calc(var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--el-3 .part {
  transform: translateZ(0);
  opacity: 1;
}
.hero-slider-two .active .slider--el-4 {
  z-index: 10;
}
.hero-slider-two .active .slider--el-4 .slider--el-bg {
  transform: scale(0.834);
}
.hero-slider-two .active .slider--el-4 .slider--el-content {
  opacity: 1;
  transition: opacity var(--RTDELAY) calc(var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--el-4 .part {
  transform: translateZ(0);
  opacity: 1;
}
.hero-slider-two .active .slider--control.left .page4-left {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.right .page2-right {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.left .page1-left {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.right .page3-right {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.left .page2-left {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.right .page4-right {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.left .page3-left {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .slider--control.right .page1-right {
  z-index: 5000;
  transform: scale(1);
  transition: transform 0s calc(var(--RTDELAY) + var(--RT) + var(--RTDELAY));
}
.hero-slider-two .active .hero-slider-two__content,
.hero-slider-two .active .hero-slider-two__tagline,
.hero-slider-two .active .hero-slider-two__title,
.hero-slider-two .active .hero-slider-two__description,
.hero-slider-two .active .hero-slider-two__button {
  opacity: 1;
  transform: translateY(0px);
}
.hero-slider-two .active .hero-slider-two__shape-1,
.hero-slider-two .active .hero-slider-two__shape-2 {
  opacity: 1;
  transition: opacity 500ms ease 500ms;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.about-one .container {
  position: relative;
  z-index: 1;
}
.about-one__image {
  position: relative;
}
.about-one__image__one {
  display: inline-block;
  position: relative;
}
.about-one__image__one__img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  border-radius: 0px 0px 0px 100px;
}
.about-one__image__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 31px;
  right: -43px;
  animation: zump 2s linear infinite;
}
@media (max-width: 575px) {
  .about-one__image__shape-1 {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__image__shape-1 {
    display: none;
  }
}
.about-one__image__two {
  display: table;
  position: relative;
  z-index: 1;
  margin: -148px 15px 0px auto;
  margin-top: -148px;
  border-top: 10px solid var(--findox-white, #ffffff);
  border-left: 10px solid var(--findox-white, #ffffff);
}
@media (max-width: 767px) {
  .about-one__image__two {
    margin-right: 0px;
  }
}
@media (max-width: 500px) {
  .about-one__image__two {
    margin: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-one__image__two {
    margin-top: 40px;
  }
}
.about-one__image__two__img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
.about-one__image__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: -84px;
  bottom: 6px;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 500px) {
  .about-one__image__shape-2 {
    display: none;
  }
}
.about-one__experience {
  position: relative;
  position: absolute;
  top: -104px;
  right: 0px;
  z-index: 2;
  text-align: right;
}
.about-one__experience__year {
  display: table;
  position: relative;
  z-index: 1;
  margin: 0px 0px 0px auto;
  padding: 38px 22.5px 26px;
  font-size: 40px;
  color: var(--findox-black2, #222222);
  text-align: center;
  font-weight: 700;
  line-height: 1;
  border-radius: 100px 100px 0px 0px;
  background-color: var(--findox-primary, #f5c835);
}
.about-one__experience__year::after {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  border: 1px dashed var(--findox-base, #006654);
}
.about-one__experience__title {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0px;
  padding: 5.5px 15px;
  font-size: 18px;
  color: var(--findox-white, #ffffff);
  line-height: 1.388;
  font-weight: 700;
  text-transform: capitalize;
  background-color: var(--findox-base, #006654);
  border-left: 10px solid var(--findox-white, #ffffff);
  border-bottom: 10px solid var(--findox-white, #ffffff);
}
.about-one__content {
  margin-top: 1px;
}
@media (max-width: 991px) {
  .about-one__content {
    margin-top: 0px;
  }
}
.about-one .sec-title {
  margin-bottom: 7px;
}
.about-one__text {
  margin-bottom: 27px;
}
.about-one .tab-buttons {
  margin: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.about-one .tab-buttons .tab-btn {
  position: relative;
  padding: 10px 30px;
  cursor: pointer;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.562;
  color: var(--findox-black3, #333333);
  text-transform: capitalize;
  border-radius: 50px 0px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.about-one .tab-buttons .tab-btn::after {
  content: "";
  width: 56.49px;
  height: 25.067px;
  position: absolute;
  right: -9px;
  bottom: -7px;
  z-index: -1;
  opacity: 0;
  transform: rotate(129.56deg);
  border-radius: inherit;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-one .tab-buttons .tab-btn:hover, .about-one .tab-buttons .tab-btn.active-btn {
  color: var(--findox-black4, #131111);
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.about-one .tab-buttons .tab-btn.active-btn::after {
  opacity: 1;
}
.about-one .tabs-content {
  display: block;
  margin-top: 32px;
  position: relative;
}
.about-one .tabs-content__inner {
  display: grid;
  align-items: center;
  grid-gap: 50px 35px;
  grid-template-columns: 1fr 231px;
  position: relative;
  z-index: 1;
  padding: 15px 15px 15px 31px;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 767px) {
  .about-one .tabs-content__inner {
    padding: 39px 20px 20px 20px;
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-one .tabs-content__inner {
    padding: 39px 20px 20px 20px;
    grid-template-columns: 1fr;
  }
}
.about-one .tabs-content__inner::before, .about-one .tabs-content__inner::after {
  content: "";
  width: 40px;
  height: 50%;
  position: absolute;
  left: 0px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-one .tabs-content__inner::before, .about-one .tabs-content__inner::after {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-one .tabs-content__inner::before, .about-one .tabs-content__inner::after {
    display: none;
  }
}
.about-one .tabs-content__inner::before {
  top: 0px;
  background-color: var(--findox-base, #006654);
}
.about-one .tabs-content__inner::after {
  bottom: 0px;
  background-color: var(--findox-primary, #f5c835);
}
.about-one .tabs-content__list {
  margin: 0px;
  position: relative;
}
.about-one .tabs-content__list::before {
  content: "";
  width: 34px;
  height: calc(100% + 38px);
  position: absolute;
  top: 50%;
  left: -9px;
  border-radius: 50px;
  transform: translateY(-50%);
  background-color: var(--findox-white, #ffffff);
}
.about-one .tabs-content__list li + li {
  margin-top: 10px;
}
.about-one .tabs-content__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
  color: var(--findox-black3, #333333);
  font-weight: 400;
  transition: all 500ms ease;
}
.about-one .tabs-content__list li a {
  color: inherit;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.about-one .tabs-content__list li:hover a {
  color: var(--findox-primary, #f5c835);
  text-decoration: underline;
}
.about-one .tabs-content__list__icon {
  display: inline-flex;
  position: relative;
  top: 3px;
  z-index: 1;
}
.about-one .tabs-content__list__icon::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: calc(50% + 1px);
  right: -14px;
  opacity: 0;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 8.5px 0 8.5px 9px;
  border-color: transparent transparent transparent var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-one .tabs-content__list li:hover .tabs-content__list__icon::after {
  opacity: 1;
}
.about-one .tabs-content__list svg {
  width: 19px;
  height: 17px;
  flex-shrink: 0;
  transition: all 500ms ease;
}
.about-one .tabs-content__list svg path:first-child {
  fill: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-one .tabs-content__list svg path:not(:first-child) {
  fill: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.about-one .tabs-content__list li:hover svg path:first-child {
  fill: var(--findox-primary, #f5c835);
}
.about-one .tabs-content__list li:hover svg path:not(:first-child) {
  fill: var(--findox-base, #006654);
}
.about-one .tabs-content__image img {
  max-width: 100%;
  height: auto;
}
.about-one .tabs-content .tab {
  display: none;
  opacity: 0;
  position: relative;
  transform: translateY(60px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.about-one .tabs-content .tab.active-tab {
  display: block;
  opacity: 1;
  transform: translateY(0px);
}
.about-one__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 4.5%;
  right: 86px;
  bottom: 90px;
  animation: rotate 7s linear infinite;
}
@media (max-width: 1599px) {
  .about-one__shape {
    right: 3%;
    bottom: 50px;
  }
}

.about-two {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.about-two .container {
  position: relative;
  z-index: 1;
}
.about-two__image {
  position: relative;
}
.about-two__image__inner {
  display: inline-block;
}
.about-two__image__inner img {
  max-width: 100%;
  height: auto;
  border-radius: 0 100px;
}
.about-two__image__text {
  margin: 0px;
  padding: 44.5px 23.5px;
  position: relative;
  position: absolute;
  top: 62px;
  left: -36px;
  z-index: 1;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black, #000000);
  text-transform: uppercase;
  writing-mode: sideways-lr;
  background-color: var(--findox-white, #ffffff);
  clip-path: polygon(50% 0%, 100% 11%, 100% 89%, 50% 100%, 0 89%, 0 11%);
}
@media (max-width: 991px) {
  .about-two__image__text {
    left: 20px;
  }
}
@media (max-width: 767px) {
  .about-two__image__text {
    top: 46px;
  }
}
@media (max-width: 575px) {
  .about-two__image__text {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__image__text {
    top: 10px;
    left: 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .about-two__image__text {
    left: 20px;
  }
}
.about-two__image__text::after {
  content: "";
  width: calc(100% - 12px);
  height: calc(100% - 10px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(50% 1.5%, 100% 11%, 100% 89%, 50% 98.5%, 0 89%, 0 11%);
}
.about-two__experience {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: -71px;
  bottom: 17px;
}
@media (max-width: 991px) {
  .about-two__experience {
    left: -15px;
    bottom: 0px;
  }
}
@media (max-width: 575px) {
  .about-two__experience {
    margin: auto;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-two__experience {
    left: -15px;
    bottom: -30px;
  }
}
@media (min-width: 1200px) and (max-width: 1299px) {
  .about-two__experience {
    left: -15px;
    bottom: 0px;
  }
}
.about-two__content {
  position: relative;
  z-index: 1;
}
.about-two__text {
  margin-bottom: 26px;
}
.about-two__item {
  margin-bottom: 28px;
  position: relative;
  padding: 0px 70px 0px 33px;
}
@media (max-width: 1199px) {
  .about-two__item {
    padding: 0px;
  }
}
.about-two__item__inner {
  display: flex;
  gap: 19px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 28.5px 50px 28.5px 30px;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 480px) {
  .about-two__item__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 30px;
  }
}
.about-two__item__inner::after {
  content: "";
  width: 30px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}
@media (max-width: 480px) {
  .about-two__item__inner::after {
    display: none;
  }
}
.about-two__item__icon {
  width: 70px;
  height: 70px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-two__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.about-two__item__inner:hover .about-two__item__icon {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.about-two__item__title {
  margin-bottom: 5px;
  font-size: 22px;
  line-height: 1.318;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
}
@media (max-width: 480px) {
  .about-two__item__title {
    margin-bottom: 15px;
  }
}
.about-two__item__text {
  margin: 0px;
}
.about-two__item__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: -253px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .about-two__item__image {
    display: none;
  }
}
.about-two__list {
  margin-bottom: 29px;
}
.about-two__list li + li {
  margin-top: 11px;
}
.about-two__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--findox-black3, #333333);
}
.about-two__list svg {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  top: 3px;
  transition: all 500ms ease;
}
.about-two__list svg path:first-child {
  fill: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-two__list svg path:not(:first-child) {
  fill: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.about-two__list li:hover svg path:first-child {
  fill: var(--findox-primary, #f5c835);
}
.about-two__list li:hover svg path:not(:first-child) {
  fill: var(--findox-base, #006654);
}
.about-two__button {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
  align-items: center;
}
.about-two__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 10px;
  bottom: 0px;
  animation: zoomIn4 2.5s infinite alternate;
}
@media (max-width: 1799px) {
  .about-two__shape {
    display: none;
  }
}

.about-three {
  background-color: var(--findox-white, #ffffff);
}
.about-three__image {
  position: relative;
}
.about-three__image__one {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.about-three__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}
.about-three__image__shape {
  position: absolute;
  top: 0px;
  left: -93px;
  bottom: 0px;
  margin: auto 0px;
  animation: zoomIn3 2.5s infinite alternate;
}
.about-three__content {
  display: grid;
  grid-gap: 200px 28px;
  align-items: end;
  grid-template-columns: auto 300px;
}
@media (max-width: 991px) {
  .about-three__content {
    display: block;
  }
}
.about-three__text {
  margin-bottom: 25px;
}
.about-three__item {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  padding: 14px 0px 14px 15px;
  border-top: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.about-three__item::before {
  content: "";
  width: 60px;
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.about-three__item:hover::before {
  background-color: var(--findox-primary, #f5c835);
}
.about-three__item__icon {
  display: inline-flex;
  font-size: 30px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.about-three__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.about-three__item:hover .about-three__item__icon {
  color: var(--findox-base, #006654);
}
.about-three__item__title {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--findox-black4, #131111);
  line-height: 1.375;
  text-transform: capitalize;
}
.about-three__content__image {
  display: inline-block;
  position: relative;
}
@media (max-width: 991px) {
  .about-three__content__image {
    margin-top: 160px;
  }
}
.about-three__content__image img {
  max-width: 100%;
  height: auto;
}
.about-three__content__img {
  border-radius: 50px;
}
.about-three__content__badge {
  position: absolute;
  top: -108px;
  left: 0px;
  right: 0px;
  z-index: 1;
  margin: 0px auto;
  animation: vibrant2 3s ease 0s infinite;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.client-carousel::before, .client-carousel::after {
  content: "";
  width: calc(50% - 180px);
  height: 2px;
  background-color: var(--findox-border-color, #dddddd);
  position: absolute;
  top: 12px;
  left: 0px;
}
.client-carousel::after {
  left: auto;
  right: 0px;
}
.client-carousel__content {
  text-align: center;
}
.client-carousel__title {
  margin: 0px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  text-transform: uppercase;
  line-height: 1.625;
}
.client-carousel__title span {
  color: var(--findox-primary, #f5c835);
}
.client-carousel__title__shape {
  max-width: 100%;
  height: auto;
  position: relative;
  top: -2px;
}
.client-carousel__carousel {
  padding-top: 93px;
  padding-bottom: 100px;
  position: relative;
}
@media (max-width: 991px) {
  .client-carousel__carousel {
    padding-top: 73px;
    padding-bottom: 80px;
  }
}
@media (max-width: 575px) {
  .client-carousel__carousel {
    padding-top: 53px;
    padding-bottom: 60px;
  }
}
.client-carousel__carousel .owl-stage {
  display: flex;
  align-items: center;
}
.client-carousel__item {
  position: relative;
  padding: 17.5px 42px;
  text-align: center;
}
@media (max-width: 575px) {
  .client-carousel__item {
    margin-left: auto;
    margin-right: auto;
    display: table;
  }
}
.client-carousel__item img {
  max-width: 100%;
  width: auto !important;
}
.client-carousel__image {
  margin: auto;
}
.client-carousel__hover {
  padding: 17.5px 42px;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid var(--findox-base, #006654);
  border-radius: 50px;
  transition: opacity 300ms ease;
}
.client-carousel__item:hover .client-carousel__hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  background-color: var(--findox-white, #ffffff);
}
.testimonials-one__wrapper {
  position: relative;
  padding: 73.5px 55px 73.5px 70px;
  overflow: hidden;
  border-radius: 30px;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 767px) {
  .testimonials-one__wrapper {
    padding: 50px 40px;
  }
}
@media (max-width: 540px) {
  .testimonials-one__wrapper {
    padding: 40px 30px;
  }
}
@media (max-width: 375px) {
  .testimonials-one__wrapper {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-one__wrapper {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.testimonials-one__carousel {
  position: relative;
  z-index: 1;
}
.testimonials-one__carousel.owl-carousel .owl-nav {
  margin: 0px;
  position: relative;
  position: absolute;
  right: 0px;
  bottom: 0px;
  display: inline-flex;
  align-items: center;
  gap: 72px;
}
@media (max-width: 767px) {
  .testimonials-one__carousel.owl-carousel .owl-nav {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.testimonials-one__carousel.owl-carousel .owl-nav::after {
  content: "";
  width: calc(100% - 55px);
  height: calc(100% - 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--findox-white, #ffffff);
}
.testimonials-one__carousel.owl-carousel .owl-nav button {
  width: 58px;
  height: 58px;
  position: relative;
  z-index: 1;
  color: var(--findox-base, #006654);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-white3, #ecf5f4);
}
.testimonials-one__carousel.owl-carousel .owl-nav button:hover {
  color: var(--findox-base, #006654);
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}
.testimonials-one__carousel .findox-owl__carousel__counter {
  display: flex;
  align-items: center;
  gap: 20px;
  position: absolute;
  right: 72px;
  bottom: 19px;
  z-index: 1;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--findox-black, #000000);
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .testimonials-one__carousel .findox-owl__carousel__counter {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.testimonials-one__carousel .findox-owl__carousel__counter__current {
  color: var(--findox-primary, #f5c835);
}
.testimonials-one__carousel .findox-owl__carousel__counter__total {
  position: relative;
}
.testimonials-one__carousel .findox-owl__carousel__counter__total::before {
  content: "/";
  position: absolute;
  top: -1px;
  left: -14px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 18px;
  color: var(--findox-black, #000000);
  font-weight: 700;
  line-height: 1;
}
.testimonials-one__item {
  display: grid;
  grid-gap: 40px 77px;
  align-items: start;
  grid-template-columns: 333px auto;
}
@media (max-width: 1199px) {
  .testimonials-one__item {
    grid-column-gap: 60px;
  }
}
@media (max-width: 991px) {
  .testimonials-one__item {
    grid-template-columns: 1fr;
  }
}
.testimonials-one__item__image {
  width: 333px;
  height: 333px;
  position: relative;
  padding: 10px;
  border-radius: 50%;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 440px) {
  .testimonials-one__item__image {
    width: 290px;
    height: 290px;
  }
}
@media (max-width: 390px) {
  .testimonials-one__item__image {
    width: 270px;
    height: 270px;
  }
}
@media (max-width: 360px) {
  .testimonials-one__item__image {
    width: 230px;
    height: 230px;
  }
}
.testimonials-one__item__image::before, .testimonials-one__item__image::after {
  content: "";
  width: 3px;
  height: 50%;
  position: absolute;
  right: -38.5px;
  border-radius: 100px;
}
@media (max-width: 1199px) {
  .testimonials-one__item__image::before, .testimonials-one__item__image::after {
    right: -30px;
  }
}
@media (max-width: 991px) {
  .testimonials-one__item__image::before, .testimonials-one__item__image::after {
    display: none;
  }
}
.testimonials-one__item__image::before {
  top: 0px;
  background-color: var(--findox-base, #006654);
}
.testimonials-one__item__image::after {
  bottom: 0px;
  background-color: var(--findox-primary, #f5c835);
}
.testimonials-one__item__image img {
  width: 100% !important;
  height: 100%;
  border-radius: inherit;
}
.testimonials-one__item .findox-ratings {
  padding: 13px 25px;
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 100px;
  background-color: var(--findox-white3, #ecf5f4);
  border: 1px solid var(--findox-primary, #f5c835);
}
.testimonials-one__item .findox-ratings__icon {
  font-size: 18px;
  color: var(--findox-primary, #f5c835);
}
.testimonials-one__item__icon {
  width: 67px;
  height: 66px;
}
.testimonials-one__item__icon path:nth-child(1) {
  fill: var(--findox-primary, #f5c835);
}
.testimonials-one__item__icon path:nth-child(2) {
  stroke: #2f5ce9;
}
.testimonials-one__item__icon path:nth-child(3) {
  fill: var(--findox-base, #006654);
}
.testimonials-one__item__icon path:nth-child(4) {
  stroke: #2f5ce9;
}
.testimonials-one__item__quote {
  margin: 22px 0px 26px;
  padding-bottom: 21px;
  font-size: 22px;
  font-weight: 500;
  color: var(--findox-black4, #131111);
  font-style: italic;
  line-height: 1.545;
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .testimonials-one__item__quote {
    font-size: 20px;
  }
}
@media (max-width: 390px) {
  .testimonials-one__item__quote {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-one__item__quote {
    font-size: 20px;
  }
}
.testimonials-one__item__quote span {
  color: var(--findox-primary, #f5c835);
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
@media (max-width: 767px) {
  .testimonials-one__item__identity {
    margin-bottom: 100px;
  }
}
.testimonials-one__item__name {
  margin-bottom: 5px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  line-height: 1.318;
  text-transform: capitalize;
}
.testimonials-one__item__designation {
  margin: 0px;
}
.testimonials-one__shape-1 {
  width: 227px;
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 0px;
  left: 0px;
  overflow: hidden;
  background-color: var(--findox-base, #006654);
  border-radius: 30px 300px 300px 30px;
  box-shadow: 0 0 6.3px 2px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  .testimonials-one__shape-1 {
    display: none;
  }
}
.testimonials-one__shape-1 img {
  max-width: 100%;
  height: auto;
  margin-left: -10px;
}
.testimonials-one__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  animation: zump 2s linear infinite;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  border-radius: 0px 100px 0px 0px;
  transition: all 500ms ease;
}
@media (max-width: 440px) {
  .package-card {
    padding: 40px 30px;
  }
}
@media (max-width: 375px) {
  .package-card {
    padding: 30px 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card {
    padding: 40px 30px;
  }
}
.package-card:hover {
  border-radius: 20px;
}
.package-card__shape {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  border-radius: inherit;
  background-color: var(--findox-white3, #ecf5f4);
}
.package-card__shape::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.package-card:hover .package-card__shape::after {
  height: 100%;
  top: 0px;
}
.package-card__top {
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
}
.package-card__title {
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding: 8px 27px 8px 25px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
  text-transform: uppercase;
  overflow: hidden;
  border-radius: 0px 100px 100px 0px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .package-card__title {
    font-size: 18px;
  }
}
@media (max-width: 375px) {
  .package-card__title {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card__title {
    font-size: 18px;
  }
}
.package-card__title::before {
  content: "";
  width: 3px;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: var(--findox-primary, #f5c835);
}
.package-card__title::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0ex;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.package-card:hover .package-card__title::after {
  width: 100%;
  left: 0px;
}
.package-card__price {
  display: flex;
  align-items: flex-end;
  margin-bottom: 19px;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .package-card__price {
    font-size: 40px;
  }
}
@media (max-width: 375px) {
  .package-card__price {
    font-size: 38px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card__price {
    font-size: 45px;
  }
}
.package-card__price span {
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--findox-text, #636363);
  line-height: 1.25;
  text-transform: capitalize;
  transition: all 500ms ease;
}
.package-card__text {
  margin-bottom: 20px;
  transition: all 500ms ease;
}
.package-card__list {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
.package-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  z-index: 1;
  padding: 6px 20px;
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .package-card__list li {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .package-card__list li {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.package-card__list li:hover {
  color: var(--findox-black4, #131111) !important;
}
.package-card__list li:not(:last-child) {
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.package-card__list li::after {
  content: "";
  width: 0%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.package-card__list li:hover::after {
  width: calc(100% + 2px);
  left: -1px;
}
.package-card__list__icon {
  flex-shrink: 0;
  position: relative;
  top: 1px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  transition: all 500ms ease;
}
.package-card__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.package-card__list li:hover .package-card__list__icon {
  color: var(--findox-black4, #131111);
}
.package-card:hover .package-card__list, .package-card:hover .package-card__list li {
  border-color: RGBA(var(--findox-border-color-rgb, 221, 221, 221), 0.3);
}
.package-card:hover .package-card__price, .package-card:hover .package-card__price span, .package-card:hover .package-card__text, .package-card:hover .package-card__list li, .package-card:hover .package-card__list__icon {
  color: var(--findox-white, #ffffff);
}
.package-card:hover .findox-btn::after {
  width: 100%;
  left: 0px;
}
.package-card:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.package-card:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.package-card:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}

.package-one {
  background-color: var(--findox-white, #ffffff);
}
.package-one--home3 {
  position: relative;
}
.package-one--home3::before {
  content: "";
  width: 100%;
  height: calc(100% + 95px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 991px) {
  .package-one--home3::before {
    height: calc(100% + 142px);
  }
}
.package-one--home3 .container {
  position: relative;
  z-index: 1;
}
.package-one--home3 .package-card__title {
  background-color: var(--findox-white3, #ecf5f4);
}
.package-one--home3 .package-card__shape {
  background-color: var(--findox-white, #ffffff);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  background-color: var(--findox-white, #ffffff);
}
.gallery-page__filter__list {
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}
.gallery-page__filter__list li {
  padding: 11px 30px;
}
.gallery-page__filter__list li.active::after {
  width: 100%;
  left: 0px;
}
.gallery-page__filter__list li.active .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
}
.gallery-page__card img {
  display: block;
  width: 100%;
}
.gallery-page__card__hover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
}
.gallery-page__card__hover::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  visibility: hidden;
  right: -100%;
  bottom: -100%;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.8);
  transition: all 500ms ease;
}
.gallery-page__card__hover .img-popup {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: scale(0.5);
  font-size: 22px;
  color: var(--findox-base, #006654);
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.gallery-page__card__hover .img-popup:hover {
  background-color: var(--findox-primary, #f5c835);
}
.gallery-page__card:hover .gallery-page__card__hover {
  visibility: visible;
}
.gallery-page__card:hover .gallery-page__card__hover::after {
  right: 0px;
  bottom: 0px;
  visibility: visible;
}
.gallery-page__card:hover .img-popup {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.why-choose .sec-title {
  margin-bottom: 11px;
}
.why-choose__text {
  margin-bottom: 25px;
}
.why-choose__item-box {
  padding-right: 70px;
}
@media (max-width: 767px) {
  .why-choose__item-box {
    padding-right: 0px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose__item-box {
    padding-right: 0px;
  }
}
.why-choose__item-single + .why-choose__item-single {
  margin-top: 27px;
}
.why-choose__item-single {
  position: relative;
}
.why-choose__item {
  display: flex;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 10px 15px 10px 10px;
  border-radius: 200px 0px 0px 200px;
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .why-choose__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
  }
}
@media (max-width: 575px) {
  .why-choose__item:hover {
    border-color: var(--findox-white3, #ecf5f4);
    background-color: var(--findox-white3, #ecf5f4);
  }
}
.why-choose__item::after {
  content: "";
  width: 66px;
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  right: -1px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--findox-white3, #ecf5f4);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 65% 50%);
}
@media (max-width: 575px) {
  .why-choose__item::after {
    display: none;
  }
}
.why-choose__item__icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .why-choose__item:hover .why-choose__item__icon-box {
    background-color: var(--findox-primary, #f5c835);
  }
}
.why-choose__item__icon {
  font-size: 34px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.why-choose__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 575px) {
  .why-choose__item:hover .why-choose__item__icon {
    color: var(--findox-base, #006654);
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }
}
.why-choose__item__content {
  width: calc(100% - 90px);
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px) {
  .why-choose__item__content {
    width: 100%;
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.why-choose__item__title {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose__item__title {
    font-size: 19px;
  }
}
.why-choose__item__title a {
  color: inherit;
}
.why-choose__item__title a:hover {
  color: var(--findox-base, #006654);
}
.why-choose__item__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.why-choose__item__title a:hover {
  background-size: 100% 1px;
}
.why-choose__item__text {
  margin: 0px;
}
.why-choose__item__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
}
.why-choose__item__link {
  width: 49px;
  height: 49px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.why-choose__item__link:hover {
  transform: rotate(45deg);
}
@media (max-width: 575px) {
  .why-choose__item__link:hover {
    color: var(--findox-base, #006654);
    background-color: var(--findox-primary, #f5c835);
  }
}
.why-choose__item__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.why-choose__item--hover {
  width: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
  opacity: 0;
  padding: 10px 10px 10px 15px;
  border-radius: 0px 200px 200px 0px;
  border-color: var(--findox-white3, #ecf5f4);
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 575px) {
  .why-choose__item--hover {
    display: none;
  }
}
.why-choose__item--hover::after {
  right: auto;
  left: -1px;
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(100% 0, 65% 52%, 100% 100%, 0 100%, 0 0);
}
.why-choose__item--hover .why-choose__item__content {
  gap: 20px;
  justify-content: flex-start;
}
.why-choose__item--hover .why-choose__item__btn {
  width: 65px;
  height: 65px;
  justify-content: flex-start;
}
.why-choose__item--hover .why-choose__item__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.why-choose__item--hover .why-choose__item__icon {
  color: var(--findox-base, #006654);
}
.why-choose__item-single:hover .why-choose__item {
  opacity: 0;
}
@media (max-width: 575px) {
  .why-choose__item-single:hover .why-choose__item {
    opacity: 1;
  }
}
.why-choose__item-single:hover .why-choose__item--hover {
  opacity: 1;
}
.why-choose__image__inner {
  display: inline-block;
  position: relative;
}
.why-choose__image img {
  max-width: 100%;
  height: auto;
}
.why-choose__image__img {
  position: relative;
  z-index: 1;
  -webkit-mask: url("../images/shapes/why-choose-image-shape-1-1.png");
  mask: url("../images/shapes/why-choose-image-shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.why-choose__image__shape {
  position: absolute;
  top: 1px;
  right: -80px;
  animation: zoomIn 2s infinite alternate;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact {
  background-color: var(--findox-white, #ffffff);
}
.funfact__item {
  position: relative;
  text-align: center;
  padding: 0px 30px 38px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .funfact__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.funfact__item__shape {
  width: 100%;
  height: calc(100% - 36px);
  position: relative;
  position: absolute;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
  border-radius: 0px 0px 500px 500px;
  background-color: var(--findox-white3, #ecf5f4);
}
.funfact__item__shape::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.funfact__item:hover .funfact__item__shape::after {
  height: 100%;
}
.funfact__item__content {
  position: relative;
  z-index: 1;
}
.funfact__item__icon-box {
  width: 74px;
  height: 74px;
  position: relative;
  margin: 0px auto 20px;
}
.funfact__item__icon-box::before, .funfact__item__icon-box::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 0px;
  border-style: solid;
  transition: all 500ms ease;
}
.funfact__item__icon-box::before {
  left: -36px;
  border-width: 0 0 36px 36px;
  border-color: transparent transparent var(--findox-primary, #f5c835) transparent;
}
.funfact__item__icon-box::after {
  right: -36px;
  border-width: 36px 0 0 36px;
  border-color: transparent transparent transparent var(--findox-primary, #f5c835);
}
.funfact__item:hover .funfact__item__icon-box::before {
  border-color: transparent transparent var(--findox-base, #006654) transparent;
}
.funfact__item:hover .funfact__item__icon-box::after {
  border-color: transparent transparent transparent var(--findox-base, #006654);
}
.funfact__item__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  font-size: 38px;
  color: var(--findox-white, #ffffff);
  overflow: hidden;
  background-color: var(--findox-base, #006654);
  border-radius: 0px 0px 50px 50px;
  transition: all 500ms ease;
}
.funfact__item__icon::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.funfact__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.funfact__item:hover .funfact__item__icon {
  color: var(--findox-base, #006654);
}
.funfact__item:hover .funfact__item__icon::after {
  height: 100%;
  top: 0px;
}
.funfact__item__count {
  margin-bottom: 8px;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
  color: var(--findox-black2, #222222);
  transition: all 500ms ease;
}
@media (min-width: 576px) and (max-width: 767px) {
  .funfact__item__count {
    font-size: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .funfact__item__count {
    font-size: 40px;
  }
}
.funfact__item__title {
  margin: 0px;
  transition: all 500ms ease;
}
.funfact__item:hover .funfact__item__count, .funfact__item:hover .funfact__item__title {
  color: var(--findox-white, #ffffff);
}
.funfact--two {
  position: relative;
}
.funfact--two .funfact__bg {
  width: 100%;
  height: calc(100% + 339px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 991px) {
  .funfact--two .funfact__bg {
    height: calc(100% + 300px);
  }
}
@media (max-width: 575px) {
  .funfact--two .funfact__bg {
    height: calc(100% + 250px);
  }
}
.funfact--two .container {
  position: relative;
  z-index: 1;
}
.funfact--two .funfact__item {
  display: grid;
  grid-gap: 18px;
  align-items: center;
  grid-template-columns: 74px auto;
  padding: 48px 35px 48px 0px;
}
.funfact--two .funfact__item__shape {
  height: 100%;
  border-radius: 15px;
  background-color: var(--findox-white, #ffffff);
}
.funfact--two .funfact__item__shape::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
}
.funfact--two .funfact__item:hover .funfact__item__shape::after {
  width: 100%;
  left: 0px;
}
.funfact--two .funfact__item__icon-box {
  margin: 0px;
  z-index: 1;
}
.funfact--two .funfact__item__icon-box::before {
  top: -36px;
  left: 0px;
  border-width: 36px 0 0 36px;
  border-color: transparent transparent transparent var(--findox-primary, #f5c835);
}
.funfact--two .funfact__item__icon-box::after {
  top: auto;
  right: auto;
  left: 0px;
  bottom: -36px;
  border-width: 36px 36px 0 0;
  border-color: var(--findox-primary, #f5c835) transparent transparent transparent;
}
.funfact--two .funfact__item:hover .funfact__item__icon-box::before {
  border-color: transparent transparent transparent var(--findox-white, #ffffff);
}
.funfact--two .funfact__item:hover .funfact__item__icon-box::after {
  border-color: var(--findox-white, #ffffff) transparent transparent transparent;
}
.funfact--two .funfact__item__icon {
  border-radius: 0px 50px 50px 0px;
}
.funfact--two .funfact__item__icon::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  left: auto;
  bottom: auto;
}
.funfact--two .funfact__item:hover .funfact__item__icon::after {
  width: 100%;
  left: 0px;
}
.funfact--two .funfact__item__content {
  text-align: left;
}
.funfact--two .funfact__item__count {
  margin-bottom: 5px;
  font-size: 45px;
}

/*--------------------------------------------------------------
# Slide Text
--------------------------------------------------------------*/
.slide-text {
  position: relative;
  margin: 94px 0px;
}
@media (max-width: 1599px) {
  .slide-text {
    margin: 64px 0px;
  }
}
@media (max-width: 1199px) {
  .slide-text {
    margin: 37px 0px;
  }
}
@media (max-width: 991px) {
  .slide-text {
    margin: 20px 0px;
  }
}
.slide-text--two {
  margin: 0px;
}
.slide-text--two .slide-text__two {
  position: static;
  transform: rotate(0deg);
}
.slide-text--two .slide-text__scroll--right {
  -webkit-animation: scrollRightToLeft 20s linear infinite;
  -moz-animation: scrollRightToLeft 20s linear infinite;
  animation: scrollRightToLeft 20s linear infinite;
}
.slide-text .container-fluid {
  padding: 0px;
}
.slide-text__one {
  padding: 32px 0px;
  overflow: hidden;
  transform: skewY(-7.412deg);
  background-color: var(--findox-base, #006654);
}
.slide-text__two {
  width: 100%;
  padding: 32px 0px;
  overflow: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  transform: skewY(7.412deg);
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 991px) {
  .slide-text__two {
    position: relative;
    transform: skewY(-7.412deg);
  }
}
.slide-text__scroll {
  width: -webkit-calc((420px * 16) + (30px * 16));
  width: -moz-calc((420px * 16) + (30px * 16));
  min-width: 100%;
  height: 100%;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0px;
  font-size: 35px;
  font-weight: 700;
  color: var(--findox-white, #ffffff);
  line-height: 1.192;
  text-transform: uppercase;
  -webkit-animation: scrollRightToLeft 20s linear infinite;
  -moz-animation: scrollRightToLeft 20s linear infinite;
  animation: scrollRightToLeft 20s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.slide-text__scroll:hover {
  animation-play-state: paused;
}
.slide-text__scroll img {
  max-width: 100%;
  height: auto;
  flex-shrink: 0;
}
.slide-text__scroll span {
  display: inline-block;
  font-family: inherit;
}
.slide-text__scroll__outline {
  color: transparent;
  -webkit-text-stroke: 1px var(--findox-white, #ffffff);
}
.slide-text__scroll--right {
  -webkit-animation: scrollLeftToRight 20s linear infinite;
  -moz-animation: scrollLeftToRight 20s linear infinite;
  animation: scrollLeftToRight 20s linear infinite;
}
.slide-text__scroll--right span {
  color: var(--findox-base, #006654);
}
.slide-text__scroll--right .slide-text__scroll__outline {
  color: transparent;
  -webkit-text-stroke-color: var(--findox-base, #006654);
}
@keyframes scrollRightToLeft {
  0% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
}
@keyframes scrollLeftToRight {
  0% {
    -webkit-transform: translateX(-webkit-calc(-250px * 7));
    -moz-transform: translateX(-moz-calc(-250px * 7));
    transform: translateX(-1750px);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-accordion {
  position: relative;
  z-index: 1;
  counter-reset: FAQ;
}
.faq-accordion .accordion {
  border-radius: 10px;
  background-color: var(--findox-white3, #ecf5f4);
}
.faq-accordion .accordion + .accordion {
  margin-top: 30px;
}
.faq-accordion .accordion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  padding: 10px 23px 10px 10px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 10px;
  transition: all 500ms ease;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-title {
    gap: 15px;
  }
}
.faq-accordion .accordion-title h4 {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
  margin: 0px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: capitalize;
  transition: all 500ms ease;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-title h4 {
    gap: 25px;
  }
}
@media (max-width: 574px) {
  .faq-accordion .accordion-title h4 {
    font-size: 17px;
  }
}
@media (max-width: 390px) {
  .faq-accordion .accordion-title h4 {
    font-size: 16px;
  }
}
.faq-accordion .accordion-title__number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 10px;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-title__number {
    width: 40px;
    height: 40px;
  }
}
.faq-accordion .accordion-title__number::before {
  content: "0" counter(FAQ) ".";
  counter-increment: FAQ;
  font-size: 18px;
  color: var(--findox-black4, #131111);
  font-weight: 500;
  line-height: 1;
  transition: all 500ms ease;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-title__number::before {
    font-size: 14px;
  }
}
.faq-accordion .accordion-title__number::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  right: -11px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 10.5px 0 10.5px 11px;
  border-color: transparent transparent transparent var(--findox-base, #006654);
}
@media (max-width: 440px) {
  .faq-accordion .accordion-title__number::after {
    right: -8px;
    border-width: 8px 0 8px 8px;
  }
}
.faq-accordion .accordion-title__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  position: relative;
  transition: all 500ms ease;
}
.faq-accordion .accordion-title__icon::after, .faq-accordion .accordion-title__icon::before {
  content: "";
  width: 2px;
  height: 15px;
  position: absolute;
  background-color: var(--findox-primary, #f5c835);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-accordion .accordion-title__icon::after {
  width: 15px;
  height: 2px;
}
.faq-accordion .active .accordion-title {
  border-radius: 10px 10px 0px 0px;
  background-color: var(--findox-primary, #f5c835);
}
.faq-accordion .active .accordion-title__number {
  background-color: var(--findox-white, #ffffff);
}
.faq-accordion .active .accordion-title__icon::after, .faq-accordion .active .accordion-title__icon::before {
  opacity: 0;
  background-color: var(--findox-base, #006654);
}
.faq-accordion .active .accordion-title__icon::after {
  opacity: 1;
}
.faq-accordion .accordion-content .inner {
  display: grid;
  grid-template-columns: 62px auto;
  grid-gap: 15px;
  align-items: center;
  padding: 10px 23px 10px 10px;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-content .inner {
    padding: 15px 23px 15px 15px;
    grid-template-columns: auto;
  }
}
.faq-accordion .accordion-content img {
  width: 62px;
  height: 62px;
  object-fit: cover;
  border-radius: 5px;
}
@media (max-width: 440px) {
  .faq-accordion .accordion-content img {
    display: none;
  }
}
.faq-accordion .accordion-content p {
  margin: 0px;
}

.faq-one {
  position: relative;
}
.faq-one .container {
  position: relative;
  z-index: 1;
}
.faq-one__image {
  margin-left: -131px;
}
@media (max-width: 1599px) {
  .faq-one__image {
    margin-left: -100px;
  }
}
@media (max-width: 1399px) {
  .faq-one__image {
    margin-left: 0px;
  }
}
.faq-one__image img {
  border-radius: 30px;
}
@media (max-width: 991px) {
  .faq-one__image img {
    max-width: 100%;
    height: auto;
  }
}
.faq-one__content {
  position: relative;
  z-index: 1;
  padding: 17px 0px 17px 17px;
  border-radius: 30px;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 991px) {
  .faq-one__content {
    padding: 0px;
    background-color: transparent;
  }
}
.faq-one__content__inner {
  position: relative;
  z-index: 1;
  padding: 80px 68px;
  overflow: hidden;
  border-radius: inherit;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 767px) {
  .faq-one__content__inner {
    padding: 40px 30px;
  }
}
@media (max-width: 412px) {
  .faq-one__content__inner {
    padding: 30px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .faq-one__content__inner {
    padding: 40px 30px;
  }
}
.faq-one__content__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
}
.faq-one .sec-title {
  margin-bottom: 15px;
}
.faq-one__text {
  margin-bottom: 26px;
  color: var(--findox-white, #ffffff);
}
.faq-one .faq-accordion .accordion {
  background-color: var(--findox-white, #ffffff);
}
.faq-one__shape {
  width: 280px;
  height: 276px;
  display: inline-block;
  margin: auto;
  position: relative;
  position: absolute;
  top: 0px;
  right: 2.1%;
  bottom: 0px;
  animation: zoomIn 2s infinite alternate;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 223.000000 300.000000"><g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M1952 5977 c-959 -92 -1692 -831 -1692 -1706 l0 -131 517 0 518 0 23 147 c159 983 1651 1011 1760 33 35 -320 -49 -594 -242 -787 -187 -187 -378 -233 -971 -233 l-385 0 0 -710 0 -710 550 0 550 0 0 265 c1 360 -11 338 198 389 739 181 1203 623 1334 1271 149 735 -123 1480 -673 1846 -419 278 -897 383 -1487 326z"/> <path d="M1400 590 l0 -590 630 0 630 0 0 590 0 590 -630 0 -630 0 0 -590z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 223.000000 300.000000"><g transform="translate(0.000000,300.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M1952 5977 c-959 -92 -1692 -831 -1692 -1706 l0 -131 517 0 518 0 23 147 c159 983 1651 1011 1760 33 35 -320 -49 -594 -242 -787 -187 -187 -378 -233 -971 -233 l-385 0 0 -710 0 -710 550 0 550 0 0 265 c1 360 -11 338 198 389 739 181 1203 623 1334 1271 149 735 -123 1480 -673 1846 -419 278 -897 383 -1487 326z"/> <path d="M1400 590 l0 -590 630 0 630 0 0 590 0 590 -630 0 -630 0 0 -590z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1599px) {
  .faq-one__shape {
    display: none;
  }
}
.faq-one__shape::after {
  content: "";
  width: 100%;
  height: 74px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--findox-primary, #f5c835);
}
.faq-one__shape img {
  width: 100%;
  display: block;
}

.faq-one,
.faq-page {
  background-color: var(--findox-white, #ffffff);
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features-one {
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
.features-one__carousel {
  border-radius: 0px 0px 15px 15px;
  background-color: var(--findox-white, #ffffff);
  filter: drop-shadow(0 2px 9.6px rgba(0, 0, 0, 0.1));
}
.features-one__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding: 48px 30px 45px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-one__card {
    padding: 38px 25px 35px;
  }
}
@media (max-width: 440px) {
  .features-one__card {
    flex-direction: column;
    padding: 40px 30px 37px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-one__card {
    flex-direction: column;
  }
}
.features-one__card::after {
  content: "";
  width: calc(100% - 60px);
  height: 5px;
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 0px;
  margin: 0px auto;
  transform: scaleX(0);
  background-color: var(--findox-primary, #f5c835);
  clip-path: polygon(9% 0, 91% 0, 100% 100%, 0 100%);
  transition: all 400ms linear;
}
.features-one__card:hover::after {
  transform: scaleX(1);
}
.features-one__card__icon-box {
  width: 75px;
  height: 75px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  position: relative;
  top: 4px;
  border-radius: 10px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-one__card__icon-box {
    width: 60px;
    height: 60px;
  }
}
.features-one__card:hover .features-one__card__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.features-one__card__icon {
  font-size: 38px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-one__card__icon {
    font-size: 30px;
  }
}
.features-one__card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.features-one__card:hover .features-one__card__icon {
  color: var(--findox-base, #006654);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.features-one__card__title {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
@media (min-width: 768px) and (max-width: 991px) {
  .features-one__card__title {
    font-size: 20px;
  }
}
.features-one__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.features-one__card__title a:hover {
  background-size: 100% 1px;
}
.features-one__card__text {
  margin: 0px;
}
.features-one__card__border {
  width: 2px;
  height: calc(100% - 86px);
  position: relative;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .features-one__card__border {
    display: none;
  }
}
.features-one__card__border::before, .features-one__card__border::after {
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  left: 0px;
  border-radius: 50px;
  transition: all 500ms ease;
}
.features-one__card__border::before {
  top: 0px;
  background-color: var(--findox-border-color, #dddddd);
}
.features-one__card__border::after {
  bottom: 0px;
  background-color: var(--findox-base, #006654);
}
.features-one__card:hover .features-one__card__border::before {
  background-color: var(--findox-primary, #f5c835);
}
.features-one__card:hover .features-one__card__border::after {
  background-color: var(--findox-border-color, #dddddd);
}

.features-two {
  position: relative;
  z-index: 1;
  background-color: transparent;
}
.features-two__grid {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 991px) {
  .features-two__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .features-two__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.features-two__card {
  padding: 44px 35px 50px;
  position: relative;
  text-align: center;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 375px) {
  .features-two__card {
    padding: 34px 25px 40px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .features-two__card {
    padding: 32px 20px 35px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__card {
    padding: 32px 20px 35px;
  }
}
.features-two__card:not(:last-child) {
  border-right: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 575px) {
  .features-two__card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--findox-border-color, #dddddd);
  }
}
@media (max-width: 991px) {
  .features-two__card:nth-child(1) {
    border-bottom: 1px solid var(--findox-border-color, #dddddd);
  }
}
@media (max-width: 575px) {
  .features-two__card:nth-child(1) {
    border-right: none;
  }
}
@media (max-width: 991px) {
  .features-two__card:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--findox-border-color, #dddddd);
  }
}
.features-two__card__bg {
  width: 0%;
  height: calc(100% + 2px);
  position: relative;
  position: absolute;
  top: -1px;
  right: -1px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: 600ms;
}
.features-two__card__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.9);
}
.features-two__card:hover .features-two__card__bg {
  width: calc(100% + 2px);
}
.features-two__card__shape-1, .features-two__card__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  z-index: 1;
}
.features-two__card__shape-1 {
  left: 0px;
  bottom: 0px;
  animation: moveX2 2s linear infinite;
}
.features-two__card__shape-2 {
  top: 0px;
  right: 0px;
  animation: moveX 2s linear infinite;
}
.features-two__card__content {
  position: relative;
  z-index: 1;
}
.features-two__card__title {
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
@media (min-width: 576px) and (max-width: 767px) {
  .features-two__card__title {
    font-size: 18px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__card__title {
    font-size: 18px;
  }
}
.features-two__card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.features-two__card__title a:hover {
  background-size: 100% 1px;
}
.features-two__card__icon-box {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 24px;
  border-radius: 10px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.features-two__card:hover .features-two__card__icon-box {
  background-color: var(--findox-white, #ffffff);
}
.features-two__card__icon {
  font-size: 44px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.features-two__card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.features-two__card:hover .features-two__card__icon {
  color: var(--findox-primary, #f5c835);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.features-two__card__text {
  margin-bottom: 25px;
  transition: all 500ms ease;
}
.features-two__card:hover .features-two__card__title, .features-two__card:hover .features-two__card__text {
  color: var(--findox-white, #ffffff);
}
@media (min-width: 576px) and (max-width: 767px) {
  .features-two__card .findox-btn {
    padding-left: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-two__card .findox-btn {
    padding-left: 25px;
  }
}
.features-two__card .findox-btn::after {
  background-color: var(--findox-white, #ffffff);
}
.features-two__card .findox-btn:hover::before {
  background-color: var(--findox-primary, #f5c835);
}
.features-two__card .findox-btn:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.features-two__card:hover .findox-btn::before {
  background-color: var(--findox-primary, #f5c835);
}

.features-three {
  background-color: var(--findox-white, #ffffff);
}
.features-three__item {
  padding: 40px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 767px) {
  .features-three__item {
    padding: 30px;
  }
}
@media (max-width: 440px) {
  .features-three__item {
    padding: 25px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-three__item {
    padding: 30px;
  }
}
.features-three__bg {
  width: 0%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: 600ms;
}
.features-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.92);
}
.features-three__item:hover .features-three__bg {
  width: 100%;
}
.features-three__content {
  position: relative;
  z-index: 2;
}
.features-three__top {
  display: flex;
  align-items: center;
  gap: 30px 44px;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  padding: 18px 60px 18px 23.5px;
  border-radius: 10px 50px 50px 10px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .features-three__top {
    padding-right: 40px;
  }
}
@media (max-width: 575px) {
  .features-three__top {
    flex-direction: column;
    align-items: flex-start;
    padding: 0px;
    border-radius: 0px;
    background-color: transparent;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-three__top {
    padding-right: 40px;
  }
}
.features-three__top::before {
  content: "";
  width: 90px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0px;
  z-index: -1;
  transform: translateY(-50%);
  border-radius: 10px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .features-three__top::before {
    display: none;
  }
}
.features-three__item:hover .features-three__top {
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 575px) {
  .features-three__item:hover .features-three__top {
    background-color: transparent;
  }
}
.features-three__item:hover .features-three__top::before {
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 575px) {
  .features-three__item:hover .features-three__top::before {
    display: none;
  }
}
.features-three__icon {
  display: inline-flex;
  font-size: 44px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .features-three__icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: var(--findox-base, #006654);
  }
}
.features-three__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 575px) {
  .features-three__item:hover .features-three__icon {
    background-color: var(--findox-primary, #f5c835);
  }
}
.features-three__item:hover .features-three__icon {
  color: var(--findox-primary, #f5c835);
}
@media (max-width: 575px) {
  .features-three__item:hover .features-three__icon {
    color: var(--findox-base, #006654);
  }
}
.features-three__title {
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
@media (max-width: 390px) {
  .features-three__title {
    font-size: 20px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .features-three__title {
    font-size: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .features-three__title {
    font-size: 20px;
  }
}
.features-three__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.features-three__title a:hover {
  background-size: 100% 1px;
}
@media (max-width: 575px) {
  .features-three__item:hover .features-three__title {
    color: var(--findox-white, #ffffff);
  }
}
.features-three__text {
  margin-bottom: 24px;
  transition: all 500ms ease;
}
.features-three__item:hover .features-three__text {
  color: var(--findox-white, #ffffff);
}
.features-three__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 50px;
  bottom: -10px;
  z-index: 1;
  transition: all 500ms ease;
  animation: vibrant2 3s ease 0s infinite;
}
@media (max-width: 575px) {
  .features-three__shape {
    right: 30px;
  }
}
.features-three__shape--hover {
  opacity: 0;
}
.features-three__item:hover .features-three__shape {
  opacity: 0;
}
.features-three__item:hover .features-three__shape--hover {
  opacity: 1;
}

/*--------------------------------------------------------------
# Solution
--------------------------------------------------------------*/
.solution-one {
  position: relative;
  background-color: var(--findox-white3, #ecf5f4);
}
.solution-one::before {
  content: "";
  width: 100%;
  height: calc(100% + 332px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--findox-white3, #ecf5f4);
  -webkit-mask: url("../images/shapes/solution-bg-sgape-1-1.png");
  mask: url("../images/shapes/solution-bg-sgape-1-1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.solution-one .container {
  position: relative;
  z-index: 1;
}
.solution-one__content {
  padding-right: 40px;
}
@media (max-width: 1199px) {
  .solution-one__content {
    padding-right: 0px;
  }
}
.solution-one__text {
  margin-bottom: 20px;
}
.solution-one__inner {
  padding-right: 10px;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .solution-one__inner {
    padding-right: 0px;
  }
}
.solution-one__title {
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black, #000000);
  line-height: 1.318;
  text-transform: capitalize;
}
.solution-one__list {
  display: grid;
  grid-gap: 12px 16px;
  grid-template-columns: repeat(2, 1fr);
  padding: 28px 25px;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 575px) {
  .solution-one__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .solution-one__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.solution-one__list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--findox-black3, #333333);
}
.solution-one__list__icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: 2px;
  font-size: 10px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
}
.solution-one__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.solution-one__list a {
  color: inherit;
}
.solution-one__list a:hover {
  color: var(--findox-primary, #f5c835);
  text-decoration: underline;
}
.solution-one__bottom {
  display: flex;
  gap: 25px 28px;
  flex-wrap: wrap;
  align-items: center;
}
.solution-one__chat {
  display: flex;
  align-items: center;
  gap: 19px;
}
.solution-one__chat__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 22px;
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.solution-one__chat__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.solution-one__chat:hover .solution-one__chat__icon {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.solution-one__chat__title {
  margin-bottom: 3px;
  font-size: 18px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.solution-one__chat__text {
  margin: 0px;
  font-size: 16px;
  color: var(--findox-black3, #333333);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
}
.solution-one__image {
  position: relative;
  text-align: right;
}
@media (max-width: 991px) {
  .solution-one__image {
    text-align: left;
  }
}
.solution-one__image__one {
  display: inline-block;
}
.solution-one__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: 50px;
}
.solution-one__image__two {
  width: 248px;
  height: 248px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 50%;
  left: -50px;
  z-index: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 1199px) {
  .solution-one__image__two {
    display: none;
  }
}
.solution-one__image__two img {
  width: calc(100% - 43px);
  height: calc(100% - 43px);
  border-radius: inherit;
  object-fit: cover;
}
.solution-one__image__shape {
  width: calc(100% - 22px);
  height: calc(100% - 22px);
  position: relative;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  margin: auto;
  border-radius: inherit;
  border: 1px solid var(--findox-base, #006654);
  animation: rotate 6s linear infinite;
}
.solution-one__image__shape__circle {
  width: 11px;
  height: 11px;
  position: absolute;
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
}
.solution-one__image__shape__circle:nth-child(1) {
  left: -4px;
  bottom: 91px;
}
.solution-one__image__shape__circle:nth-child(2) {
  right: 24px;
  bottom: 31px;
}
.solution-one__image__shape__circle:nth-child(3) {
  top: -1px;
  right: 77px;
}

/*--------------------------------------------------------------
# Working Process
--------------------------------------------------------------*/
.working-process {
  counter-reset: stepNumber;
  background-color: var(--findox-white, #ffffff);
}
.working-process__inner {
  position: relative;
}
.working-process .row {
  position: relative;
  z-index: 1;
}
.working-process__card {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media (min-width: 1200px) {
  .working-process__card--two {
    flex-direction: column-reverse;
  }
}
.working-process__card__image {
  display: inline-block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.working-process__card__image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.working-process__card__overlay {
  width: 100%;
  height: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.6);
  transition: all 500ms ease;
}
.working-process__card:hover .working-process__card__overlay {
  height: 100%;
  top: 0px;
}
.working-process__card__btn {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--findox-primary, #f5c835);
  border-radius: 50%;
  opacity: 0;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.working-process__card__btn:hover {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.working-process__card__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.working-process__card:hover .working-process__card__btn {
  opacity: 1;
}
.working-process__card__step {
  display: inline-block;
  padding: 7px 28.5px;
  margin-bottom: 25px;
  font-size: 16px;
  font-weight: 500;
  color: var(--findox-white, #ffffff);
  border-radius: 10px;
  text-transform: uppercase;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.working-process__card__step::after {
  content: "0" counter(stepNumber);
  counter-increment: stepNumber;
  margin-left: 5px;
  font-size: inherit;
  color: inherit;
  font-weight: inherit;
  line-height: 1;
  transition: all 500ms ease;
}
.working-process__card:hover .working-process__card__step {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.working-process__card:hover .working-process__card__step::after {
  color: var(--findox-black4, #131111);
}
.working-process__card__title {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.272;
  text-transform: capitalize;
}
@media (min-width: 576px) and (max-width: 767px) {
  .working-process__card__title {
    font-size: 20px;
  }
}
.working-process__card__title a {
  color: inherit;
}
.working-process__card__title a:hover {
  color: var(--findox-base, #006654);
}
.working-process__card__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.working-process__card__title a:hover {
  background-size: 100% 1px;
}
.working-process__card__text {
  margin: 0px;
}
.working-process__shape {
  position: absolute;
  top: -21.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .working-process__shape {
    display: none;
  }
}

/*--------------------------------------------------------------
# Finance Growth
--------------------------------------------------------------*/
.finance-growth {
  position: relative;
  overflow: hidden;
}
.finance-growth__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.finance-growth__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.92);
}
.finance-growth__bg__shape {
  width: 100%;
  height: 64px;
  position: absolute;
  left: 0px;
  z-index: 1;
  background-repeat: repeat-x;
  background-color: transparent;
  background-blend-mode: initial;
  background-position: left top;
  animation: moveBackground 40s linear 0s infinite;
}
.finance-growth__bg__shape--1 {
  top: -35px;
}
.finance-growth__bg__shape--2 {
  bottom: -35px;
}
.finance-growth .container {
  position: relative;
  z-index: 1;
}
.finance-growth__top {
  margin-bottom: 38px;
}
.finance-growth .sec-title {
  margin: 0px;
}
.finance-growth__text {
  padding-left: 70px;
}
@media (max-width: 1199px) {
  .finance-growth__text {
    padding-left: 0px;
  }
}
.finance-growth__text__inner {
  margin: 0px;
  color: var(--findox-white, #ffffff);
}
.finance-growth__grid {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
@media (min-width: 768px) and (max-width: 991px) {
  .finance-growth__grid {
    padding: 5px;
    grid-gap: 10px;
  }
}
@media (max-width: 767px) {
  .finance-growth__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.finance-growth__card {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
}
@media (max-width: 425px) {
  .finance-growth__card {
    flex-direction: column;
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .finance-growth__card {
    flex-direction: column;
    text-align: center;
  }
}
.finance-growth__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.9);
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.finance-growth__card:hover::before {
  opacity: 1;
  transform: scale(1);
}
.finance-growth__card:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% + 20px);
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  background-color: var(--findox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .finance-growth__card:not(:last-child)::after {
    width: calc(100% + 20px);
    height: 1px;
    top: auto;
    right: auto;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%) translateY(0%);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .finance-growth__card:not(:last-child)::after {
    height: calc(100% + 10px);
    right: -5px;
  }
}
.finance-growth__card .skill-box {
  position: relative;
}
.finance-growth__card .skill-box__count {
  width: 102px;
  height: 102px;
  margin: 0px;
  position: relative;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
}
.finance-growth__card .skill-box__count .circle-progress {
  position: absolute;
  top: 0px;
  left: 0px;
}
.finance-growth__card .skill-box__funfact {
  margin: 0px;
  display: inline-flex;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-white, #ffffff);
  line-height: 1;
  transition: all 500ms ease;
}
.finance-growth__card__title {
  margin-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-white, #ffffff);
  text-transform: capitalize;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .finance-growth__card__title {
    margin-bottom: 10px;
    font-size: 20px;
  }
}
.finance-growth__card:hover .skill-box__funfact, .finance-growth__card:hover .finance-growth__card__title {
  color: var(--findox-black2, #222222);
}
.finance-growth__card__text {
  margin: 0px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.finance-growth__card:hover .finance-growth__card__text {
  color: var(--findox-black3, #333333);
}
.finance-growth__bottom {
  margin-top: 36px;
  text-align: center;
}
.finance-growth__bottom__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
  color: var(--findox-white, #ffffff);
  text-transform: capitalize;
}
.finance-growth__bottom__text a {
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--findox-primary, #f5c835);
  text-transform: uppercase;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.finance-growth__bottom__icon {
  display: inline-flex;
  margin-right: 10px;
  position: relative;
  top: 5px;
  font-size: 28px;
  color: var(--findox-primary, #f5c835);
}
.finance-growth__bottom__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/*--------------------------------------------------------------
# Book Appointment
--------------------------------------------------------------*/
.book-appointment {
  position: relative;
  background-color: var(--findox-black2, #222222);
}
.book-appointment__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.book-appointment__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.93);
}
.book-appointment .container {
  position: relative;
  z-index: 2;
}
.book-appointment__content {
  text-align: center;
}
.book-appointment .sec-title {
  margin-bottom: 11px;
}
.book-appointment__text {
  margin-bottom: 27px;
  color: var(--findox-white, #ffffff);
}
.book-appointment__button {
  display: flex;
  gap: 25px 30px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.book-appointment__btn-2::before {
  background-color: var(--findox-primary, #f5c835);
}
.book-appointment__btn-2::after {
  background-color: var(--findox-white, #ffffff);
}
.book-appointment__btn-2:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.book-appointment__shape-1 {
  width: 301px;
  height: 293px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  background-color: var(--findox-primary, #f5c835);
  -webkit-mask: url("../images/shapes/book-appointment-shape-1-1.png");
  mask: url("../images/shapes/book-appointment-shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 1299px) {
  .book-appointment__shape-1 {
    left: -50px;
  }
}
@media (max-width: 1199px) {
  .book-appointment__shape-1 {
    display: none;
  }
}
.book-appointment__shape-2 {
  width: 266px;
  height: 272px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  background-color: var(--findox-primary, #f5c835);
  -webkit-mask: url("../images/shapes/book-appointment-shape-1-2.png");
  mask: url("../images/shapes/book-appointment-shape-1-2.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 1299px) {
  .book-appointment__shape-2 {
    right: -50px;
  }
}
@media (max-width: 1199px) {
  .book-appointment__shape-2 {
    display: none;
  }
}

/*--------------------------------------------------------------
# Finance Statistic
--------------------------------------------------------------*/
.finance-statistic {
  position: relative;
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
.finance-statistic__bg {
  width: 47%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  margin: auto 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 1199px) {
  .finance-statistic__bg {
    width: 48%;
  }
}
@media (max-width: 991px) {
  .finance-statistic__bg {
    width: 100%;
    position: relative;
    padding-top: 500px;
  }
}
@media (max-width: 575px) {
  .finance-statistic__bg {
    padding-top: 550px;
  }
}
.finance-statistic__bg__content {
  width: 100%;
  max-width: 677px;
  display: flex;
  gap: 20px 43px;
  align-items: center;
  padding: 9px 35px 9px 9px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  border-radius: 50px 0px 0px 0px;
  background-color: var(--findox-primary, #f5c835);
}
@media (max-width: 575px) {
  .finance-statistic__bg__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .finance-statistic__bg__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 25px 20px 20px;
  }
}
.finance-statistic__bg__icon {
  width: 126px;
  height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  font-size: 72px;
  color: var(--findox-base, #006654);
  border-radius: inherit;
  background-color: var(--findox-white, #ffffff);
}
.finance-statistic__bg__icon::after {
  content: "";
  width: 0px;
  height: 0px;
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  border-style: solid;
  border-width: 23.5px 0 23.5px 24px;
  border-color: transparent transparent transparent var(--findox-base, #006654);
}
.finance-statistic__bg__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.finance-statistic__bg__title {
  margin: 0px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 600;
  line-height: 1.363;
  text-transform: capitalize;
}
.finance-statistic__bg__title a {
  color: inherit;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.finance-statistic__bg__title a:hover {
  color: var(--findox-base, #006654);
}
.finance-statistic__content {
  position: relative;
  z-index: 1;
}
.finance-statistic__text {
  margin-bottom: 20px;
}
.finance-statistic__chart {
  position: relative;
  width: 100%;
  height: 384px;
  max-height: 450px;
}
@media (max-width: 440px) {
  .finance-statistic__chart {
    height: 350px;
  }
}
.finance-statistic__image {
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0px;
  bottom: 0px;
  animation: moveX 2s linear infinite;
}
@media (max-width: 1799px) {
  .finance-statistic__image {
    display: none;
  }
}

/*--------------------------------------------------------------
# Service
--------------------------------------------------------------*/
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.service-card__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background-color: var(--findox-white3, #ecf5f4);
  -webkit-mask: url("../images/shapes/service-card-shape-1-1.png");
  mask: url("../images/shapes/service-card-shape-1-1.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.service-card__bg__main {
  width: 0%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: 600ms;
}
.service-card__bg__main::before {
  content: "";
  width: 95px;
  height: 68px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  opacity: 0;
  transform: translateX(100%);
  background-color: var(--findox-primary, #f5c835);
  -webkit-mask: url("../images/shapes/service-card-shape-1-2.png");
  mask: url("../images/shapes/service-card-shape-1-2.png");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media (max-width: 1199px) {
  .service-card__bg__main::before {
    display: none;
  }
}
.service-card__bg__main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.89);
}
.service-card:hover .service-card__bg__main {
  width: 100%;
}
.service-card:hover .service-card__bg__main::before {
  opacity: 1;
  transform: translateX(0%);
  transition: all 500ms ease 500ms;
}
.service-card__content {
  padding: 43.5px 38px 49.5px;
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 412px) {
  .service-card__content {
    padding: 30px 30px 49.5px;
  }
}
@media (max-width: 375px) {
  .service-card__content {
    padding: 30px 25px 49.5px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .service-card__content {
    padding: 30px 30px 49.5px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__content {
    padding: 30px 25px 49.5px;
  }
}
.service-card__tagline {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 19px;
}
.service-card__tagline svg {
  width: 23px;
  height: 23px;
  flex-shrink: 0;
}
.service-card__tagline svg rect {
  width: 12px;
  height: 12px;
  stroke: var(--findox-base, #006654);
  stroke-width: 3px;
  transition: all 500ms ease;
}
.service-card__tagline__text {
  margin: 0px;
  transition: all 500ms ease;
}
.service-card:hover .service-card__tagline svg rect {
  stroke: var(--findox-primary, #f5c835);
}
.service-card:hover .service-card__tagline__text {
  color: var(--findox-primary, #f5c835);
}
.service-card__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
@media (max-width: 375px) {
  .service-card__title {
    font-size: 21px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__title {
    font-size: 20px;
  }
}
.service-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card__title a:hover {
  background-size: 100% 1px;
}
.service-card__text {
  margin-bottom: 22px;
  transition: all 500ms ease;
}
.service-card__bottom {
  display: flex;
  align-items: center;
  gap: 68px;
  position: relative;
}
@media (max-width: 360px) {
  .service-card__bottom {
    gap: 40px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__bottom {
    gap: 43px;
  }
}
.service-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  font-size: 70px;
  color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.service-card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-card:hover .service-card__title, .service-card:hover .service-card__text, .service-card:hover .service-card__icon {
  color: var(--findox-white, #ffffff);
}
.service-card__number {
  position: relative;
  margin: 0px;
  writing-mode: sideways-lr;
}
.service-card__number::before {
  content: "0" counter(serviceNumber);
  counter-increment: serviceNumber;
  font-family: inherit;
  font-size: 40px;
  color: transparent;
  font-weight: 600;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.service-card__number::after {
  content: "";
  width: 2px;
  height: 45px;
  position: absolute;
  left: 50%;
  bottom: -68px;
  transform: translateX(-50%);
  border-radius: 50px;
  background-color: var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.service-card:hover .service-card__number::before {
  -webkit-text-stroke-color: var(--findox-primary, #f5c835);
}
.service-card:hover .service-card__number::after {
  background-color: var(--findox-primary, #f5c835);
}
.service-card__btn {
  width: 71px;
  height: 71px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--findox-white, #ffffff);
  position: absolute;
  right: 0px;
  bottom: 0px;
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (max-width: 375px) {
  .service-card__btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: 16px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .service-card__btn {
    width: 60px;
    height: 60px;
    font-size: 28px;
    bottom: 16px;
  }
}
.service-card__btn:hover {
  transform: rotate(45deg);
}
.service-card__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-card:hover .service-card__btn {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}

.service-card-two {
  display: grid;
  grid-gap: 0px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 767px) {
  .service-card-two {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service-card-two::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--findox-base, #006654);
  transition: all 800ms ease;
}
@media (max-width: 767px) {
  .service-card-two::after {
    transition-duration: 500ms;
  }
}
.service-card-two:hover::after {
  width: 100%;
  left: 0px;
}
.service-card-two__content {
  padding: 40px 30px 25px;
  position: relative;
  z-index: 3;
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .service-card-two__content {
    padding: 30px;
  }
}
.service-card-two__icon-box {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 114px;
  border-radius: 10px;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .service-card-two__icon-box {
    margin-bottom: 40px;
  }
}
.service-card-two:hover .service-card-two__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.service-card-two__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.service-card-two__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-card-two:hover .service-card-two__icon {
  color: var(--findox-base, #006654);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.service-card-two__number {
  position: relative;
  margin-bottom: 15px;
}
.service-card-two__number::before {
  content: "0" counter(serviceNumber) ".";
  counter-increment: serviceNumber;
  font-family: inherit;
  font-size: 22px;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.service-card-two:hover .service-card-two__number::before {
  -webkit-text-stroke-color: var(--findox-white, #ffffff);
}
.service-card-two__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
.service-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-card-two__title a:hover {
  background-size: 100% 1px;
}
.service-card-two__text {
  margin: 0px;
  transition: all 500ms ease;
}
.service-card-two:hover .service-card-two__title, .service-card-two:hover .service-card-two__text {
  color: var(--findox-white, #ffffff);
}
.service-card-two__btn {
  width: 51px;
  height: 51px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--findox-base, #006654);
  position: absolute;
  right: -25px;
  bottom: 29px;
  z-index: 1;
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
  border: 3px solid var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .service-card-two__btn {
    margin-top: 30px;
    position: static;
    border-color: var(--findox-base, #006654);
  }
  .service-card-two__btn:hover {
    border-color: var(--findox-white, #ffffff) !important;
  }
}
.service-card-two__btn:hover {
  transform: rotate(45deg);
}
.service-card-two__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 767px) {
  .service-card-two:hover .service-card-two__btn {
    border-color: var(--findox-white, #ffffff);
  }
}
.service-card-two__bg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 767px) {
  .service-card-two__bg {
    display: none;
  }
}
.service-card-two__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  position: absolute;
  top: 65px;
  left: 93px;
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 767px) {
  .service-card-two__shape {
    top: -30px;
    right: -60px;
    left: auto;
  }
}
.service-card-two:hover .service-card-two__shape {
  opacity: 0.5;
}

.services-one,
.services-two,
.services-three {
  counter-reset: serviceNumber;
  background-color: var(--findox-white3, #ecf5f4);
}

.services-one .service-card__bg {
  background-color: var(--findox-white, #ffffff);
}

.services-two {
  position: relative;
}
.services-two .container {
  position: relative;
  z-index: 1;
}
.services-two__top {
  margin-bottom: 38px;
}
.services-two .sec-title {
  margin: 0px;
}
@media (min-width: 768px) {
  .services-two__container {
    padding-right: 0;
    width: auto;
    min-width: auto;
    max-width: inherit;
    margin-left: calc((100% - 720px) / 2);
  }
}
@media (min-width: 992px) {
  .services-two__container {
    margin-left: calc((100% - 960px) / 2);
  }
}
@media (min-width: 1200px) {
  .services-two__container {
    margin-left: calc((100% - 1200px) / 2);
  }
}
.services-two__bottom {
  margin-top: 70px;
}
.services-two__bottom__content {
  display: flex;
  gap: 30px;
  align-items: center;
}
@media (max-width: 991px) {
  .services-two__bottom__content {
    flex-direction: column;
    text-align: center;
  }
}
.services-two__bottom__icon {
  width: 123px;
  height: 123px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 62px;
  color: var(--findox-primary, #f5c835);
  border-radius: 20px;
  background-color: var(--findox-white, #ffffff);
}
.services-two__bottom__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-two__bottom__icon::after {
  content: "";
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  border: 1px dashed var(--findox-base, #006654);
}
.services-two__bottom__title {
  margin-bottom: 11px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
}
.services-two__bottom__text {
  margin: 0px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
}
.services-two__bottom__text__icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -2px;
  margin-right: 5px;
  font-size: 11px;
  color: var(--findox-base, #006654);
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
}
.services-two__bottom__text__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-two__bottom__button {
  text-align: right;
}
@media (max-width: 991px) {
  .services-two__bottom__button {
    text-align: center;
  }
}
.services-two__shape-1, .services-two__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0px;
}
.services-two__shape-1 {
  top: 0px;
}
.services-two__shape-2 {
  bottom: 0px;
}
.services-two__shape-3 {
  width: 245px;
  height: 528px;
  position: relative;
  position: absolute;
  top: 122px;
  right: 0px;
  background: var(--findox-base, #006654);
  border-radius: 200px 0 0 0;
}
@media (max-width: 1799px) {
  .services-two__shape-3 {
    display: none;
  }
}
.services-two__shape-3::after {
  content: "";
  width: 195px;
  height: 468px;
  position: absolute;
  top: 50px;
  left: 50px;
  background: var(--findox-primary, #f5c835);
  border-radius: 150px 0 0 0;
}

.services-three__grid {
  display: grid;
  grid-gap: 40px 51px;
  align-items: center;
  grid-template-columns: auto 479px;
  padding: 50px;
  border-radius: 30px;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 1199px) {
  .services-three__grid {
    grid-template-columns: auto;
  }
}
@media (max-width: 767px) {
  .services-three__grid {
    padding: 30px;
  }
}
@media (max-width: 412px) {
  .services-three__grid {
    padding: 20px;
  }
}
.services-three__item + .services-three__item {
  margin-top: 30px;
}
.services-three__item {
  display: flex;
  gap: 30px 20px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 25px 10px 10px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: var(--findox-white3, #ecf5f4);
}
@media (max-width: 767px) {
  .services-three__item {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .services-three__item {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px;
    border-radius: 20px;
  }
}
@media (max-width: 412px) {
  .services-three__item {
    padding: 25px;
  }
}
.services-three__item::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.services-three__item:hover::before {
  width: 100%;
  left: 0px;
}
.services-three__item::after {
  content: "";
  width: 55px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  border-radius: 0px 500px 500px 0px;
}
@media (max-width: 767px) {
  .services-three__item::after {
    width: 50px;
  }
}
@media (max-width: 575px) {
  .services-three__item::after {
    display: none;
  }
}
.services-three__item__left {
  display: flex;
  gap: 25px;
  align-items: center;
}
@media (max-width: 575px) {
  .services-three__item__left {
    flex-direction: column;
    align-items: flex-start;
  }
}
.services-three__item__icon-box {
  width: 89px;
  height: 89px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.services-three__item:hover .services-three__item__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.services-three__item__icon {
  display: inline-flex;
  font-size: 40px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.services-three__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-three__item:hover .services-three__item__icon {
  color: var(--findox-base, #006654);
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.services-three__item__title {
  margin: 0px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.272;
  text-transform: capitalize;
}
.services-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.services-three__item__title a:hover {
  background-size: 100% 1px;
}
.services-three__item:hover .services-three__item__title {
  color: var(--findox-white, #ffffff);
}
.services-three__item__btn {
  width: 59px;
  height: 59px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 26px;
  color: var(--findox-primary, #f5c835);
  border-radius: 50%;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.services-three__item__btn:hover {
  transform: rotate(45deg);
}
.services-three__item__btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.services-three__item:hover .services-three__item__btn {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.services-three__item__number {
  margin: 0px;
  position: relative;
  position: absolute;
  right: 100px;
  bottom: -24px;
}
@media (max-width: 575px) {
  .services-three__item__number {
    right: 30px;
    bottom: 30px;
  }
}
@media (max-width: 412px) {
  .services-three__item__number {
    bottom: 25px;
  }
}
.services-three__item__number::before {
  content: "0" counter(serviceNumber);
  counter-increment: serviceNumber;
  font-family: inherit;
  font-size: 70px;
  color: transparent;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .services-three__item__number::before {
    font-size: 60px;
  }
}
@media (max-width: 412px) {
  .services-three__item__number::before {
    font-size: 55px;
  }
}
.services-three__item:hover .services-three__item__number::before {
  -webkit-text-stroke-color: RGBA(var(--findox-white-rgb, 255, 255, 255), 0.3);
}
@media (max-width: 1199px) {
  .services-three__image {
    text-align: center;
  }
}
.services-three__image img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}

.services-page {
  counter-reset: serviceNumber;
  background-color: var(--findox-white, #ffffff);
}
.services-page .service-card-two {
  background-color: var(--findox-white2, #f0f2f8);
}
@media (max-width: 1199px) {
  .services-page .service-card-two {
    grid-template-columns: repeat(1, 1fr);
  }
  .services-page .service-card-two::after {
    transition-duration: 500ms;
  }
  .services-page .service-card-two__content {
    padding: 30px;
  }
  .services-page .service-card-two__icon-box {
    margin-bottom: 40px;
  }
  .services-page .service-card-two__btn {
    margin-top: 30px;
    position: static;
    border-color: var(--findox-base, #006654);
  }
  .services-page .service-card-two__btn:hover {
    border-color: var(--findox-white, #ffffff) !important;
  }
  .services-page .service-card-two:hover .service-card-two__btn {
    border-color: var(--findox-white, #ffffff);
  }
  .services-page .service-card-two__bg {
    display: none;
  }
  .services-page .service-card-two__shape {
    top: -30px;
    right: -60px;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  background-color: var(--findox-white, #ffffff);
}
.service-details__image {
  height: 100%;
}
.service-details__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.service-details__pages {
  padding: 27px 30px 30px;
  background-color: var(--findox-white2, #f0f2f8);
}
@media (max-width: 412px) {
  .service-details__pages {
    padding: 20px 25px 25px;
  }
}
@media (max-width: 390px) {
  .service-details__pages {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.service-details__pages__title {
  margin-bottom: 20.02px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
  text-transform: capitalize;
}
.service-details__nav {
  margin: 0px;
}
.service-details__nav li + li {
  margin-top: 20px;
}
.service-details__nav li a {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 10.5px 15px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--findox-black, #000000);
  text-align: left;
  text-transform: capitalize;
  line-height: 1.333;
  border-radius: 100px;
  overflow: hidden;
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 412px) {
  .service-details__nav li a {
    gap: 15px;
  }
}
@media (max-width: 390px) {
  .service-details__nav li a {
    font-size: 16px;
  }
}
.service-details__nav li a::after {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.service-details__nav li .service-details__nav__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
  border-radius: 50%;
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .service-details__nav li .service-details__nav__icon {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }
}
.service-details__nav li .service-details__nav__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-details__nav li a:hover .service-details__nav__icon, .service-details__nav li.current a .service-details__nav__icon {
  color: var(--findox-base, #006654);
  background-color: var(--findox-primary, #f5c835);
}
.service-details__nav li a:hover, .service-details__nav li.current a {
  color: var(--findox-white, #ffffff);
}
.service-details__nav li a:hover::after, .service-details__nav li.current a::after {
  width: 100%;
  left: 0px;
}
.service-details__content {
  margin-top: 44px;
}
.service-details__title {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
}
.service-details__box--1 {
  margin-bottom: 43px;
}
.service-details__box--2 .service-details__text + .service-details__text {
  margin-top: 19px;
}
.service-details__text {
  margin: 0px;
}
.service-details__inner {
  margin-bottom: 43px;
}
.service-details__inner__content {
  padding-right: 36px;
}
@media (max-width: 991px) {
  .service-details__inner__content {
    padding-right: 82px;
  }
}
@media (max-width: 767px) {
  .service-details__inner__content {
    padding-right: 0px;
  }
}
.service-details__inner__list {
  margin-bottom: 35px;
}
.service-details__inner__list li + li {
  margin-top: 11px;
}
.service-details__inner__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--findox-black3, #333333);
}
.service-details__inner__list svg {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  top: 3px;
  transition: all 500ms ease;
}
.service-details__inner__list svg path:first-child {
  fill: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.service-details__inner__list svg path:not(:first-child) {
  fill: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.service-details__inner__list li:hover svg path:first-child {
  fill: var(--findox-primary, #f5c835);
}
.service-details__inner__list li:hover svg path:not(:first-child) {
  fill: var(--findox-base, #006654);
}
.service-details__inner__box {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  padding: 14px 0px 14px 15px;
  border-top: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.service-details__inner__box::before {
  content: "";
  width: 60px;
  height: calc(100% + 2px);
  position: absolute;
  top: 50%;
  left: -1px;
  z-index: -1;
  transform: translateY(-50%);
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.service-details__inner__box:hover::before {
  background-color: var(--findox-primary, #f5c835);
}
.service-details__inner__icon {
  display: inline-flex;
  font-size: 30px;
  color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.service-details__inner__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.service-details__inner__box:hover .service-details__inner__icon {
  color: var(--findox-base, #006654);
}
.service-details__inner__title {
  margin: 0px;
  font-size: 18px;
  font-weight: 700;
  color: var(--findox-black4, #131111);
  line-height: 1.375;
  text-transform: capitalize;
}
.service-details__inner__text {
  margin: 0px;
}
@media (min-width: 992px) {
  .service-details__inner__image {
    text-align: right;
  }
}
.service-details__inner__image img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Projects
--------------------------------------------------------------*/
.project-card {
  position: relative;
  overflow: hidden;
}
.project-card__image {
  min-height: 571px;
  position: relative;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.project-card__category-group {
  width: 100%;
  display: flex;
  gap: 15px 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding: 20px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.project-card__category {
  padding: 8px 15px;
  font-size: 16px;
  color: var(--findox-black4, #131111);
  font-weight: 600;
  line-height: 1.375;
  text-transform: uppercase;
  border-radius: 10px;
  background-color: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.project-card__category:last-child {
  background-color: var(--findox-white, #ffffff);
}
.project-card__category:hover {
  background-color: var(--findox-primary, #f5c835);
}
.project-card:hover .project-card__category:last-child {
  background-color: var(--findox-primary, #f5c835);
}
.project-card__content {
  width: 100%;
  padding: 0px 30px 53px;
  position: relative;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}
@media (max-width: 430px) {
  .project-card__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .project-card__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.project-card__content::after {
  content: "";
  width: 100%;
  height: calc(100% - 137px);
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: -1;
  opacity: 0;
  transform: translateY(100%);
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.project-card:hover .project-card__content::after {
  opacity: 1;
  transform: translateY(0%);
  transition-delay: 300ms;
}
.project-card__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  font-size: 38px;
  color: var(--findox-primary, #f5c835);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  border-radius: 100px 100px 0px 0px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.project-card:hover .project-card__icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 300ms;
}
.project-card__inner {
  position: relative;
  z-index: 1;
  padding: 26px 30px 23px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-90deg);
  transform-origin: 50% 50%;
  border-radius: 20px;
  background-color: var(--findox-primary, #f5c835);
  transition: transform 0.5s ease-in-out, opacity 0.5s, visibility 0.5s;
}
@media (max-width: 430px) {
  .project-card__inner {
    padding: 20px 20px 23px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card__inner {
    padding: 20px 20px 23px;
  }
}
@media (min-width: 1400px) and (max-width: 1599px) {
  .project-card__inner {
    padding: 20px 20px 23px;
  }
}
.project-card:hover .project-card__inner {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}
.project-card__title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
}
@media (max-width: 390px) {
  .project-card__title {
    font-size: 20px;
  }
}
.project-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.project-card__title a:hover {
  background-size: 100% 1px;
}
.project-card__text {
  margin-bottom: 16px;
  color: var(--findox-black5, #444444);
}
.project-card__btn {
  width: 49px;
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  font-size: 24px;
  color: var(--findox-primary, #f5c835);
  border-radius: 50%;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}

.project-card-two {
  position: relative;
  overflow: hidden;
}
.project-card-two__image {
  position: relative;
  overflow: hidden;
}
.project-card-two__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
  transition: all 600ms cubic-bezier(0, 0, 0.44, 1.18);
}
.project-card-two:hover .project-card-two__image img {
  transform: scale(1.05);
}
.project-card-two .img-popup {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1;
  opacity: 0;
  font-size: 21px;
  color: var(--findox-primary, #f5c835);
  border-radius: 50%;
  transform: translateX(100%);
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .project-card-two .img-popup {
    width: 45px;
    height: 45px;
    top: 20px;
    right: 20px;
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card-two .img-popup {
    width: 45px;
    height: 45px;
    top: 20px;
    right: 20px;
    font-size: 18px;
  }
}
.project-card-two .img-popup:hover {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.project-card-two .img-popup svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.project-card-two:hover .img-popup {
  opacity: 1;
  transform: translateX(0%);
  transition-delay: 100ms;
}
.project-card-two__content {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 0px;
  z-index: 1;
}
.project-card-two__icon {
  width: 76px;
  height: 73px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  font-size: 38px;
  color: var(--findox-base, #006654);
  border-bottom: 0px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  border-radius: 100px 100px 0px 0px;
  background-color: var(--findox-primary, #f5c835);
  border: 3px solid var(--findox-white, #ffffff);
  border-bottom: none;
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .project-card-two__icon {
    width: 66px;
    height: 63px;
    font-size: 32px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card-two__icon {
    width: 66px;
    height: 63px;
    font-size: 32px;
  }
}
.project-card-two:hover .project-card-two__icon {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 300ms;
}
.project-card-two__inner {
  position: relative;
  z-index: 1;
  padding: 25px 30px 23px;
  text-align: center;
  background-color: var(--findox-base, #006654);
  border-top: 3px solid var(--findox-white, #ffffff);
  opacity: 0;
  visibility: hidden;
  transform: rotateX(-90deg);
  transform-origin: 50% 50%;
  transition: transform 0.5s ease-in-out, opacity 0.5s, visibility 0.5s;
}
@media (max-width: 390px) {
  .project-card-two__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card-two__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.project-card-two:hover .project-card-two__inner {
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
}
.project-card-two__title {
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-white, #ffffff);
  text-transform: capitalize;
}
@media (max-width: 390px) {
  .project-card-two__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .project-card-two__title {
    font-size: 20px;
  }
}
.project-card-two__title a {
  color: inherit;
}
.project-card-two__title a:hover {
  color: var(--findox-primary, #f5c835);
}
.project-card-two__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.project-card-two__title a:hover {
  background-size: 100% 1px;
}
.project-card-two__text {
  margin: 0px;
  color: var(--findox-white, #ffffff);
}

.projects {
  background-color: var(--findox-white, #ffffff);
}
.projects__top {
  margin-bottom: 38px;
}
.projects .sec-title {
  margin: 0px;
}
@media (max-width: 1199px) {
  .projects .sec-title {
    text-align: center;
  }
}
@media (max-width: 1199px) {
  .projects .sec-title .sec-title__top {
    padding-left: 44px;
    justify-content: center;
    clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%);
  }
}
.projects__filter__list {
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1199px) {
  .projects__filter__list {
    justify-content: center;
  }
}
.projects__filter__list li {
  padding: 9.5px 30px;
  cursor: pointer;
  margin: -0.5px;
  position: relative;
  z-index: 1;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--findox-black, #000000);
  text-transform: capitalize;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.projects__filter__list li:hover, .projects__filter__list li.active {
  color: var(--findox-white, #ffffff);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-base, #006654);
}
.projects__bottom {
  position: relative;
  z-index: 1;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .projects__bottom {
    margin-top: 100px;
  }
}
@media (max-width: 575px) {
  .projects__bottom {
    margin-top: 80px;
  }
}
.projects__bottom__inner {
  padding: 50px 94px 52px;
  border-radius: 500px;
  background-color: var(--findox-base, #006654);
}
@media (max-width: 1199px) {
  .projects__bottom__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .projects__bottom__inner {
    border-radius: 50px;
  }
}
@media (max-width: 767px) {
  .projects__bottom__inner {
    padding-left: 50px;
    padding-right: 40px;
    border-radius: 40px;
  }
}
@media (max-width: 412px) {
  .projects__bottom__inner {
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 30px;
  }
}
@media (max-width: 375px) {
  .projects__bottom__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.projects__info {
  position: relative;
  padding-left: 60px;
}
@media (max-width: 991px) {
  .projects__info {
    padding-left: 0px;
    text-align: center;
  }
}
.projects__info::before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: var(--findox-primary, #f5c835);
  position: absolute;
  top: 50%;
  left: 0px;
  border-radius: 50px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .projects__info::before {
    display: none;
  }
}
.projects__info::after {
  content: "";
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 0 12px 19px;
  border-color: transparent transparent transparent var(--findox-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 6px;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .projects__info::after {
    display: none;
  }
}
.projects__info__title {
  margin-bottom: 11px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-white, #ffffff);
  line-height: 1.272;
}
@media (max-width: 430px) {
  .projects__info__title {
    font-size: 20px;
  }
}
.projects__info__list {
  margin: 0px;
}
.projects__info__list li {
  font-weight: 500;
  color: var(--findox-white, #ffffff);
}
.projects__info__list__icon {
  width: 21px;
  height: 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -1px;
  margin-right: 10px;
  font-size: 11px;
  color: var(--findox-base, #006654);
  border-radius: 50%;
  background-color: var(--findox-primary, #f5c835);
}
.projects__info__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.projects__button {
  text-align: center;
}
@media (min-width: 992px) {
  .projects__button {
    text-align: right;
  }
}
@media (max-width: 360px) {
  .projects .findox-btn {
    padding-left: 20px;
  }
}
.projects .findox-btn::after {
  background-color: var(--findox-white, #ffffff);
}
.projects .findox-btn:hover .findox-btn__text {
  color: var(--findox-black4, #131111);
}
.projects .findox-btn:hover .findox-btn__icon-box {
  background-color: var(--findox-base, #006654);
}
.projects .findox-btn:hover .findox-btn__icon {
  color: var(--findox-white, #ffffff);
}
.projects--two {
  position: relative;
}
.projects--two .projects__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.projects--two .container {
  position: relative;
  z-index: 1;
}
.projects--two .projects__bottom {
  margin-top: 30px;
}
.projects--two .projects__bottom__inner {
  padding: 83px 0px 79px;
  border-radius: 0px;
  background-color: transparent;
}
@media (max-width: 991px) {
  .projects--two .projects__bottom__inner {
    padding-bottom: 87px;
  }
}
@media (max-width: 767px) {
  .projects--two .projects__bottom__inner {
    padding: 76px 0px 80px;
  }
}
.projects--two .projects__info::before {
  background-color: var(--findox-base, #006654);
}
.projects--two .projects__info::after {
  border-color: transparent transparent transparent var(--findox-primary, #f5c835);
}
.projects--two .projects__info__title {
  color: var(--findox-black, #000000);
}
.projects--two .projects__info__list li {
  color: var(--findox-black3, #333333);
}
.projects--two .findox-btn::after {
  background-color: var(--findox-base, #006654);
}
.projects--two .findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}
.projects--two .findox-btn:hover .findox-btn__icon-box {
  background-color: var(--findox-primary, #f5c835);
}
.projects--two .findox-btn:hover .findox-btn__icon {
  color: var(--findox-base, #006654);
}

.projects-one {
  position: relative;
}
.projects-one__bg {
  width: 100%;
  height: 375px;
  position: relative;
  position: absolute;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 1199px) {
  .projects-one__bg {
    height: 700px;
  }
}
@media (max-width: 767px) {
  .projects-one__bg {
    height: 750px;
  }
}
@media (max-width: 430px) {
  .projects-one__bg {
    height: 800px;
  }
}
.projects-one__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: RGBA(var(--findox-base-rgb, 0, 102, 84), 0.9);
}
.projects-one .container {
  position: relative;
  z-index: 1;
}
.projects-one .projects__top {
  margin-bottom: 129px;
}
@media (max-width: 1199px) {
  .projects-one .projects__top {
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .projects-one__container {
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.projects-one .projects__filter__list li {
  color: var(--findox-white, #ffffff);
  background-color: transparent;
}
.projects-one .projects__filter__list li:hover,
.projects-one .projects__filter__list li.active {
  color: var(--findox-black4, #131111);
  border-color: var(--findox-primary, #f5c835);
  background-color: var(--findox-primary, #f5c835);
}

/*--------------------------------------------------------------
# Project Details
--------------------------------------------------------------*/
.project-details {
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 767px) {
  .project-details__content .container-fluid {
    padding: 0px;
  }
}
.project-details__image {
  margin-bottom: 43px;
  position: relative;
}
.project-details__image img {
  width: 100%;
  display: block;
}
.project-details__info-box {
  max-width: 909px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 15px 150px;
  position: relative;
  z-index: 1;
  margin: -68px auto 0px;
  padding: 50px;
  background-color: var(--findox-base, #006654);
  border: 10px solid var(--findox-white, #ffffff);
}
@media (max-width: 1199px) {
  .project-details__info-box {
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .project-details__info-box {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .project-details__info-box {
    margin-top: 35px;
    padding: 30px;
    border: none;
  }
}
@media (max-width: 480px) {
  .project-details__info-box {
    padding: 25px;
  }
}
.project-details__info {
  margin: 0px;
}
.project-details__info:first-child {
  position: relative;
}
.project-details__info:first-child::after {
  content: "";
  width: 2px;
  height: calc(100% + 28px);
  position: absolute;
  top: 50%;
  right: -75px;
  transform: translateY(-50%);
  background-color: var(--findox-white, #ffffff);
}
@media (max-width: 991px) {
  .project-details__info:first-child::after {
    display: none;
  }
}
.project-details__info li + li {
  margin-top: 15px;
}
.project-details__info li {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 22px;
  color: var(--findox-white, #ffffff);
  text-transform: capitalize;
  line-height: 1.318;
}
@media (max-width: 575px) {
  .project-details__info li {
    font-size: 18px;
  }
}
.project-details__info__title {
  position: relative;
  top: -1px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 145px;
}
@media (max-width: 991px) {
  .project-details__info__title {
    flex: 0 0 160px;
  }
}
@media (max-width: 575px) {
  .project-details__info__title {
    flex: 0 0 125px;
    gap: 12px;
  }
}
@media (max-width: 412px) {
  .project-details__info__title {
    flex: 0 0 90px;
  }
}
@media (max-width: 375px) {
  .project-details__info__title {
    flex: 0 0 auto;
    gap: 10px;
  }
}
.project-details__info__icon {
  display: inline-flex;
  flex-shrink: 0;
  position: relative;
  top: -3px;
  font-size: 20px;
  color: var(--findox-white, #ffffff);
}
.project-details__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 575px) {
  .project-details__info__icon {
    font-size: 18px;
  }
}
.project-details__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.318;
  color: var(--findox-black2, #222222);
}
.project-details__text {
  margin: 0px;
}
.project-details__inner {
  margin: 38px 0px 43px;
}
.project-details__list__text {
  margin-bottom: 21px;
}
.project-details__list__box {
  margin-bottom: 37px;
}
.project-details__list__box li + li {
  margin-top: 11px;
}
.project-details__list__box li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  color: var(--findox-black3, #333333);
}
.project-details__list__box svg {
  width: 20px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
  top: 3px;
  transition: all 500ms ease;
}
.project-details__list__box svg path:first-child {
  fill: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.project-details__list__box svg path:not(:first-child) {
  fill: var(--findox-primary, #f5c835);
  transition: all 500ms ease;
}
.project-details__list__box li:hover svg path:first-child {
  fill: var(--findox-primary, #f5c835);
}
.project-details__list__box li:hover svg path:not(:first-child) {
  fill: var(--findox-base, #006654);
}
.project-details__inner__image img {
  width: 100%;
  display: block;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}
.product__sidebar {
  position: relative;
}
.product__sidebar__item + .product__sidebar__item {
  margin-top: 30px;
}
.product__sidebar__item {
  padding: 24px 30px 30px;
  border-radius: 10px;
  background-color: var(--findox-white2, #f0f2f8);
}
.product__sidebar__title {
  margin-bottom: 27px;
  position: relative;
  font-size: 22px;
  color: var(--findox-black, #000000);
  font-weight: 700;
  line-height: 1.318;
  text-transform: capitalize;
}
.product__search-box {
  padding-top: 30px;
}
.product__search {
  position: relative;
}
.product__search input[type=search],
.product__search input[type=text] {
  padding-left: 20px;
  padding-right: 44px;
  outline: none;
  border: 0;
  width: 100%;
  height: 55px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  border-radius: 10px;
  background-color: var(--findox-white, #ffffff);
  transition: all 400ms ease;
}
.product__search input[type=search]:focus,
.product__search input[type=text]:focus {
  color: var(--findox-black, #000000);
}
.product__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--findox-white, #ffffff);
  border-radius: 50%;
  background-color: var(--findox-base, #006654);
  transition: all 400ms ease;
}
.product__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__search button[type=submit]:hover {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.product__price-ranger #slider-range {
  position: relative;
  margin: 0px;
  background: var(--findox-base, #006654);
  border: none;
  height: 4px;
  border-radius: 20px;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--findox-base, #006654);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--findox-base, #006654);
  border: 0;
  height: 15px;
  width: 15px !important;
  border-radius: 50%;
  margin-left: -3px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 24px 0 0 0px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger .ranger-min-max-block {
    margin-left: -10px;
  }
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  padding: 0;
  position: relative;
  display: inline-block;
  color: var(--findox-black, #000000);
  font-size: 16px;
  font-weight: 400;
  width: 50px;
  min-width: 50px;
  line-height: 1;
  border: none;
  outline: none;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--findox-black, #000000);
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  margin: 0;
  cursor: pointer;
  padding: 0 16px;
  height: 35px;
  background-color: var(--findox-white, #ffffff);
  float: right;
  text-align: center;
  border: none;
  color: var(--findox-black, #000000);
  font-size: 14px;
  font-weight: 500;
  line-height: 35px;
  text-transform: uppercase;
  border-radius: 5px;
  transition: all 500ms ease;
}
.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product__categories ul li + li {
  margin-top: 20px;
}
.product__categories ul li {
  position: relative;
}
.product__categories ul li a {
  position: relative;
  z-index: 1;
  padding: 13.5px 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  line-height: 1.25;
  text-transform: capitalize;
  color: var(--findox-text, #636363);
  font-weight: 500;
  border-radius: 100px;
  background-color: var(--findox-white, #ffffff);
  transition: all 500ms ease;
}
.product__categories ul li a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  background-color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.product__categories ul li a .product__categories__text {
  display: flex;
  align-items: center;
  gap: 9px;
}
.product__categories ul li a .product__categories__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--findox-text, #636363);
  transition: all 500ms ease;
}
.product__categories ul li a .product__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__categories ul li a:hover {
  color: var(--findox-white, #ffffff);
}
.product__categories ul li a:hover::after {
  left: 0;
  width: 100%;
}
.product__categories ul li a:hover .product__categories__icon {
  color: var(--findox-white, #ffffff);
}
.product__info-top {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-bottom: 40px;
  }
}
.product__showing-text {
  margin: 0;
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1.318;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 25px;
    font-size: 20px;
  }
}
@media (max-width: 430px) {
  .product__showing-text {
    font-size: 18px;
  }
}
.product__showing-sort {
  margin: 0;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  font-family: var(--findox-font, "DM Sans", sans-serif);
  position: relative;
  display: block;
  width: 100%;
  min-width: 210px !important;
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
}
@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    min-width: 141px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
  border-radius: 5px;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: transparent !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 45px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  color: var(--findox-text, #636363) !important;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 50px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
  text-align: left;
}
@media (max-width: 767px) {
  .product__showing-sort .bootstrap-select > .dropdown-toggle > .filter-option {
    text-align: left;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 17px;
  color: var(--findox-text, #636363);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--findox-border-color, #dddddd);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px 11px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  color: var(--findox-black2, #222222);
  background-color: var(--findox-white2, #f0f2f8);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  color: var(--findox-white, #ffffff);
  border-color: var(--findox-base, #006654);
  background-color: var(--findox-base, #006654);
}
.product__item {
  position: relative;
  border-radius: 10px;
  background-color: var(--findox-white, #ffffff);
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
.product__item:hover {
  border-color: var(--findox-base, #006654);
}
.product__item__image {
  padding: 20px 20px 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.product__item__image img {
  max-width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 800ms cubic-bezier(0, 0, 0.44, 1.18);
  transition: transform 800ms cubic-bezier(0, 0, 0.44, 1.18), -webkit-transform 800ms cubic-bezier(0, 0, 0.44, 1.18);
}
.product__item__btn-group {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
}
.product__item__btn-group a + a {
  margin-top: 10px;
}
.product__item__btn-group a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: var(--findox-white2, #f0f2f8);
  color: var(--findox-base, #006654);
  font-size: 14px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn-group a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product__item__btn-group a:hover {
  background-color: var(--findox-base, #006654);
  color: var(--findox-white, #ffffff);
}
.product__item__btn-group a:nth-child(1) {
  -webkit-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -moz-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -ms-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -o-transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}
.product__item__btn-group a:nth-child(2) {
  -webkit-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -moz-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -ms-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -o-transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}
.product__item__btn-group a:nth-child(3) {
  -webkit-transition: transform 750ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -moz-transition: transform 750ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -ms-transition: transform 750ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  -o-transition: transform 750ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transition: transform 750ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
  -moz-transform: translate3d(30px, 0, 0);
  -webkit-transform: translate3d(30px, 0, 0);
  -ms-transform: translate3d(30px, 0, 0);
  -o-transform: translate3d(30px, 0, 0);
}
.product__item:hover .product__item__image img {
  transform: scale(1.05);
}
.product__item:hover .product__item__btn-group a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
}
.product__item__content {
  padding: 30px;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .product__item__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.product__item__title {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
}
@media (min-width: 576px) and (max-width: 767px) {
  .product__item__title {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .product__item__title {
    font-size: 20px;
  }
}
.product__item__title:hover {
  color: var(--findox-base, #006654);
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__price {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  line-height: 1.222;
}
.product__item__price span:not(:last-child)::after {
  content: "-";
  margin-left: 5px;
  margin-right: 5px;
  font-size: 18px;
  color: var(--findox-text, #636363);
}
.product__item .findox-ratings {
  margin-bottom: 24px;
  justify-content: center;
}
.product__item .findox-btn {
  padding: 10px 25px;
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
}
.product__item .findox-btn::before {
  display: none;
}
.product__item .findox-btn::after {
  background-color: var(--findox-base, #006654);
}
.product__item .findox-btn__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  text-transform: capitalize;
}
.product__item .findox-btn:hover .findox-btn__text {
  color: var(--findox-white, #ffffff);
}

.product-page {
  background-color: var(--findox-white, #ffffff);
}
.product-page .post-pagination {
  justify-content: center;
}
.product-page .product__item__image img {
  width: auto !important;
  display: inline-block !important;
}
.product-page--sidebar .post-pagination {
  justify-content: flex-start;
}
@media (max-width: 991px) {
  .product-page--sidebar .post-pagination {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Shop Details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.product-details__product {
  display: flex;
  align-items: center;
  gap: 30px 22px;
}
@media (max-width: 991px) {
  .product-details__product {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-details__thumb-box {
  width: 120px;
}
@media (max-width: 991px) {
  .product-details__thumb-box {
    width: 100%;
  }
}
.product-details__thumb {
  --slick-gutter: 13px;
  width: 126px;
  position: relative;
  z-index: 1;
}
@media (max-width: 991px) {
  .product-details__thumb {
    width: 100%;
  }
}
.product-details__thumb .slick-list {
  clip-path: inset(0 calc(var(--slick-gutter) / 2) 0 calc(var(--slick-gutter) / 2));
  margin: 0;
  padding: 0;
}
.product-details__thumb .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .product-details__thumb .slick-slide {
    margin-left: calc(var(--slick-gutter) / 2);
    margin-right: calc(var(--slick-gutter) / 2);
  }
}
@media (min-width: 992px) {
  .product-details__thumb .slick-slide {
    margin-top: calc(var(--slick-gutter) / 2);
    margin-bottom: calc(var(--slick-gutter) / 2);
  }
}
.product-details__thumb__item {
  position: relative;
  cursor: pointer;
  z-index: 2;
  width: 113px;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--findox-border-color, #dddddd);
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details__thumb__item {
    width: 114px;
    height: 114px;
  }
}
@media (max-width: 991px) {
  .product-details__thumb__item {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 767px) {
  .product-details__thumb__item {
    width: 110px;
    height: 110px;
  }
}
@media (max-width: 575px) {
  .product-details__thumb__item {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 480px) {
  .product-details__thumb__item {
    width: 83px;
    height: 83px;
  }
}
@media (max-width: 430px) {
  .product-details__thumb__item {
    width: 105px;
    height: 105px;
  }
}
@media (max-width: 390px) {
  .product-details__thumb__item {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 360px) {
  .product-details__thumb__item {
    width: 83px;
    height: 83px;
  }
}
.product-details__thumb__item img {
  position: relative;
  cursor: pointer;
  max-width: 100%;
  height: auto;
  z-index: 1;
}
.product-details__thumb__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-70%);
  background-color: RGBA(var(--findox-black-rgb, 0, 0, 0), 0.6);
  transition: all 500ms ease;
  z-index: 1;
}
.product-details__thumb__hover .img-popup {
  display: inline-block;
  font-size: 27px;
  color: var(--findox-white, #ffffff);
}
.product-details__thumb__hover .img-popup:hover {
  color: var(--findox-base, #006654);
}
.product-details__thumb__hover .img-popup svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.product-details__thumb .slick-slide.slick-current .product-details__thumb__hover {
  opacity: 1;
  transform: translateY(0%);
}
.product-details__carousel {
  --slick-gutter: 10px;
  flex-grow: 1;
  border-radius: 10px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
@media (max-width: 991px) {
  .product-details__carousel {
    width: 100%;
  }
}
.product-details__carousel .slick-list {
  clip-path: inset(0 calc(var(--slick-gutter) / 2) 0 calc(var(--slick-gutter) / 2));
  margin: 0;
  padding: 0;
}
.product-details__carousel .slick-slide {
  margin-top: calc(var(--slick-gutter) / 2);
  margin-bottom: calc(var(--slick-gutter) / 2);
}
.product-details__image {
  padding: 13px 20px 47.5px;
}
.product-details__image__title {
  display: inline-block;
  padding: 7px 16px;
  font-size: 16px;
  color: var(--findox-white, #ffffff);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.25;
  border-radius: 5px;
  background-color: var(--findox-base, #006654);
}
.product-details__image img {
  max-width: 100%;
  height: auto;
}
.product-details__content {
  margin-top: 5px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin-top: 0px;
  }
}
.product-details__name {
  margin-bottom: 13px;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  line-height: 1.363;
}
.product-details__product-info {
  max-width: 471px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product-details__product-info {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .product-details__product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.product-details__price {
  margin: 0;
  font-size: 25px;
  color: var(--findox-base, #006654);
  font-weight: 700;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.product-details__review__text {
  font-size: 16px;
  color: var(--findox-base, #006654);
  font-weight: 500;
  text-transform: capitalize;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-details__review__text:hover {
  background-size: 100% 1px;
}
.product-details .findox-ratings {
  position: relative;
  top: -1px;
}
.product-details .findox-ratings__icon {
  font-size: 18px;
}
.product-details__excerpt {
  margin-bottom: 23px;
}
.product-details__excerpt__text {
  margin: 0px;
  font-weight: 500;
}
.product-details__color {
  margin-bottom: 34px;
}
.product-details__color__title {
  margin-bottom: 9px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 500;
}
.product-details__color__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.product-details__color__box {
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  border-radius: 0px;
  background-color: var(--bg-color);
  border: 2px solid var(--border-color);
}
.product-details__quantity {
  margin-bottom: 34px;
}
.product-details__quantity .quantity-box {
  border: 1px solid var(--findox-border-color, #dddddd);
  width: 191px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.product-details__quantity .quantity-box__input {
  border: none;
  outline: none;
  background-color: transparent;
  width: 71px;
  height: 100%;
  border-left: 1px solid var(--findox-border-color, #dddddd);
  border-right: 1px solid var(--findox-border-color, #dddddd);
  font-family: var(--findox-font, "DM Sans", sans-serif);
  padding: 0;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  color: var(--findox-black, #000000);
  line-height: 1;
  background-color: transparent;
  text-align: center;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box__btn {
  border: none;
  outline: none;
  background-color: transparent;
  padding: 0;
  width: 59px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--findox-black, #000000);
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box__btn:hover {
  color: var(--findox-base, #006654);
}
.product-details__button {
  margin-bottom: 34px;
}
.product-details__button .findox-btn {
  padding: 16px 30px;
  border-radius: 5px;
}
.product-details__button .findox-btn::before {
  display: none;
}
.product-details__socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.product-details__socials__title {
  margin: 0px;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 18px;
  color: var(--findox-text, #636363);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
}
.product-details .social-links a {
  border: none;
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
}
.product-details .social-links a:hover {
  background-color: var(--findox-base, #006654);
}
.product-details .social-links__icon {
  color: var(--findox-black2, #222222);
}
.product-details .social-links a:hover .social-links__icon {
  color: var(--findox-white, #ffffff);
}
.product-details__description-wrapper {
  margin-top: 42px;
}
.product-details__description {
  position: relative;
  padding: 46px 0px 37px;
  border-top: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.product-details__description__title {
  margin-bottom: 17px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
  line-height: 1.363;
}
.product-details__description__text {
  margin: 0px;
  font-weight: 500;
}
.product-details__list {
  max-width: 770px;
  margin-top: 11px;
  margin-bottom: 21px;
  --bs-gutter-x: 20px;
  --bs-gutter-y: 12px;
}
.product-details__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.625;
}
.product-details__list__icon {
  position: relative;
  top: 3px;
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--findox-white, #ffffff);
  background-color: var(--findox-base, #006654);
  border-radius: 50%;
  transition: all 500ms ease;
}
.product-details__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
li:hover .product-details__list__icon {
  color: var(--findox-black4, #131111);
  background-color: var(--findox-primary, #f5c835);
}
.product-details .comments-one__name {
  margin: 0;
}
.product-details__form__top {
  margin-bottom: 31px;
}
.product-details__form__title {
  margin-bottom: 20px !important;
}
.product-details__form__ratings {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 33px;
}
@media (max-width: 1599px) {
  .product-details__form__ratings {
    gap: 20px;
  }
}
.product-details__form__ratings__text {
  margin-bottom: 0;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.625;
}
.product-details__ratings {
  position: relative;
  top: -2px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}
.product-details__ratings__icon {
  display: inline-flex;
  font-size: 17px;
  color: var(--findox-base, #006654);
  transition: all 500ms ease;
}
.product-details__ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 24px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr {
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.cart-page__table thead tr th {
  padding: 0 30px 26px;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 22px;
  color: var(--findox-black2, #222222);
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border: 0 !important;
  box-shadow: none;
}
@media (max-width: 767px) {
  .cart-page__table thead tr th {
    font-size: 20px;
  }
}
.cart-page__table thead tr th:first-child {
  padding-left: 0;
}
.cart-page__table thead tr th:last-child {
  padding-right: 0;
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 19px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  text-transform: capitalize;
  line-height: normal;
  vertical-align: middle;
  border-top: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 0 !important;
  border-right: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
  padding: 28.5px 30px;
  letter-spacing: 0;
}
.cart-page__table tbody tr td.cart-page__table__total {
  text-align: center;
}
.cart-page__table tbody tr td .cart-page__table__remove {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--findox-black3, #333333);
  font-size: 19px;
  line-height: 1;
}
.cart-page__table tbody tr td .cart-page__table__remove svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.cart-page__table tbody tr td .cart-page__table__remove:hover {
  color: var(--findox-base, #006654);
}
.cart-page__table tbody tr td:first-child {
  padding-left: 0px;
}
.cart-page__table tbody tr td:last-child {
  padding-right: 0px;
  border-right: 0px;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
  gap: 30px;
}
.cart-page__table__meta__img {
  width: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 5px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
.cart-page__table__meta__img img {
  max-width: 100%;
  height: auto;
  border-radius: inherit;
}
.cart-page__table__meta__title {
  margin: 0;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  line-height: 1.318;
}
@media (max-width: 767px) {
  .cart-page__table__meta__title {
    font-size: 20px;
  }
}
.cart-page__table__meta__title a {
  color: inherit;
}
.cart-page__table__meta__title a:hover {
  color: var(--findox-base, #006654);
}
.cart-page__table__meta__title a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cart-page__table__meta__title a:hover {
  background-size: 100% 1px;
}
.cart-page__table__quantity {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cart-page__table__quantity__title {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.cart-page__table__quantity .quantity-box {
  position: relative;
  width: 172px;
  height: 50px;
  border-radius: 100px;
  border: 1px solid var(--findox-border-color, #dddddd);
}
.cart-page__table__quantity .quantity-box__input {
  border: none;
  outline: none;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-color: transparent;
  width: 50px;
  height: 100%;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  padding: 0;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--findox-black3, #333333);
  line-height: 1;
  background-color: transparent;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  transition: all 500ms ease;
}
.cart-page__table__quantity .quantity-box__btn {
  border: none;
  outline: none;
  background-color: var(--findox-white3, #ecf5f4);
  padding: 0;
  display: inline-flex;
  font-size: 8px;
  color: var(--findox-black4, #131111);
  transition: all 500ms ease;
}
.cart-page__table__quantity .quantity-box__btn.add {
  padding: 5px 5px 2px;
  position: absolute;
  top: 9px;
  right: 21px;
  z-index: 1;
  border-radius: 3px 3px 0px 0px;
}
.cart-page__table__quantity .quantity-box__btn.sub {
  padding: 2px 5px 5px;
  position: absolute;
  right: 21px;
  bottom: 9px;
  z-index: 1;
  border-radius: 0px 0px 3px 3px;
}
.cart-page__table__quantity .quantity-box__btn:hover {
  color: var(--findox-base, #006654);
}
.cart-page__bottom {
  margin-top: 8px;
}
.cart-page__coupone__form {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .cart-page__coupone__form {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
}
.cart-page__coupone__form input[type=text] {
  display: block;
  width: 270px;
  height: 54px;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 400;
  background-color: var(--findox-white2, #f0f2f8);
  padding-left: 19px;
  padding-right: 19px;
  border-radius: 5px;
  transition: all 500ms ease;
}
.cart-page__coupone__form input[type=text]:focus {
  color: var(--findox-black4, #131111);
}
@media (max-width: 1199px) {
  .cart-page__coupone__form input[type=text] {
    flex-grow: 1;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone__form input[type=text] {
    width: 100%;
  }
}
.cart-page__cart-checkout__title {
  margin-bottom: 0px;
  display: inline-block;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-weight: 700;
  font-size: 22px;
  color: var(--findox-black2, #222222);
  line-height: 1.318;
  text-transform: capitalize;
}
.cart-page__cart-total {
  max-width: 353px;
  position: relative;
  margin: 0px 0px 40px auto;
}
@media (max-width: 1199px) {
  .cart-page__cart-total {
    margin: 0px 0px 30px;
  }
}
.cart-page__cart-total li + li {
  margin-top: 23px;
}
.cart-page__cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.25;
}
.cart-page__button {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 25px 38px;
}
@media (max-width: 1199px) {
  .cart-page__button {
    justify-content: flex-start;
  }
}
.cart-page .findox-btn {
  gap: 12px;
  justify-content: center;
  border-radius: 5px;
  padding: 17px 30px;
}
.cart-page .findox-btn::before {
  display: none;
}
.cart-page .findox-btn .findox-btn__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
}
.cart-page .findox-btn .findox-btn__icon i {
  position: absolute;
  top: 0px;
  bottom: auto;
}
.cart-page .findox-btn .findox-btn__icon i:last-child {
  left: -16px;
  bottom: auto;
}
.cart-page .findox-btn:hover .findox-btn__icon {
  color: var(--findox-black4, #131111);
}
.cart-page .findox-btn:hover .findox-btn__icon i {
  transform: translate(16px, 0px);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  background-color: var(--findox-white, #ffffff);
}
.checkout-page__notice {
  margin-bottom: 26px;
}
.checkout-page .notice-box {
  padding: 12.5px 20px;
  margin-bottom: 0px;
  font-style: var(--findox-font, "DM Sans", sans-serif);
  font-size: 18px;
  color: var(--findox-black2, #222222);
  font-weight: 600;
  line-height: 1.444;
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
}
@media (max-width: 767px) {
  .checkout-page .notice-box {
    font-size: 16px;
  }
}
.checkout-page .notice-box a {
  color: var(--findox-base, #006654);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.checkout-page .notice-box a:hover {
  background-size: 100% 1px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__title {
  margin-bottom: 16px;
  font-size: 22px;
  font-weight: 700;
  color: var(--findox-black2, #222222);
  text-transform: capitalize;
  line-height: 1.318;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .checkout-page__form .form-one__group {
    grid-template-columns: repeat(1, 1fr);
  }
}
.checkout-page__shipping-details {
  margin-top: 15px;
}
@media (max-width: 430px) {
  .checkout-page__shipping-details {
    margin-top: 0px;
  }
}
.checkout-page__shipping-details .checkout-page__title {
  margin-bottom: 25px;
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  font-size: 16px;
  color: var(--findox-text, #636363);
  font-weight: 600;
  line-height: 1.625;
  text-transform: uppercase;
  cursor: pointer;
}
.checkout-page__check-box label span::before {
  content: "\f00c";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  color: var(--findox-base, #006654);
  font-size: 9px;
  font-weight: 900;
  opacity: 0;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 3px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--findox-base, #006654);
  border-radius: 50%;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
  margin: 41px 0 0;
}
@media (max-width: 430px) {
  .checkout-page__your-order {
    margin: 30px 0 0;
  }
}
.checkout-page__your-order .checkout-page__title {
  margin-bottom: 33px;
}
@media (max-width: 430px) {
  .checkout-page__your-order .checkout-page__title {
    margin-bottom: 20px;
  }
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  margin: 0;
  padding: 16px 0;
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  color: var(--findox-black2, #222222);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.25;
  border: none;
  border-top: 1px solid var(--findox-border-color, #dddddd);
  border-bottom: 1px solid var(--findox-border-color, #dddddd);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-family: var(--findox-heading-font, "Sora", sans-serif);
  font-size: 16px;
  color: var(--findox-black2, #222222);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
  padding: 0 0 15px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td.pro__price {
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-weight: 500;
  color: var(--findox-text, #636363);
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 16px;
}
.checkout-page__order-table tbody tr:nth-child(3) td {
  padding-bottom: 16px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-top: 15px;
  border-top: 1px solid var(--findox-border-color, #dddddd);
}
.checkout-page__payment {
  padding: 29px 31px;
  margin-bottom: 30px;
  border-radius: 5px;
  background-color: var(--findox-white2, #f0f2f8);
}
@media (max-width: 390px) {
  .checkout-page__payment {
    padding: 25px;
  }
}
.checkout-page__payment__item + .checkout-page__payment__item {
  margin-top: 15px;
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  margin-bottom: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--findox-font, "DM Sans", sans-serif);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--findox-text, #636363);
  line-height: 1.625;
}
.checkout-page__payment__title::before {
  content: "";
  width: 21px;
  height: 21px;
  line-height: 21px;
  border: 1px solid var(--findox-base, #006654);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 9px;
  color: var(--findox-white, #ffffff);
  position: relative;
  top: -1px;
  transition: all 500ms ease;
}
.checkout-page__payment .checkout-page__payment__item--active .checkout-page__payment__title {
  text-shadow: 0px 0px 0.25px currentColor;
}
.checkout-page__payment .checkout-page__payment__item--active .checkout-page__payment__title::before {
  content: "\f111";
  color: var(--findox-base, #006654);
}
.checkout-page__payment__content {
  margin-top: 12px;
}
.checkout-page__payment__content p {
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.checkout-page__button .findox-btn {
  gap: 12px;
  justify-content: center;
  border-radius: 5px;
  padding: 17px 30px;
}
.checkout-page__button .findox-btn::before {
  display: none;
}
.checkout-page__button .findox-btn .findox-btn__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--findox-white, #ffffff);
}
.checkout-page__button .findox-btn .findox-btn__icon i {
  position: absolute;
  top: 0px;
  bottom: auto;
}
.checkout-page__button .findox-btn .findox-btn__icon i:last-child {
  left: -16px;
  bottom: auto;
}
.checkout-page__button .findox-btn:hover .findox-btn__icon {
  color: var(--findox-black4, #131111);
}
.checkout-page__button .findox-btn:hover .findox-btn__icon i {
  transform: translate(16px, 0px);
}

/*--------------------------------------------------------------
# Error 404
--------------------------------------------------------------*/
.error-404 {
  background-color: var(--findox-white, #ffffff);
}
.error-404__content {
  text-align: center;
}
.error-404__image {
  margin-bottom: 12px;
  max-width: 100%;
  height: auto;
  animation: moveX 2s linear infinite;
}
.error-404__title {
  margin-bottom: 10px;
  font-size: 35px;
  color: var(--findox-black2, #222222);
  font-weight: 700;
  line-height: 1.314;
}
@media (max-width: 575px) {
  .error-404__title {
    font-size: 30px;
  }
}
.error-404__text {
  margin-bottom: 26px;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--findox-white, #ffffff);
  box-shadow: 0px 0px 100px 0px rgba(var(--findox-black3-rgb, 51, 51, 51), 0.08);
}
body.boxed-wrapper .hero-one__shape-1 {
  left: 2%;
}
@media (min-width: 1400px) {
  body.boxed-wrapper .about-one__shape {
    right: 3%;
    bottom: 50px;
  }
}
@media (min-width: 1600px) {
  body.boxed-wrapper .hero-one__shape-3 {
    right: 8.6%;
  }
}
/*# sourceMappingURL=findox.css.map */


/* Custom Sidebar Main Container */
.custom-sidebar-container {
    width: 100%;
    max-width: 280px;
    background-color: #0d4f34;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.sidebar-brand-box {
    background-color: #0d4f34;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-logo-circle {
    width: 45px;
    height: 45px;
    background-color: #ccdb14;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo-circle i {
    color: #0d4f34;
    font-size: 22px;
}

.brand-text-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-title-main {
    color: #ccdb14;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

.brand-subtitle-sub {
    color: #ffffff;
    font-size: 11px;
    font-weight: 500;
}

/* Navigation Links */
.sidebar-nav-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    text-decoration: none;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
}

.sidebar-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Background Color Variations */
.item-bg-darkgreen {
    background-color: #0d4f34;
}

.item-bg-maroon {
    background-color: #6b2d2d;
}

/* Icons Box Styling */
.item-icon-box {
    width: 33px;
    height: 33px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.bg-lightgreen {
    background-color: #e2f3e9;
}

.circle-shape {
    border-radius: 50% !important;
}

/* Icon Colors Matching Image */
.item-icon-box i {
    font-size: 22px;
}
.icon-red { color: #d32f2f; }
.icon-darkgreen { color: #0d4f34; }
.icon-orange { color: #f57c00; }
.icon-yellow { color: #fbc02d; }
.icon-teal { color: #00796b; }
.icon-gold { color: #f5b041; }
.icon-darkred { color: #b71c1c; }

/* Text Styling */
.item-text-label {
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
}

.item-text-label small {
    display: block;
    font-size: 13px;
    color: #ffffff;
    margin-top: 2px;
}

/* Layout adjustments */
.item-round-bottom {
    border-bottom-left-radius: 30px;
}

/* Bottom Purple Button */
.sidebar-footer-btn {
    background-color: #9c27b0;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;
    font-weight: bold;
    font-size: 14px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    margin-top: 15px;
    cursor: pointer;
}

/* --- Responsive Settings --- */
@media (max-width: 768px) {
    .custom-sidebar-container {
        max-width: 100%; 
        border-radius: 0;
    }
    .item-text-label {
        font-size: 15px;
    }
}


.your-slider-container-class {
    position: relative; 
}


.custom-sidebar-container {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999; 
    /*width: 280px;*/
    width:183px;
    background-color: #0d4f34;
    box-shadow: 5px 0px 15px rgba(0,0,0,0.3); 
  
}
.main-header--three::before
{
  background: transparent;
}
.topbar--two .topbar__note__title
{
  display:none;
}
.hero-slider-two__content
{
  visibility: hidden;
}

.main-header__nav
{
  display:none !important;
}

 .custom-menu-wrapper {
      position: relative;
      z-index: 9999; /* Always on top */
    }

    .custom-menu-wrapper .main-menu {
      background-color:#0c4a96;
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .custom-menu-wrapper .menu-list {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
      position: relative;
      z-index: 10;
    }

    .custom-menu-wrapper .menu-item {
      position: relative;
    }

    .custom-menu-wrapper .menu-item > a {
      color: #fff !important;
      font-weight: 500;
      text-decoration: none;
      text-transform: uppercase;
      font-size: 13px;
      padding: 10px 18px;
      display: block;
      border-right: 1px solid rgba(255, 255, 255, 0.3);
      transition: background 0.3s;
      background: transparent;
    }

    .custom-menu-wrapper .menu-item > a:hover {
      background-color: #a00000;
    }

    /* 🔹 Dropdown */
    .custom-menu-wrapper .submenu {
      display: none;
      position: absolute;
      left: 0;
      top: 100%;
      background-color:#0c4a96;
      list-style: none;
      padding: 0;
      margin: 0;
      min-width: 200px;
      border: none;
      z-index: 10000;
    }

    .custom-menu-wrapper .submenu li a {
      color: #fff;
      display: block;
      padding: 10px 15px;
      text-decoration: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .custom-menu-wrapper .submenu li a:hover {
      background-color: #a00000;
    }

    /* 🔹 Hover for desktop only */
    @media (min-width: 992px) {
      .custom-menu-wrapper .menu-item:hover > .submenu {
        display: block;
      }
    }

    /* 🔹 Mobile view - vertical layout */
    @media (max-width: 991px) {
      .custom-menu-wrapper .menu-list {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
      }

      .custom-menu-wrapper .menu-item > a {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
        width: 100%;
      }

      .custom-menu-wrapper .submenu {
        position: static;
        width: 100%;
      }
    }

    .header-registration-info{
    display:flex;
    align-items:center;
    gap:12px;
}

.registration-item{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-left: 4px solid #054b9d;
    border-radius:8px;
    padding:8px 14px;
    box-shadow:0 5px 18px rgba(0,0,0,.08);
    line-height:1.2;
    transition:.3s;
}

.registration-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 22px rgba(0,0,0,.12);
}

.reg-label{
    display:block;
    font-size:11px;
    font-weight:700;
    color:#ff6b00;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:2px;
}

.reg-value{
    display:block;
    font-size:14px;
    font-weight:700;
    color:#1c2c5b;
    letter-spacing:.3px;
}

@media(max-width:1199px){
    .header-registration-info{
        display:none;
    }
}

.hero-slider-two__overlay
{
   background: none !important;
}

.topbar__right{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.topbar__info{
    display:flex;
    align-items:center;
    gap:18px;
    margin:0;
}

.topbar__info li{
    display:flex;
    align-items:center;
}

.topbar__info li a{
    display:flex;
    align-items:center;
    gap:6px;
    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
}

.topbar__info__icon{
    color:#25D366;
    font-size:15px;
}

.accessibility-links{
    display:flex;
    align-items:center;
    gap:6px;
}

.accessibility-links a{
    text-decoration:none;
}

.accessibility-links .social-links__icon{
    min-width:34px;
    height:34px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#a1222f;
    color:#fff;
    border-radius:4px;
    font-size:13px;
    font-weight:600;
    padding:0 10px;
    transition:.3s;
}

.accessibility-links a:hover .social-links__icon{
    background:#7f1721;
}

@media(max-width:991px){

    .topbar__right{
        flex-direction:column;
        align-items:flex-start;
    }

    .topbar__info,
    .accessibility-links{
        flex-wrap:wrap;
    }

}

.lang-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 14px;
    background:#a32232;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:14px;
    font-weight:500;
    white-space:nowrap;
    width:auto;
    height:auto;
    line-height:1;
}

.lang-btn:hover{
    color:#fff;
    background:#8c1d2b;
}

.reader-btn{
    display:inline-flex;
    align-items:center;
    padding:7px 0;
    color:#000;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    white-space:nowrap;
    width:auto;
    height:auto;
    background:none;
    border:none;
}

.reader-btn:hover{
    color:#a32232;
}

.main-header--three::after
{
  background: transparent;
}
.topbar--two .topbar__social::after
{

}

.mobile-quick-links{
    display:none;
    overflow:hidden;
    background:#fff;
    padding:12px 0;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.mobile-links-track{
    display:flex;
    transition:.5s;
}

.mobile-link{
    flex:0 0 33.333%;
    text-align:center;
    text-decoration:none;
    color:#0b5136;
    padding:8px 5px;
}

.mobile-icon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e8f7ee;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:8px;
    font-size:22px;
    color:#0b5136;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.mobile-link span{
    display:block;
    font-size:12px;
    font-weight:600;
    line-height:1.3;
}

@media(max-width:991px){

.sidebar-container,
.custom-sidebar-container{
    display:none;
}

.mobile-quick-links{
    display:block;
}

}

@media(min-width:992px){

.mobile-quick-links{
    display:none!important;
}

}
.about-directors{
    background:#f8fbfb;
}

.about-directors .subtitle{
    color:#0d7c66;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-directors h2{
    font-weight:800;
    margin-top:10px;
    margin-bottom:20px;
}

.director-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.director-card img{
    width:100%;
   
    object-fit:cover;
    transition:.5s;
}

.director-card:hover img{
    transform:scale(1.08);
}

.director-info{
    position:absolute;
    left:15px;
    right:15px;
    bottom:15px;
    background:rgba(255,255,255,.95);
    border-radius:12px;
    padding:15px;
    text-align:center;
}

.director-info h5{
    margin:0;
    font-weight:700;
}

.director-info span{
    color:#0d7c66;
    font-size:14px;
}

.director-large img{
    height:auto;
}

@media(max-width:991px){

.director-card img{
    height:auto;
}

.director-large img{
    height:300px;
}

}

.about-directors{
    background:#f8fbfb;
}

.about-directors .subtitle{
    color:#0d7c66;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.about-directors h2{
    font-weight:800;
    margin-bottom:20px;
}

/* Director Card */
.director-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s ease;
    height:100%;
}

.director-card:hover{
    transform:translateY(-6px);
}

.director-card img{
    width:100%;
   
    object-fit:cover;
    display:block;
    transition:.4s;
}

.director-card:hover img{
    transform:scale(1.05);
}

/* Name & Designation Below Image */
.director-info{
    position:static;      /* Absolute hata diya */
    background:#fff;
    padding:18px 15px;
    text-align:center;
    border-top:1px solid #f1f1f1;
}

.director-info h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    color:#222;
}

.director-info span{
    display:block;
    margin-top:6px;
    color:#0d7c66;
    font-size:14px;
    font-weight:600;
}

.team07{
    line-height:1.4;
}

/* Responsive */
@media (max-width:991px){

    .director-card img{
        height:auto;
    }

}

@media (max-width:767px){

    .director-card{
        margin-bottom:20px;
    }

    .director-card img{
        height:auto;
    }

}
.team07
{
  font-size:14px;
}

.latest-news-box{
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    overflow:hidden;
}

.latest-news-header{
    background:#0b6b4b;
    color:#fff;
    padding:18px 25px;
    display:flex;
    align-items:center;
    gap:12px;
}

.latest-news-header h4{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.news-slider{
    height:296px;
    overflow:hidden;
    position:relative;
}

.news-track{
    transition:transform .8s ease;
}

.news-item{
    height:110px;
    padding:20px 25px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    border-bottom:1px solid #eee;
}

.news-date{
    color:#0b6b4b;
    font-size:13px;
    font-weight:600;
    margin-bottom:8px;
}

.news-item h5{
    margin:0;
    font-size:18px;
    line-height:1.5;
    font-weight:600;
}
.latestnews
{
  color:#fff;
}

.custom-feature-card{
    overflow:hidden;
    border-radius:20px;
    position:relative;
}

.feature-slider{
    height:321px;
}

.feature-slider img{
    width:100%;
    
    object-fit:cover;
    display:block;
}

.feature-highlight{
    position:absolute;
    top:20px;
    left:20px;
    z-index:5;
}

.feature-highlight span{
    background:#ff6b00;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
}

.features-three__content{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:35px;
    background:linear-gradient(to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent);
    z-index:3;
}

.features-three__title a,
.features-three__text{
    color:#fff;
}

.custom-feature-card{
    position:relative;
    border:1px dashed #d9d9d9;
    border-radius:14px;
    padding:22px 16px 16px;
    background:#fff;
    overflow:visible;   /* Important */
    transition:.3s;
    height:325px;
}

.custom-feature-card:hover{
    border-color:#f59e0b;
}

.feature-label{
    position:absolute;
    top:0;
    left:22px;
    transform:translateY(-50%);
    background:#fff;
    padding:3px 14px;
    font-size:22px;
    font-weight:700;
    letter-spacing:3px;
    color:#000;
    text-transform:uppercase;
    line-height:1;
    z-index:10;
    font-weight: bold;
}

.feature-slider img{
    width:100%;
    display:block;
    border-radius:10px;
}

/* Mobile */
@media (max-width:767px){

    .custom-feature-card{
        padding:20px 12px 12px;
    }

    .feature-label{
        left:15px;
        font-size:11px;
        padding:2px 10px;
        letter-spacing:2px;
    }

}

.emi-floating-btn{
    position:fixed;
    top:45%;
    right:0;
    background:#0c4a96;
    color:#fff;
    padding:14px 15px;
    border-radius:10px 0 0 10px;
    cursor:pointer;
    z-index:99999;
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
    transition:.35s;
}

.emi-floating-btn:hover{
    background:#083a77;
    padding-right:20px;
}

.emi-sidebar{
    position:fixed;
    top:50%;
    right:-340px;
    transform:translateY(-50%);
    width:320px;
    background:#0c4a96;
    color:#fff;
    border-radius:15px 0 0 15px;
    box-shadow:-10px 0 30px rgba(0,0,0,.25);
    z-index:999999;
    transition:.4s;
}

.emi-sidebar.active{
    right:0;
}

.emi-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.emi-header h5{
    margin:0;
    font-size:18px;
    color:#fff;
}

.emi-header button{
    border:none;
    background:none;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

.emi-body{
    padding:18px;
}

.emi-group{
    margin-bottom:15px;
}

.emi-group label{
    display:block;
    margin-bottom:6px;
    font-size:14px;
}

.emi-group input{
    width:100%;
    height:42px;
    border:none;
    border-radius:8px;
    padding:0 12px;
    color:#333;
}

.emi-btn{
    width:100%;
    height:46px;
    background:#ffb100;
    border:none;
    color:#000;
    font-weight:700;
    border-radius:8px;
    margin-top:5px;
    transition:.3s;
}

.emi-btn:hover{
    background:#ffc533;
}

.emi-result{
    margin-top:18px;
}

.emi-box{
    background:rgba(255,255,255,.08);
    padding:12px;
    border-radius:10px;
    margin-bottom:10px;
}

.emi-box h4,
.emi-box h5{
    margin:5px 0 0;
    color:#fff;
}

@media(max-width:576px){

.emi-sidebar{
    width:290px;
}

.emi-floating-btn{
    padding:12px;
}

}

.emi-floating-btn{
    position:fixed;
    top:50%;
    right:0;
    transform:translateY(-50%);
    z-index:99999;

    width:48px;
    height:196px;

    background:#0c4a96;
    color:#fff;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:12px;

    border-radius:12px 0 0 12px;
    cursor:pointer;
    box-shadow:-5px 0 20px rgba(0,0,0,.25);

    transition:.3s;
}

.emi-floating-btn:hover{
    width:55px;
    background:#083a77;
}

.emi-floating-btn i{
    font-size:20px;
}

.emi-floating-btn span{
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    white-space:nowrap;
}

/* Mobile */
@media(max-width:768px){

    .emi-floating-btn{
        width:42px;
        height:150px;
    }

    .emi-floating-btn span{
        font-size:11px;
        letter-spacing:1px;
    }

    .emi-floating-btn i{
        font-size:18px;
    }

}
.product-sectionn
{
  padding: 50px 120px !important;
}

/*============================
      Banking Mobile Section
=============================*/

.bnx-mobilebank-section{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:linear-gradient(135deg,#061d5f 0%,#163f9d 45%,#00b4d8 100%);
}

/* Background Design */

.bnx-mobilebank-section:before{
    content:'';
    position:absolute;
    width:650px;
    height:650px;
    left:-220px;
    top:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.05);
}

.bnx-mobilebank-section:after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    right:-150px;
    bottom:-150px;
    border-radius:50%;
    background:rgba(255,255,255,.04);
}

/* Decorative Shapes */

.bnx-mobilebank-section .container{
    position:relative;
    z-index:2;
}

.bnx-mobilebank-section .container:before{
    content:'';
    position:absolute;
    width:220px;
    height:220px;
    border:2px dashed rgba(255,255,255,.10);
    border-radius:50%;
    right:140px;
    top:50px;
}

.bnx-mobilebank-section .container:after{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    border:2px solid rgba(255,255,255,.08);
    border-radius:30px;
    transform:rotate(45deg);
    left:-80px;
    bottom:30px;
}

/* Feature Box */

.bnx-feature-box{
    display:flex;
    align-items:center;
    margin-bottom:28px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.10);
    padding:18px 20px;
    border-radius:18px;
    transition:.4s;
}

.bnx-feature-box:hover{
    transform:translateX(8px);
    background:rgba(255,255,255,.14);
}

.bnx-icon{
    width:42px;
    height:42px;
    border-radius:18px;
    background:linear-gradient(135deg,#00d4ff,#00ffa3);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 15px 30px rgba(0,212,255,.25);
}

.bnx-icon i{
    font-size:16px;
    color:#fff;
}

.bnx-content{
    padding-left:18px;
}

.bnx-content h5{
    color:#fff;
    font-size:19px;
    margin-bottom:6px;
    font-weight:700;
}

.bnx-content p{
    color:#dce9ff;
    margin:0;
    font-size:16px;
    line-height:28px;
}

/* Right Side */

.bnx-phone{
    position:relative;
    z-index:5;
}

.bnx-phone img{
    
    width:100%;
    animation:float 4s ease-in-out infinite;
}

/* Glow */

.bnx-glow-circle{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    background:radial-gradient(circle,#00ffd5 0%,transparent 70%);
    filter:blur(40px);
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    opacity:.30;
}

/* Floating Cards */

.bnx-floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#173b8b;
    padding:12px 18px;
    border-radius:16px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 18px 40px rgba(0,0,0,.18);
}

.bnx-floating-card i{
    color:#00a8ff;
    font-size:18px;
}

.card1{
    top:12%;
    left:2%;
}

.card2{
    top:35%;
    left:-2%;
}

.card3{
    bottom:30%;
    left:5%;
}

.card4{
    bottom:10%;
    left:15%;
}

/* Animation */

@keyframes float{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

100%{
transform:translateY(0px);
}

}

/* Responsive */

@media(max-width:991px){

.bnx-mobilebank-section{
padding:70px 0;
text-align:center;
}

.bnx-feature-box{
text-align:left;
}

.bnx-phone{
margin-top:50px;
}

.card1{
left:10px;
}

.card2{
left:0;
}

.card3{
left:15px;
}

.card4{
left:35px;
}

}

@media(max-width:767px){

.bnx-feature-box{
padding:15px;
}

.bnx-icon{
width:55px;
height:55px;
}

.bnx-icon i{
font-size:22px;
}

.bnx-content h5{
font-size:20px;
}

.bnx-content p{
font-size:14px;
line-height:24px;
}

.bnx-phone img{
max-width:290px;
}

.bnx-floating-card{
font-size:13px;
padding:10px 14px;
}

}

.app-download-bar{
    background:linear-gradient(90deg,#0c4a96,#135bb5);
    padding:18px 0;
}

.app-bar-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.app-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.app-icon{
    width:62px;
    height:62px;
    border-radius:50%;
    background:#ffffff;
    color:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.app-content span{
    display:block;
    color:#ffd54f;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.app-content h4{
    margin:4px 0 0;
    color:#fff;
    font-size:28px;
    font-weight:700;
}

.app-right{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.store-btn{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 22px;
    border-radius:12px;
    text-decoration:none;
    transition:.35s;
    min-width:190px;
}

.google{
    background:#fff;
    color:#111;
}

.apple{
    background:#111827;
    color:#fff;
}

.store-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.store-btn i{
    font-size:28px;
}

.store-btn small{
    display:block;
    font-size:10px;
    opacity:.75;
    line-height:1;
}

.store-btn strong{
    display:block;
    font-size:17px;
    margin-top:3px;
}

/* Tablet */

@media(max-width:991px){

.app-bar-wrapper{
    flex-direction:column;
    text-align:center;
}

.app-left{
    flex-direction:column;
}

.app-content h4{
    font-size:24px;
}

.app-right{
    justify-content:center;
}

}

/* Mobile */

@media(max-width:576px){

.app-download-bar{
    padding:25px 15px;
}

.app-icon{
    width:55px;
    height:55px;
    font-size:24px;
}

.app-content h4{
    font-size:20px;
}

.store-btn{
    width:100%;
    justify-content:center;
    min-width:100%;
}

}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:22px;
}

.contact-icon{
    width:58px;
    height:58px;
    min-width:58px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.contact-icon i{
    color:#ffb100;
    font-size:22px;
}

.footer-contact li:hover .contact-icon{
    background:#0c4a96;
    transform:translateY(-3px);
}

.footer-contact .footer-widget__blog__date{
    display:block;
    color:#bfc8d5;
    font-size:13px;
    margin-bottom:4px;
}

.footer-contact .footer-widget__blog__title{
    font-size:16px;
    line-height:1.6;
    margin:0;
}

.footer-contact .footer-widget__blog__title a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-contact .footer-widget__blog__title a:hover{
    color:#ffb100;
}

@media(max-width:767px){

    .contact-icon{
        width:50px;
        height:50px;
        min-width:50px;
    }

    .contact-icon i{
        font-size:18px;
    }

}

/* Mobile Top Header */

.mobile-top-header{
    display:none;
}

@media (max-width:991px){

.mobile-top-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;

    background:linear-gradient(90deg,#0c4a96,#1565c0);
    padding:0px 0px;

    position:relative;
    z-index:999;
}

.mobile-top-item{
    display:flex;
    align-items:center;
    gap:0px;

    color:#fff;
    text-decoration:none;

    font-size:12px;
    font-weight:600;

    flex:1;
}

.mobile-top-item:first-child{
    border-right:1px solid rgba(255,255,255,.25);
    padding-right:10px;
}

.mobile-top-item:last-child{
    justify-content:flex-end;
    padding-left:0px;
}

.mobile-top-item i{
    width:30px;
    height:30px;

    border-radius:50%;
    background:rgba(255,255,255,.15);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#ffd54f;
    font-size:13px;

    flex-shrink:0;
}

.mobile-top-item span{
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
}

}
.page-header {
    position: relative;
    margin-top:0px !important;
    padding-top: 65px;
    padding-bottom: 55px;
    overflow: hidden;
    background-color: var(--findox-white, #ffffff);
}
.page-header__title
{
  font-size: 46px;
}

.section-title5 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #0d6efd;
            border-bottom: 2px solid #0d6efd;
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        .product-card {
            background: #ffffff;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            transition: transform 0.2s, box-shadow 0.2s;
            height: 100%;
        }
        .product-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border-color: #b6d4fe;
        }
        .card-type-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #212529;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .sub-product-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        .sub-product-item {
            font-size: 0.85rem;
            color: #555555;
            padding: 0.35rem 0;
            border-bottom: 1px dashed #f0f0f0;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .sub-product-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        .download-btn {
            font-size: 0.85rem;
            padding: 0.4rem 1rem;
        }

        /* Custom Table Styling */
        .interest-table-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }
        .table {
            margin-bottom: 0;
            vertical-align: middle;
        }
        /* Header styling */
        .table thead th {
            background-color:#0c4a96;
            color: #ffffff;
            font-size: 0.88rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 14px 10px;
            border: none;
        }
        /* Row and Cell styling */
        .table tbody td {
            font-size: 0.88rem;
            color: #495057;
            padding: 12px 10px;
            border-bottom: 1px solid #f1f3f5;
        }
        /* Alternating row colors */
        .table tbody tr:nth-of-type(even) {
            background-color: #f8fafc;
        }
        /* Hover effect */
        .table tbody tr:hover {
            background-color: #f1f5f9;
            transition: background-color 0.2s ease;
        }
        /* Special emphasis on revised rates */
        .highlight-rate {
            font-weight: 600;
            color: #0f5132;
            background-color: #d1e7dd;
            border-radius: 4px;
            padding: 2px 6px;
            display: inline-block;
        }
        /* Serial Number styling */
        .sn-col {
            font-weight: 600;
            color: #6c757d;
        }
        
        .about-bank-section{
    background:#f8fafc;
}

.section-tag{
    display:inline-block;
    padding:6px 16px;
    background:#e8f1fc;
    color:#0c4a96;
    font-size:13px;
    font-weight:600;
    border-radius:30px;
    letter-spacing:1px;
}

.section-title01{
    font-size:34px;
    font-weight:700;
    color:#1f2937;
    line-height:1.3;
}

.about-card,
.info-card{
    background:#fff;
    padding:35px;
    border-radius:14px;
    border:1px solid #e9ecef;
    transition:.3s;
}

.about-card:hover,
.info-card:hover{
    border-color:#0c4a96;
    transform:translateY(-3px);
}

.icon-box{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#0c4a96;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
}

.about-card p,
.info-card p{
    color:#5f6b7a;
    line-height:1.8;
    font-size:15px;
}

.info-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.info-title span{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#eef5ff;
    color:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.info-title h5{
    margin:0;
    font-size:20px;
    font-weight:600;
    color:#222;
}

.mission-list{
    list-style:none;
    padding:0;
    margin:0;
}

.mission-list li{
    display:flex;
    gap:12px;
    margin-bottom:16px;
    color:#5f6b7a;
    line-height:1.7;
    font-size:15px;
}

.mission-list i{
    color:#0c4a96;
    margin-top:4px;
    font-size:16px;
}

@media(max-width:991px){

.section-title01{
    font-size:28px;
}

.about-card,
.info-card{
    padding:25px;
}

}

@media(max-width:576px){

.section-title01{
    font-size:24px;
}

.about-card,
.info-card{
    padding:20px;
}

.info-title h5{
    font-size:18px;
}

.about-card p,
.info-card p,
.mission-list li{
    font-size:14px;
}

}

.bank-board-table{
    border:1px solid #dbe4f0;
    border-radius:12px;
    overflow:hidden;
    background:#fff;
}

.bank-board-table table{
    margin:0;
}

.bank-board-table thead th{
    background:#0c4a96;
    color:#fff;
    border:none;
    font-size:15px;
    font-weight:600;
    padding:15px 18px;
    white-space:nowrap;
}

.bank-board-table tbody td{
    padding:15px 18px;
    vertical-align:middle;
    border-color:#eef2f7;
    font-size:15px;
    color:#444;
}

.bank-board-table tbody tr:nth-child(even){
    background:#f8fbff;
}

.bank-board-table tbody tr:hover{
    background:#eef5ff;
}

.bank-board-table tbody td:first-child{
    width:70px;
    text-align:center;
    font-weight:700;
    color:#0c4a96;
}

.bank-board-table a{
    color:#0c4a96;
    text-decoration:none;
    font-weight:600;
}

.bank-board-table a:hover{
    text-decoration:underline;
}

.designation{
    display:inline-block;
    background:#eef5ff;
    color:#0c4a96;
    padding:6px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.designation.chairman{
    background:#0c4a96;
    color:#fff;
}

.designation.vice{
    background:#1e63b8;
    color:#fff;
}

.designation.md{
    background:#0a7b49;
    color:#fff;
}

@media(max-width:767px){

    .bank-board-table thead th,
    .bank-board-table tbody td{
        padding:12px;
        font-size:14px;
    }

    .designation{
        font-size:12px;
        padding:5px 10px;
    }

}



/* Mobile */
@media (max-width:767px){

.hero-slider .carousel-item{
    height:250px;
}

.carousel-control-prev,
.carousel-control-next{
    display:none;
}

}

html, body {
  overflow-x: hidden;
  width: 100%;
}

 /*.custom-menu-wrapper
    {
        display:none;
    }*/
    
  
    

@media only screen and (max-width: 768px) {
    
    /*.custom-menu-wrapper
    {
        display:block !important;
    }
    
    .navigation-bar
    {
        display:none !important;
    }*/
 
    html, body {
  overflow-x: hidden;
}
body {
  position: relative
}
}

 /* Unique wrapper target resolving overlapping issues */
.dccb-exact-header {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
    position: relative;
}

.dccb-header-container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch; /* Taki left green box aur right text ki height match ho ske */
}

/* LEFT BRANDING SECTION (Green Polygon Curve Style) */
.dccb-brand-green-box {
    background-color: #1b6b69;
    padding: 15px 60px 10px 40px; /* Left corner se perfect gap maintain karne ke liye */
    border-bottom-right-radius: 90px 100px; /* Splendid custom rounded slope effect */
    display: flex;
    align-items: center;
    position: relative;
    flex-shrink: 0;
}

.dccb-bank-main-logo {
    max-height: 52px;
    display: block;
}

.dccb-yellow-tagline-bar {
    background-color: #FFF200;
    color: #000000;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 8px;
    margin-top: 6px;
    border-radius: 2px;
    white-space: nowrap;
    text-align: center;
}

/* RIGHT MASTER WRAPPER */
.dccb-right-meta-holder {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    padding: 8px 25px 8px 15px;
    flex-grow: 1;
}

/* UPPER ROW: Utilities styling matching image_b580f9.png */
.dccb-upper-utility-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: bold;
    color: #000000;
}

.dccb-util-link {
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.dccb-util-link:hover {
    text-decoration: underline;
}

.dccb-skip-btn {
    font-weight: bold;
}

.dccb-util-divider {
    color: #cccccc;
    font-size: 14px;
}

/* Red control buttons for accessibility font */
.dccb-font-control-group {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.dccb-font-badge {
    background-color: #8B1E23;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 3px;
    display: inline-block;
}

.dccb-access-icon {
    color: #000000;
    font-size: 14px;
    margin-left: 4px;
    text-decoration: none;
}

/* Maroon colored exact Language button */
.dccb-lang-btn-exact {
    background-color: #8B1E23;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.dccb-reader-txt {
    font-size: 13px;
}

/* LOWER ROW: Amrit Mahotsav & Menu Link items */
.dccb-lower-menu-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.dccb-amrit-logo-holder {
    display: block;
}

.dccb-amrit-img {
    max-height: 40px;
    object-fit: contain;
}

.dccb-secondary-inline-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.dccb-secondary-inline-menu > li > a {
    color: #333333;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.dccb-secondary-inline-menu > li > a:hover {
    color: #015331;
}

/* RESPONSIVE CSS */
@media (max-width: 1150px) {
    .dccb-header-container {
        flex-direction: column;
    }
    .dccb-brand-green-box {
        border-radius: 0;
        width: 100%;
        justify-content: center;
        padding: 15px;
    }
    .dccb-right-meta-holder {
        width: 100%;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }
    .dccb-upper-utility-row {
        flex-wrap: wrap;
        justify-content: center;
    }
    .dccb-lower-menu-row {
        flex-direction: column;
        gap: 12px;
    }
    .dccb-secondary-inline-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}

/* --- 3. Navigation Bar Menu CSS --- */
.navigation-bar {
    background-color:#074796;
    border-bottom: 4px solid var(--bank-yellow);
    position: relative;
    z-index: 999;
}
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-menu__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.main-menu__list > li {
    position: relative;
}
.main-menu__list > li > a {
    display: block;
    padding: 14px 16px;
    color:#fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.main-menu__list > li > a:hover, 
.main-menu__list > li > a.active-nav {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Dropdown Submenu Mechanics */
.main-menu__list .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
    min-width: 200px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
.main-menu__list .submenu li a {
    color: #333333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid #eeeeee;
}
.main-menu__list .submenu li a:hover {
    background-color: var(--bank-green);
    color: #ffffff;
}
.main-menu__list .dropdown:hover .submenu {
    display: block;
}

/* Hide Checkbox Toggle by Default */
.menu-toggle-checkbox, .mobile-menu-btn {
    display: none;
}

/* --- 4. Marquee Style --- */
.marquee-announcement {
    background:#1b6b69;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px solid #002918;
    margin-top:1px;
}
.marquee-inner {
    display: flex;
    align-items: center;
}
.marquee-label {
    background: var(--bank-yellow);
    color: #fff;
    padding: 3px 8px;
    font-weight: bold;
    margin-right: 15px;
    white-space: nowrap;
    border-radius: 3px;
    font-size: 12px;
}
marquee {
    align-self: center;
}

/* --- Responsive Media Queries (Mobile & Tablets) --- */
@media (max-width: 991px) {
    .middle-header__inner {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    .header-registration-info {
        width: 100%;
        justify-content: space-between;
    }
    .logo-branding-box {
        width: 100%;
        border-radius: 0;
    }
    
    /* Responsive Menu Toggle Trigger */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 15px 0;
    }
    .mobile-menu-btn span {
        width: 25px;
        height: 3px;
        background-color: var(--bank-yellow);
        display: block;
        transition: 0.3s;
    }
    .main-menu__list {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: var(--bank-green);
    }
    .main-menu__list > li {
        width: 100%;
    }
    .main-menu__list > li > a {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .menu-toggle-checkbox:checked ~ .main-menu__list {
        display: flex;
    }
    .main-menu__list .submenu {
        position: static;
        width: 100%;
        background: #014428;
    }
    .main-menu__list .submenu li a {
        color: #fff;
        padding-left: 30px;
    }
    .main-menu__list .dropdown:hover .submenu {
        display: none; /* Mobile me click behaviour toggle thik rehta h ya automatic pure open honge */
    }
    .main-menu__list .dropdown:focus-within .submenu {
        display: block;
    }
}

@media (max-width: 600px) {
    .topbar__inner {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    .header-registration-info {
        flex-direction: column;
        gap: 5px;
    }
}

/* Hide Checkbox Toggle by Default on Desktop */
.menu-toggle-checkbox {
    display: none;
}

/* --- Responsive Media Queries (Mobile & Tablets View) --- */
@media (max-width: 991px) {
    .nav-inner {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        padding: 0px 0;
    }

    /* Mobile Menu Trigger Icon Design */
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        padding: 5px;
        margin: 10px 0;
        z-index: 1001;
    }
    
    /* Bars ko white color dene ke liye style */
    .mobile-menu-btn span {
        width: 100%;
        height: 3px;
        background-color: #ffffff; /* Bilkul solid white color */
        display: block;
        border-radius: 2px;
        transition: all 0.3s ease-in-out;
    }

    /* Target wrapper jab click ho (Open state me lines close icon 'X' banegi) */
    .menu-toggle-checkbox:checked ~ .mobile-menu-btn span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .menu-toggle-checkbox:checked ~ .mobile-menu-btn span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle-checkbox:checked ~ .mobile-menu-btn span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Main Menu list reset for mobile toggle slide behavior */
    .main-menu__list {
        display: none; /* Default band rahega */
        width: 100%;
        flex-direction: column;
        background-color: #015331; /* Bank Green Theme consistency */
        padding: 10px 0;
        margin: 0;
    }

    /* Checked toggle script behavior: Click par open aur dubara click par close */
    .menu-toggle-checkbox:checked ~ .main-menu__list {
        display: flex;
    }

    .main-menu__list > li {
        width: 100%;
    }

    .main-menu__list > li > a {
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
        width: 100%;
        box-sizing: border-box;
    }

    /* Submenu responsive behavior handling */
    .main-menu__list .submenu {
        position: static;
        width: 100%;
        background-color: #013a22; /* Slightly dark green inside wrapper */
        box-shadow: none;
    }

    .main-menu__list .submenu li a {
        color: #ffffff;
        padding-left: 35px;
    }

    .main-menu__list .dropdown:hover .submenu {
        display: none;
    }
    
    .main-menu__list .dropdown:focus-within .submenu {
        display: block;
    }
}

/* --- DESKTOP PROTECTION LAYER (992px and above) --- */
/* Desktop me mobile ke elements pure hide rahenge taaki design bilkul change na ho */
.dccb-mobile-checkbox-input, 
.dccb-mobile-hamburger-trigger {
    display: none !important;
}

@media (min-width: 992px) {
    .dccb-lower-menu-row {
        display: flex !important;
        align-items: center !important;
        gap: 20px !important;
    }
    .dccb-secondary-inline-menu {
        display: flex !important;
        flex-direction: row !important;
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 16px !important;
    }
    .dccb-secondary-inline-menu .sub-list {
        display: none;
        position: absolute;
        background: #ffffff;
        box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    /* Desktop Hover Action */
    .dccb-secondary-inline-menu .dccb-subitem-dropdown:hover .sub-list {
        display: block !important;
    }
}

/* --- ONLY MOBILE ACTION LAYER (991px & Below) --- */
@media (max-width: 991px) {
    .dccb-lower-menu-row {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        position: relative;
    }

    .dccb-amrit-logo-holder {
        margin-bottom: 15px;
    }

    /* 3 Spans Hamburger Design setup */
    .dccb-mobile-hamburger-trigger {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        padding: 5px;
        margin-bottom: 10px;
    }

    .dccb-mobile-hamburger-trigger span {
        width: 100%;
        height: 1px;
        background-color: #015331; /* Green Theme bars */
        display: block;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* Hamburger Animation to 'X' on Open */
    .dccb-mobile-checkbox-input:checked ~ .dccb-mobile-hamburger-trigger span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    .dccb-mobile-checkbox-input:checked ~ .dccb-mobile-hamburger-trigger span:nth-child(2) {
        opacity: 0;
    }
    .dccb-mobile-checkbox-input:checked ~ .dccb-mobile-hamburger-trigger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* DEFAULT MOBILE STATE: Menu list complete band (hide) rahegi */
    .dccb-secondary-inline-menu {
        display: none !important;
        flex-direction: column !important;
        width: 100%;
        padding: 0;
        margin: 10px 0 0 0;
        list-style: none;
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
        border-radius: 4px;
    }

    /* TOGGLE CLICK EVENT: Checkbox tick hote hi menu list khulegi, uncheck par wapas band */
    .dccb-mobile-checkbox-input:checked ~ .dccb-secondary-inline-menu {
        display: flex !important;
    }

    .dccb-secondary-inline-menu > li {
        width: 100%;
        border-bottom: 1px solid #eeeeee;
    }

    .dccb-secondary-inline-menu > li > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        color: #333333;
        text-decoration: none;
        font-size: 14px;
        width: 100%;
        box-sizing: border-box;
    }

    /* Inside Dropdowns Defaults */
    .dccb-secondary-inline-menu .sub-list {
        display: none !important;
        background-color: #f9f9f9;
        padding: 0;
        margin: 0;
        list-style: none;
        border-left: 3px solid #015331;
    }

    .dccb-secondary-inline-menu .sub-list li a {
        display: block;
        padding: 10px 25px;
        color: #555555;
        text-decoration: none;
        font-size: 13px;
    }

    /* JavaScript State Handlers for Item Toggle */
    .dccb-secondary-inline-menu > li.is-open-active .sub-list {
        display: block !important;
    }
    .dccb-secondary-inline-menu > li.is-open-active > a i {
        transform: rotate(180deg);
    }
}

/* --- SERVICES SLIDER SECTION STYLES --- */
.bank-services-slider-section {
    width: 100%;
    padding: 40px 0 30px 0;
    /* Soft professional bank theme gradient background */
    background: linear-gradient(rgb(255 245 0 / 28%) 0, rgb(255 255 253) 51%, rgb(0 124 61 / 75%) 100%);
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bank-slider-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 45px; /* Side spacing for navigation buttons arrows */
    position: relative;
    box-sizing: border-box;
}

/* Individual Card Design matching image_c152c2.png */
.service-icon-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-icon-card:hover {
    transform: translateY(-4px);
}

/* White Circle Container for Icon */
.icon-circle-wrapper {
    width: 75px;
    height: 75px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 12px rgba(1, 83, 49, 0.08);
    border: 1px solid rgba(1, 83, 49, 0.1);
    transition: all 0.3s ease;
}

.service-icon-card:hover .icon-circle-wrapper {
    box-shadow: 0px 6px 16px rgba(1, 83, 49, 0.16);
    border-color: #015331;
}

/* Icon Elements Styling (Wine/Maroon Shade Accent) */
.icon-circle-wrapper i {
    font-size: 28px;
    color: #8B1E23; 
}

/* Card Titles Text */
.service-card-title {
    margin-top: 14px;
    font-size: 13.5px;
    color: #015331; /* Bank Green Primary Typography */
    font-weight: bold;
    line-height: 1.4;
    max-width: 150px;
    word-wrap: break-word;
}

/* Custom Swiper Controls Adjustments */
.bank-slider-next, .bank-slider-prev {
    color: #015331 !important;
    width: 35px !important;
    height: 35px !important;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bank-slider-next::after, .bank-slider-prev::after {
    font-size: 14px !important;
    font-weight: bold;
}
.bank-slider-next { right: 5px !important; }
.bank-slider-prev { left: 5px !important; }

.bank-slider-pagination {
    bottom: -5px !important;
}
.bank-slider-pagination .swiper-pagination-bullet-active {
    background: #015331 !important;
}

/* --- MOBILE & TABLET ADAPTABILITY --- */
@media (max-width: 991px) {
    .bank-slider-container {
        padding: 0 25px;
    }
    .icon-circle-wrapper {
        width: 65px;
        height: 65px;
    }
    .icon-circle-wrapper i {
        font-size: 24px;
    }
    .service-card-title {
        font-size: 12px;
    }
    .bank-slider-next, .bank-slider-prev {
        display: none !important; /* Mobile view me dynamic swiper swipe handle comfortable hota h arrows se zyada */
    }
}

/* Unique Classes Base Styles to Avoid Module Clashes */
.dccb-announcement-app-section {
    width: 100%;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f4fbf8 0%, #e8f5f0 100%);
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
}

.dccb-combined-wrapper {
    width: 100%;
    max-width: 1240px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Left/Right balanced split */
    gap: 40px;
    align-items: center;
}

/* --- LEFT COLUMN: TABS SYSTEM --- */
.dccb-tabs-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dccb-tab-buttons-row {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #015331; /* Base Dark Green underline matching image layout */
    padding-left: 5px;
}

.dccb-tab-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    background-color: #e2e8f0;
    border: none;
    border-radius: 12px 12px 0 0; /* Tab curved edges */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* REQUESTED CHANGE: Green changed to Light Blue Gradient Button Header style */
.dccb-tab-btn.active {
    background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%); /* Premium Clean Light Blue Tint */
    color: #ffffff;
}

.dccb-tab-content-box {
    background-color: transparent;
    padding: 25px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dccb-tab-pane {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.dccb-tab-pane.dccb-active-pane {
    display: flex;
}

/* REQUESTED CHANGE: Clean Light Dashed Border Container for links */
.dccb-notice-list-item {
    border: 1.5px dashed #0284c7; /* Subtle matching dashed pattern */
    padding: 12px 18px;
    border-radius: 30px; /* Pillow oval shape tracking standard layout */
    background-color: rgba(255, 255, 255, 0.7);
    transition: background-color 0.2s ease;
}

.dccb-notice-list-item:hover {
    background-color: #ffffff;
}

.dccb-notice-list-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
}

.dccb-notice-list-item a i {
    color: #8B1E23; /* Wine red arrow icons */
    font-size: 12px;
}

.dccb-pdf-tag {
    color: #dc2626;
    font-weight: bold;
    font-size: 12px;
}

.dccb-tab-footer-row {
    margin-top: 10px;
}

.dccb-view-all-btn {
    display: inline-block;
    padding: 8px 24px;
    background-color: #8B1E23;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
}

/* --- RIGHT COLUMN: APP PROMOTION & TEXT AUTO SLIDER --- */
.dccb-app-branding-column {
    display: flex;
    align-items: center;
    gap: 25px;
    border-left: 1px solid rgba(1, 83, 49, 0.15); /* Clean center vertical divider rule */
    padding-left: 35px;
    width: 100%;
    box-sizing: border-box;
}

.dccb-mockup-holder {
    flex-shrink: 0;
    width: 160px;
    text-align: center;
}

.dccb-qr-image {
    
    height: auto;
    
    object-fit: contain;
}

.dccb-text-slider-holder {
    flex-grow: 1;
    overflow: hidden;
}

.dccb-text-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dccb-slide-heading {
    font-size: 22px;
    color: #8B1E23; /* Deep corporate wine red tone */
    margin: 0 0 10px 0;
    font-weight: bold;
}

.dccb-slide-desc {
    font-size: 14px;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.dccb-store-badges {
    display: flex;
    gap: 10px;
}

.dccb-store-badges img {
    height: 38px;
    width: auto;
}

/* --- RESPONSIVE BREAKPOINTS MAINTENANCE --- */
@media (max-width: 991px) {
    .dccb-combined-wrapper {
        grid-template-columns: 1fr; /* Stack vertically to secure column layouts */
        gap: 50px;
    }

    .dccb-app-branding-column {
        border-left: none;
        padding-left: 0;
        flex-direction: row; /* Keep mockup next to text on tablet layout */
    }
}

@media (max-width: 576px) {
    .dccb-tab-buttons-row {
        flex-direction: column;
        gap: 5px;
        border-bottom: none;
    }
    
    .dccb-tab-btn {
        border-radius: 4px;
        width: 100%;
        text-align: left;
    }

    .dccb-app-branding-column {
        flex-direction: column; /* Stack completely centered for tight mobile displays */
        align-items: center;
        text-align: center;
    }

    .dccb-store-badges {
        justify-content: center;
    }
}

.dccb-announcement-app-section {
    width: 100%;
    padding: 50px 0;
    background: linear-gradient(rgb(255 245 0 / 28%) 0, rgb(255 255 253) 51%, rgb(0 124 61 / 75%) 100%);
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* --- LEFT SIDE DESIGN STYLES --- */
.dccb-tabs-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dccb-tab-buttons-row {
    display: flex;
    gap: 10px;
    border-bottom: 2px solid #015331;
    padding-left: 5px;
}

.dccb-tab-btn {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: bold;
    color: #333333;
    background-color: #e2e8f0;
    border: none;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dccb-tab-btn.active {
    background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
    color: #ffffff;
}

.dccb-tab-content-box {
    width: 100%;
    background-color: transparent;
    padding: 25px 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dccb-tab-pane {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.dccb-tab-pane.dccb-active-pane {
    display: flex;
}

.dccb-notice-list-item {
    width: 100%;
    border: 1.5px dashed #0284c7;
    padding: 14px 20px;
    border-radius: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.dccb-notice-list-item:hover {
    background-color: #ffffff;
}

.dccb-notice-list-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333333;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
}

.dccb-notice-list-item a i {
    color: #8B1E23;
    font-size: 12px;
}

.dccb-pdf-tag {
    color: #dc2626;
    font-weight: bold;
    font-size: 12px;
}

.dccb-tab-footer-row {
    margin-top: 10px;
}

.dccb-view-all-btn {
    display: inline-block;
    padding: 8px 24px;
    background-color: #8B1E23;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    border-radius: 20px;
}

/* --- RIGHT SIDE DESIGN STYLES --- */
.dccb-app-branding-column {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop layout rules wrapper divider */
@media (min-width: 768px) {
    .dccb-app-branding-column {
        border-left: 1px solid rgba(1, 83, 49, 0.15);
        padding-left: 35px;
    }
}

.dccb-mockup-holder {
    flex-shrink: 0;
    width: 140px;
    text-align: center;
}

.dccb-qr-image {
   
    height: auto;
   
    object-fit: contain;
}

.dccb-text-slider-holder {
    flex-grow: 1;
    overflow: hidden;
}

.dccb-text-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dccb-slide-heading {
    font-size: 21px;
    color: #8B1E23;
    margin: 0 0 10px 0;
    font-weight: bold;
}

.dccb-slide-desc {
    font-size: 13.5px;
    color: #555555;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.dccb-store-badges {
    display: flex;
    gap: 10px;
}

.dccb-store-badges img {
    height: 36px;
    width: auto;
}

/* --- RESPONSIVE FIXES VIA CSS --- */
@media (max-width: 767px) {
    .dccb-app-branding-column {
        padding-top: 20px;
    }
}

@media (max-width: 576px) {
    .dccb-tab-buttons-row {
        flex-direction: column;
        gap: 5px;
        border-bottom: none;
    }
    
    .dccb-tab-btn {
        border-radius: 4px;
        width: 100%;
        text-align: left;
    }

    .dccb-app-branding-column {
        flex-direction: column;
        text-align: center;
    }

    .dccb-store-badges {
        justify-content: center;
    }
}

/* Fix height and enable vertical scrolling only for active pane */
.dccb-tab-pane {
    display: none; /* Default hidden */
    height: 250px; /* Height ko kam kiya hai taki kam content me bhi scroll ho */
    overflow-y: scroll; /* 'auto' ki jagah 'scroll' kiya taki scrollbar hamesha visible rahe */
    padding: 10px 15px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Mobile responsive touch scroll */
}

/* --- ULTRA THIN & COLOURED SCROLLBAR --- */

/* 1. Chrome, Safari, Edge aur Opera ke liye */
.dccb-tab-pane::-webkit-scrollbar {
    width: 4px; /* Scrollbar ko ekdum patla (thin) karne ke liye */
}

/* Scrollbar ka piche ka rasta (Track) */
.dccb-tab-pane::-webkit-scrollbar-track {
    background: #f1f3f5; /* Light grey premium background */
    border-radius: 10px;
}

/* Scrollbar ka chalne wala hissa (Thumb/Pointer) */
.dccb-tab-pane::-webkit-scrollbar-thumb {
    background: #0056b3; /* Bank ka professional primary blue color */
    border-radius: 10px; /* Fully rounded edges smooth look ke liye */
    border: none;
}

/* Jab user scrollbar par mouse le jaye (Hover State) */
.dccb-tab-pane::-webkit-scrollbar-thumb:hover {
    background: #003d82; /* Hover karne par thoda dark blue */
}


/* 2. Firefox browser ke liye compatibility */
.dccb-tab-pane {
    scrollbar-width: thin; /* Firefox me automatic patla karne ke liye */
    scrollbar-color: #1b6b69 #f1f3f5; /* thumb-color track-color */
}

/* --- PREMIUM EXECUTIVE SHOWCASE STYLES --- */
.dccb-team-showcase-section {
    width: 100%;
    padding: 85px 0;
    /* Soft premium gradient mix for modern look */
    background: linear-gradient(135deg, #f9fbf9 0%, #f1f6f3 100%);
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
}

/* Headings Alignment */
.dccb-team-main-title {
    font-size: 36px;
    color: #000; /* Bank Theme Green */
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.dccb-team-title-line {
    width: 50px;
    height: 4px;
    background-color: #8B1E23; /* Corporate Red Accent */
    margin: 0 auto 22px auto;
    border-radius: 2px;
}

.dccb-team-subtitle {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 55px;
}

/* Profiles Grid Arrangement */
.dccb-team-grid {
    margin-top: 10px;
}

.dccb-member-profile-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align:center;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Ultra-smooth crisp corporate box shadow */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(1, 83, 49, 0.05);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Container Frame (Safe & Sleek Layout) */
.dccb-member-img-box {
    position: relative;
    width: 100%;
    /*height: 280px;*/
    border-radius: 12px;
    overflow: hidden;
    background-color: #f8fafc;
}

.dccb-member-photo {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Direct Image mapping without distortions */
    transition: transform 0.6s ease;
}

/* Micro interaction layout: border pops up inside image on hover */
.dccb-member-subtle-border {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    /*border: 1px solid rgba(255, 255, 255, 0.25);*/
    border-radius: 8px;
    pointer-events: none;
    transition: all 0.4s ease;
}

/* Name & Designation Details Wrap */
.dccb-member-meta-info {
    text-align: center;
    padding: 20px 5px 5px 5px;
    width: 100%;
}

.dccb-member-name {
    font-size: 17px;
    color: #222222;
    font-weight: 700;
    margin: 0 0 6px 0;
    transition: color 0.3s ease;
}

.dccb-member-designation {
    font-size: 13px;
    color: #8B1E23; /* Dynamic color accent */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

/* --- INTERACTIVE HOVER BEHAVIOR --- */
.dccb-member-profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(1, 83, 49, 0.08);
}

.dccb-member-profile-card:hover .dccb-member-photo {
    transform: scale(1.05);
}

.dccb-member-profile-card:hover .dccb-member-subtle-border {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-color: rgba(1, 83, 49, 0.2);
    border-radius: 12px;
}

.dccb-member-profile-card:hover .dccb-member-name {
    color: #015331;
}

/* --- MOBILE RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 991px) {
    .dccb-team-main-title { font-size: 30px; }
    .dccb-member-img-box { height: 250px; }
}

@media (max-width: 576px) {
    .dccb-team-showcase-section { padding: 55px 0; }
    .dccb-team-main-title { font-size: 24px; }
    .dccb-team-subtitle { font-size: 14px; margin-bottom: 35px; }
    .dccb-member-img-box { height: 290px; } /* Mobile display ratios fixed */
}

/* --- WAY TO BANK SLIDER SECTION --- */
.dccb-waybank-section {
    width: 100%;
    padding: 0px 0;
    /*background-color:#f5f5f5;*/
    font-family: 'Arial', sans-serif;
    box-sizing: border-box;
    overflow: hidden;
    margin-top:-50px;
}

/* Headings Styling */
.dccb-waybank-title {
    font-size: 28px;
    color: #1a1060; /* Dark premium blue-purple shade */
    font-weight: 700;
    margin-bottom: 5px;
}

.dccb-waybank-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 40px;
}

/* Swiper Container Adjustment */
.dccb-waybank-swiper {
    padding: 15px 40px !important; /* Spacing for navigation layout arrows */
    position: relative;
}

/* Swiper Slide Frame */
.dccb-waybank-swiper .swiper-slide {
    position: relative;
    height: auto;
}

/* --- THE GRADIENT CARD BOX --- */
.dccb-waybank-card {
    /* Exact pastel color scheme gradient match from reference image */
    background: linear-gradient(135deg, #dce8f4 0%, #e2d6ea 50%, #f7d5e4 100%);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 180px; /* Uniform exact box sizing */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.6);
}

/* Left Content Column Layout */
.dccb-waybank-card-left {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.dccb-waybank-card-title {
    font-size: 18px;
    color: #111111;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.dccb-waybank-card-desc {
    font-size: 13px;
    color: #555555;
    margin: 0 0 18px 0;
}

/* Button UI styling */
.dccb-waybank-btn-group {
    display: flex;
    gap: 10px;
}

.dccb-waybank-btn {
    background-color: #ffffff;
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: background-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dccb-waybank-btn.btn-outline {
    background-color: transparent;
    border: 1px solid #ffffff;
    box-shadow: none;
}

.dccb-waybank-btn:hover {
    background-color: #1a1060;
    color: #ffffff;
}

/* Right Side PNG Image Frame Placement */
.dccb-waybank-card-right {
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.dccb-waybank-png-img {
    max-width: 110%;
    max-height: 135px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* Interactive Card Zoom Effects */
.dccb-waybank-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(26, 16, 96, 0.08);
}

.dccb-waybank-card:hover .dccb-waybank-png-img {
    transform: scale(1.05);
}

/* New Badge Tag Indicator Style */
.swiper-badge-new {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #ea580c;
    color: #ffffff;
    font-size: 9px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
}

/* --- SWIPER NAVIGATION CUSTOM ARROWS (Circular outline style) --- */
.dccb-waybank-nav-prev,
.dccb-waybank-nav-next {
    width: 40px !important;
    height: 40px !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    top: 55% !important;
}

.dccb-waybank-nav-prev::after,
.dccb-waybank-nav-next::after {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #c026d3 !important; /* Vibrant magenta pointer tone */
}

.dccb-waybank-nav-prev { left: 0px !important; }
.dccb-waybank-nav-next { right: 0px !important; }

/* --- RESPONSIVE TOUCH MEDIA BREAKPOINTS --- */
@media (max-width: 1200px) {
    .dccb-waybank-card { padding: 20px; }
    .dccb-waybank-card-title { font-size: 16px; }
}

@media (max-width: 768px) {
    .dccb-waybank-swiper { padding: 15px 0px !important; }
    .dccb-waybank-nav-prev, .dccb-waybank-nav-next { display: none !important; } /* Hide layout buttons on touchscreens */
    .dccb-waybank-card { height: 160px; }
    .dccb-waybank-png-img { max-height: 110px; }
}

@media (max-width: 480px) {
    .dccb-waybank-card {
        flex-direction: row; 
        padding: 15px;
        height: 150px;
    }
    .dccb-waybank-card-title { font-size: 14px; }
    .dccb-waybank-card-desc { font-size: 11px; margin-bottom: 12px; }
    .dccb-waybank-btn { padding: 6px 12px; font-size: 11px; }
    .dccb-waybank-png-img { max-height: 90px; max-width: 120%; }
}

.blog-one--home1
{
    margin-top:-80px;
}

.banner-section{
    width:100%;
    overflow:hidden;
}

.banner-section img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
}

.loan-banner-section{
    background:#ecede7;
    padding:40px 15px;
    display:flex;
    justify-content:center;
    align-items:center;
}

.loan-banner-section img{
    max-width:100%;
    height:auto;
    display:block;
}

/* Optional: Agar image ki maximum width fix karni ho */
@media (min-width:992px){
    .loan-banner-section img{
        max-width:1200px;
    }
}

.blog-card__content
{
    padding: 0px 72px 14px;
    margin-top: 20px;
}

.bankQuickWrap{
    position:fixed;
    right:25px;
    bottom:25px;
    z-index:99999;
}

/* ICON */

.bankQuickIcon{

    position:relative;
    width:82px;
    height:82px;
    cursor:pointer;

}

.bankQuickIcon img{

    width:82px;
    height:82px;
    object-fit:contain;
    
    position:relative;
    z-index:3;
    animation:bankFloat 2.5s infinite;

}

/* Pulse */

.bankQuickPing{

    position:absolute;
    width:82px;
    height:82px;
    border-radius:50%;
    background:#0c7b3d;
    opacity:.30;
    animation:bankPulse 2s infinite;

}

@keyframes bankPulse{

0%{
transform:scale(.9);
opacity:.6;
}

70%{
transform:scale(1.45);
opacity:0;
}

100%{
transform:scale(1.45);
opacity:0;
}

}

@keyframes bankFloat{

0%{
transform:translateY(0px);
}

50%{
transform:translateY(-8px);
}

100%{
transform:translateY(0px);
}

}


/* POPUP */

.bankQuickPopup{

    position:absolute;
    bottom:95px;
    right:0;

    width:320px;

    background:#fff;

    border-radius:18px;

    box-shadow:0 15px 50px rgba(0,0,0,.20);

    display:none;

    overflow:hidden;

    animation:popupShow .35s;

}

@keyframes popupShow{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.bankQuickHeader{

background:#0c4891;

display:flex;

justify-content:space-between;

align-items:center;

padding:0px 18px;

}

.bankQuickTitle img{

height:48px;

}

.bankQuickClose{

background:none;

border:none;

font-size:28px;

color:#fff;

cursor:pointer;

}

.bankQuickPopup form{

padding:18px;

}

.bankQuickPopup input,
.bankQuickPopup select,
.bankQuickPopup textarea{

width:100%;

padding:12px 14px;

margin-bottom:12px;

border:1px solid #ddd;

border-radius:8px;

outline:none;

font-size:14px;

}

.bankQuickPopup textarea{

resize:none;

}

.bankQuickPopup button[type=submit]{

width:100%;

background:#0c4891;

color:#fff;

padding:12px;

border:none;

border-radius:8px;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.bankQuickPopup button[type=submit]:hover{

background:#08632d;

}


/* Mobile */

@media(max-width:768px){

.bankQuickWrap{

right:15px;
bottom:15px;

}

.bankQuickPopup{

width:290px;

}

.bankQuickIcon img,
.bankQuickIcon,
.bankQuickPing{

width:70px;
height:70px;

}

}

/* Desktop */
.dccb-mobile-quick-icon{
    display:none;
}

/* Mobile */
@media (max-width:991px){

.dccb-lower-menu-row{
    display:flex;
    align-items:center;
}

.dccb-mobile-hamburger-trigger{
    margin-left:auto;
}

.dccb-mobile-quick-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-left:10px;
}

.dccb-mobile-quick-icon img{
   
    border-radius:50%;
    animation:dccbPulse 2s infinite;
}

}

@keyframes dccbPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}

/* Sticky Navigation */

.navigation-bar{
    position:relative;
    width:100%;
    z-index:999;
    transition:all .35s ease;
}

.navigation-bar.nav-sticky{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#074796;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
    animation:stickyMenu .4s ease;
    z-index:99999;
}

@keyframes stickyMenu{
    from{
        transform:translateY(-100%);
    }
    to{
        transform:translateY(0);
    }
}

.bank-form-wrapper{
    max-width:1100px;
    margin:0 auto;
}

.bank-form-box{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    border:1px solid #e5eaf2;
    border-radius:12px;
    background:#fff;
    height:100%;
    transition:0.3s;
}

.bank-form-box:hover{
    border-color:#0c4a96;
    box-shadow:0 8px 20px rgba(12,74,150,.08);
}

.bank-form-sr{
    width:36px;
    height:36px;
    min-width:36px;
    border-radius:50%;
    background:#0c4a96;
    color:#fff;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bank-form-name{
    flex:1;
    font-size:14px;
    font-weight:600;
    color:#222;
    line-height:1.4;
}

.bank-form-download{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    border:1px solid #dbe3f0;
    color:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:0.3s;
}

.bank-form-download:hover{
    background:#0c4a96;
    color:#fff;
    border-color:#0c4a96;
}

.dccbInsuranceSection{
    padding:80px 0;
    background:#f5f8fd;
}

.dccbInsuranceHeader{
    text-align:center;
    max-width:900px;
    margin:0 auto 40px;
}

.dccbInsuranceHeader h3{
    font-size:32px;
    font-weight:700;
    color:#0c4a96;
    margin-bottom:20px;
    line-height:1.5;
}

.dccbInsuranceHeader p{
    font-size:16px;
    color:#666;
}

.dccbInsuranceTableWrap{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.dccbInsuranceTableHead{
    display:grid;
    grid-template-columns:120px 1fr;
    background:linear-gradient(135deg,#0c4a96,#1565c0);
    color:#fff;
    font-size:18px;
    font-weight:700;
}

.dccbInsuranceTableHead div{
    padding:22px 25px;
}

.dccbInsuranceRow{
    display:grid;
    grid-template-columns:120px 1fr;
    align-items:center;
    border-bottom:1px solid #edf2f7;
    transition:.3s;
}

.dccbInsuranceRow:last-child{
    border-bottom:none;
}

.dccbInsuranceRow:hover{
    background:#f8fbff;
    transform:translateX(5px);
}

.dccbInsuranceSerial{
    font-size:22px;
    font-weight:700;
    color:#0c4a96;
    text-align:center;
    padding:22px;
}

.dccbInsuranceName{
    padding:22px 25px;
    font-size:18px;
    font-weight:600;
    color:#333;
    display:flex;
    align-items:center;
    gap:15px;
}

.dccbInsuranceName i{
    width:50px;
    height:50px;
    background:#e8f1ff;
    color:#0c4a96;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

@media(max-width:767px){

    .dccbInsuranceHeader h3{
        font-size:24px;
    }

    .dccbInsuranceTableHead{
        display:none;
    }

    .dccbInsuranceRow{
        grid-template-columns:1fr;
        margin:15px;
        border-radius:15px;
        border:1px solid #e5e5e5;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,.05);
    }

    .dccbInsuranceSerial{
        background:#0c4a96;
        color:#fff;
        padding:12px;
        font-size:18px;
    }

    .dccbInsuranceName{
        padding:20px;
        font-size:16px;
    }
}

.bccbBankProductSection{
    padding:80px 0;
    background:#f5f8fd;
}

.bccbSectionTitle span{
    display:inline-block;
    background:#e8f1ff;
    color:#0c4a96;
    padding:8px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.bccbSectionTitle h2{
    font-size:42px;
    font-weight:700;
    color:#0c4a96;
    margin-bottom:15px;
}

.bccbSectionTitle p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:16px;
}

.bccbProductCard{
    background:#fff;
    border-radius:22px;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:all .35s ease;
    position:relative;
}

.bccbProductCard:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.15);
}

.bccbProductTop{
    position:relative;
    height:220px;
    overflow:hidden;
}

.bccbProductTop img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.bccbProductCard:hover .bccbProductTop img{
    transform:scale(1.08);
}

.bccbProductIcon{
    width:75px;
    height:75px;
    background:#0c4a96;
    border-radius:50%;
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    left:25px;
    bottom:-38px;
    border:5px solid #fff;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.bccbProductBody{
    padding:55px 25px 25px;
}

.bccbProductBody h4{
    font-size:24px;
    font-weight:700;
    color:#222;
    margin-bottom:20px;
}

.bccbProductBody ul{
    list-style:none;
    padding:0;
    margin:0;
}

.bccbProductBody ul li{
    position:relative;
    padding:10px 0 10px 28px;
    border-bottom:1px solid #edf1f7;
    color:#555;
    font-size:15px;
}

.bccbProductBody ul li:last-child{
    border-bottom:none;
}

.bccbProductBody ul li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:10px;
    width:18px;
    height:18px;
    background:#e8f1ff;
    color:#0c4a96;
    border-radius:50%;
    font-size:11px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.bccbBtnEnquiry{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:100%;
    margin-top:25px;
    padding:14px 20px;
    background:linear-gradient(135deg,#0c4a96,#1565c0);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    border-radius:50px;
    transition:.3s;
}

.bccbBtnEnquiry:hover{
    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(12,74,150,.25);
}

.bccbBtnEnquiry::after{
    content:" →";
    margin-left:8px;
}

@media(max-width:1199px){

    .bccbProductTop{
        height:200px;
    }

}

@media(max-width:991px){

    .bccbSectionTitle h2{
        font-size:34px;
    }

    .bccbProductBody h4{
        font-size:22px;
    }

}

@media(max-width:767px){

    .bccbBankProductSection{
        padding:60px 0;
    }

    .bccbSectionTitle h2{
        font-size:28px;
    }

    .bccbSectionTitle p{
        font-size:14px;
    }

    .bccbProductTop{
        height:190px;
    }

    .bccbProductBody{
        padding:50px 20px 20px;
    }

    .bccbProductBody h4{
        font-size:20px;
    }

    .bccbProductBody ul li{
        font-size:14px;
        padding-left:25px;
    }
}

.bccbProductCard{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:350px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.4s;
}

.bccbProductTop{
    position:relative;
    height:100%;
}

.bccbProductTop img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.bccbProductCard:hover img{
    transform:scale(1.1);
}

.bccbProductBody{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:35px;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.75),
        rgba(0,0,0,.15)
    );
    color:#fff;
    transform:translateY(calc(100% - 85px));
    transition:.5s ease;
    max-height:100%;
    overflow-y:auto;
}

.bccbProductCard:hover .bccbProductBody{
    transform:translateY(0);
}

.bccbProductBody h4{
    color:#fff;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
}

.bccbProductBody ul{
    list-style:none;
    padding:0;
    margin:0;
}

.bccbProductBody ul li{
    color:#fff;
    font-size:14px;
    padding:7px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

.bccbProductBody ul li:last-child{
    border-bottom:none;
}

.bccbProductBody ul li::before{
    content:"✓";
    color:#fff;
    margin-right:10px;
    font-weight:700;
}

.bccbBtnEnquiry{
    display:inline-block;
    margin-top:18px;
    padding:12px 25px;
    background:#ffffff;
    color:#0c4a96;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.bccbBtnEnquiry:hover{
    background:#0c4a96;
    color:#fff;
}

.bccbProductIcon{
    position:absolute;
    top:20px;
    right:20px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:26px;
    z-index:2;
}

@media(max-width:991px){
    .bccbProductCard{
        height:320px;
    }
}
.bccbProductBody ul li
{
    padding:7px 27px;
}
@media(max-width:767px){
    .bccbProductCard{
        height:300px;
    }

    .bccbProductBody{
        transform:translateY(calc(100% - 75px));
        padding:20px;
    }

    .bccbProductBody h4{
        font-size:20px;
    }

    .bccbProductBody ul li{
        font-size:13px;
    }
}

.bccb-enquiry-section{
    background:#f5f8fd;
}

.bccb-enquiry-wrapper{
    background:#ffffff;
    padding:50px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.bccb-enquiry-header h2{
    font-size:38px;
    font-weight:700;
    color:#0c4a96;
}

.bccb-enquiry-header p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.bccb-enquiry-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e8f1ff;
    color:#0c4a96;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.bccb-form-group label{
    display:block;
    margin-bottom:10px;
    font-weight:600;
    color:#222;
}

.bccb-form-control{
    width:100%;
    height:55px;
    border:1px solid #d9e2ef;
    border-radius:12px;
    padding:0 20px;
    outline:none;
    transition:.3s;
}

.bccb-form-control:focus{
    border-color:#0c4a96;
    box-shadow:0 0 0 4px rgba(12,74,150,.10);
}

.bccb-textarea{
    height:130px;
    padding-top:15px;
    resize:none;
}

.bccb-checkbox{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.bccb-submit-btn{
    background:#0c4a96;
    color:#fff;
    border:none;
    padding:15px 45px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
}

.bccb-submit-btn:hover{
    background:#083873;
}

.bccbFinanceSection{
    padding:80px 0;
    background:#f5f9ff;
}

.bccbFinanceHeading{
    text-align:center;
    margin-bottom:40px;
}

.bccbFinanceHeading span{
    display:inline-block;
    padding:8px 22px;
    background:#eaf2ff;
    color:#0c4a96;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:15px;
}

.bccbFinanceHeading h2{
    font-size:42px;
    font-weight:700;
    color:#0c4a96;
    margin-bottom:12px;
}

.bccbFinanceHeading p{
    color:#666;
    max-width:700px;
    margin:auto;
}

.bccbFinanceTableWrapper{
    overflow-x:auto;
    background:#fff;
    border-radius:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.bccbFinanceTable{
    width:100%;
    min-width:1100px;
    border-collapse:collapse;
}

.bccbFinanceTable thead{
    background:linear-gradient(135deg,#0c4a96,#1565c0);
    color:#fff;
}

.bccbFinanceTable thead th{
    padding:22px 18px;
    font-size:15px;
    font-weight:600;
    text-align:center;
    white-space:nowrap;
    position:sticky;
    top:0;
    z-index:10;
}

.bccbFinanceTable tbody td{
    padding:18px;
    text-align:center;
    border-bottom:1px solid #edf2f7;
    font-size:15px;
    color:#555;
    transition:.3s;
}

.bccbFinanceTable tbody td:nth-child(2){
    text-align:left;
    font-weight:600;
    color:#222;
}

.bccbFinanceTable tbody tr:nth-child(even){
    background:#f8fbff;
}

.bccbFinanceTable tbody tr:hover{
    background:#eaf3ff;
}

.bccbFinanceTable tbody tr:hover td{
    color:#0c4a96;
}

.bccbFinanceTable tbody td:first-child{
    font-weight:700;
    color:#0c4a96;
}

.bccbFinanceNote{
    margin-top:20px;
    text-align:right;
    color:#666;
    font-size:14px;
    font-style:italic;
}

.bccbFinanceTableWrapper::-webkit-scrollbar{
    height:8px;
}

.bccbFinanceTableWrapper::-webkit-scrollbar-track{
    background:#e8eef8;
    border-radius:20px;
}

.bccbFinanceTableWrapper::-webkit-scrollbar-thumb{
    background:#0c4a96;
    border-radius:20px;
}

@media(max-width:991px){

    .bccbFinanceHeading h2{
        font-size:32px;
    }

    .bccbFinanceTable{
        min-width:1000px;
    }
}
.gallery-page__title{
    text-align:center;
    font-size:18px;
    font-weight:600;
    color:#222;
    padding:18px 15px 5px;
    line-height:1.4;
    transition:0.3s;
}

.gallery-page__card:hover .gallery-page__title{
    color:#0c4a96;
}
.gallery-page__content{
    padding:0 20px 25px;
    text-align:center;
}

.gallery-page__title{
    text-align:center;
    font-size:18px;
    font-weight:600;
    color:#222;
    padding:18px 15px 8px;
    line-height:1.4;
    transition:all .3s ease;
}

.gallery-page__desc{
    font-size:14px;
    color:#666;
    line-height:1.8;
    margin:0;
    transition:all .3s ease;
}

.gallery-page__card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:all .4s ease;
    height:100%;
}

.gallery-page__card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(12,74,150,.18);
}

.gallery-page__card:hover .gallery-page__title{
    color:#0c4a96;
}

.gallery-page__card:hover .gallery-page__desc{
    color:#444;
}
.company-details{
    font-size:13px;
    color:#666;
    line-height:1.6;
    text-align:center;
}

.company-details strong{
    color:#222;
    font-weight:600;
}

/**********************************login***********************/
.login-section-custom::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    top:-100px;
    left:-100px;
}

.login-section-custom::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

.login-section-custom{
   
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 15px;
}

.login-container-custom{
    width:100%;
    max-width:420px;
    padding:45px 35px;
    border-radius:25px;
    background:linear-gradient(135deg,#0c4a96,#1d72d8);
    box-shadow:0 15px 50px rgba(12,74,150,.25);
    text-align:center;
    position:relative;
    overflow:hidden;
}

.login-container-custom::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,.12);
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.login-container-custom::after{
    content:'';
    position:absolute;
    width:140px;
    height:140px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    bottom:-50px;
    left:-50px;
}

.login-container-custom>*{
    position:relative;
    z-index:2;
}

.login-container-custom:hover{
    transform:translateY(-8px);
}

.login-icon-custom{
    width:90px;
    height:90px;
    margin:0 auto 20px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
    color:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.login-container-custom h2{
    color:#fff;
    font-size:30px;
    margin-bottom:8px;
    font-weight:700;
}

.login-container-custom p{
    color:rgba(255,255,255,.85);
    margin-bottom:30px;
    font-size:15px;
}

.login-input-group-custom{
    position:relative;
    margin-bottom:20px;
}

.login-input-group-custom i{
    position:absolute;
    left:18px;
    top:50%;
    transform:translateY(-50%);
    color:#0c4a96;
    font-size:16px;
}

.login-input-group-custom input{
    width:100%;
    height:55px;
    border:none;
    outline:none;
    border-radius:50px;
    padding:0 20px 0 50px;
    font-size:15px;
    background:rgba(255,255,255,.95);
    transition:.3s;
}

.login-input-group-custom input:focus{
    box-shadow:0 0 0 4px rgba(255,255,255,.25);
}

.login-btn-custom{
    width:100%;
    height:55px;
    border:none;
    border-radius:50px;
    background:linear-gradient(45deg,#ffb100,#ff7b00);
    color:#fff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    box-shadow:0 8px 20px rgba(255,123,0,.4);
}

.login-btn-custom:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(255,123,0,.5);
}

@media(max-width:576px){

    .login-container-custom{
        padding:35px 20px;
    }

    .login-icon-custom{
        width:75px;
        height:75px;
        font-size:28px;
    }

    .login-container-custom h2{
        font-size:24px;
    }

    .login-input-group-custom input,
    .login-btn-custom{
        height:50px;
    }
}
/************************close login*********************************/
@media(max-width:767px){
    .gallery-page__content{
        padding:0 15px 20px;
    }

    .gallery-page__title{
        font-size:16px;
        padding:15px 10px 6px;
    }

    .gallery-page__desc{
        font-size:13px;
        line-height:1.7;
    }
}
@media(max-width:767px){
    .gallery-page__title{
        font-size:16px;
        padding:15px 10px 5px;
    }
}
.blog-card-three__content
{
    width:auto;
    margin: -6px 0px 0px auto;
}
.blog-card-three__title
{
    text-align:center;
}


@media(max-width:767px){
    
    .company-details
    {
        display:none;
    }

    .bccbFinanceSection{
        padding:60px 0;
    }

    .bccbFinanceHeading h2{
        font-size:26px;
    }

    .bccbFinanceHeading p{
        font-size:14px;
    }

    .bccbFinanceTable thead th{
        padding:15px 12px;
        font-size:13px;
    }

    .bccbFinanceTable tbody td{
        padding:15px 12px;
        font-size:13px;
    }
}

.contactFormWrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 15px;
}

.contactFormCard{
    width:100%;
    max-width:650px;
    background:#ffffff;
    border-radius:25px;
    padding:40px;
    box-shadow:0 15px 50px rgba(0,0,0,0.12);
    position:relative;
    overflow:hidden;
    transition:0.4s ease;
}

.contactFormCard:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.contactFormCard::before{
    content:"";
    position:absolute;
    top:-100px;
    right:-100px;
    width:220px;
    height:220px;
    background:linear-gradient(135deg,#0B1F4D,#1e88e5);
    border-radius:50%;
    opacity:.08;
}

.contactFormCard::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:220px;
    height:220px;
    background:linear-gradient(135deg,#ffb300,#ff9800);
    border-radius:50%;
    opacity:.08;
}

.contactFormHeader{
    text-align:center;
    margin-bottom:35px;
}

.contactFormTag{
    display:inline-block;
    padding:8px 18px;
    background:#eef5ff;
    color:#0B1F4D;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.contactFormHeader h2{
    font-size:34px;
    font-weight:700;
    color:#0B1F4D;
    margin-bottom:10px;
}

.contactFormHeader p{
    color:#666;
    font-size:15px;
}

.contactInputGroup{
    position:relative;
    margin-bottom:25px;
}

.contactInputGroup input,
.contactInputGroup textarea{
    width:100%;
    border:2px solid #e5e5e5;
    border-radius:14px;
    padding:18px 55px 18px 18px;
    font-size:15px;
    outline:none;
    transition:0.3s;
    background:#fff;
}

.contactInputGroup textarea{
    resize:none;
}

.contactInputGroup input:focus,
.contactInputGroup textarea:focus{
    border-color:#0B1F4D;
    box-shadow:0 0 20px rgba(11,31,77,.12);
}

.contactInputGroup label{
    position:absolute;
    left:18px;
    top:18px;
    color:#888;
    background:#fff;
    padding:0 5px;
    transition:.3s;
    pointer-events:none;
}

.contactInputGroup input:focus + label,
.contactInputGroup input:not(:placeholder-shown) + label,
.contactInputGroup textarea:focus + label,
.contactInputGroup textarea:not(:placeholder-shown) + label{
    top:-10px;
    left:15px;
    font-size:12px;
    color:#0B1F4D;
    font-weight:600;
}

.contactInputGroup i{
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    color:#0B1F4D;
    font-size:18px;
}

.contactInputGroup textarea ~ i{
    top:28px;
    transform:none;
}

.contactSubmitBtn{
    width:100%;
    height:58px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#0B1F4D,#1e88e5);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

.contactSubmitBtn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(30,136,229,.35);
}

.contactSubmitBtn i{
    margin-left:8px;
}

/* Responsive */

@media(max-width:768px){

    .contactFormCard{
        padding:30px 20px;
        border-radius:20px;
    }

    .contactFormHeader h2{
        font-size:28px;
    }

    .contactInputGroup input,
    .contactInputGroup textarea{
        padding:16px 50px 16px 16px;
    }
}

.chequeFormWrapper{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:50px 15px;
}

.chequeFormCard{
    width:100%;
    max-width:650px;
    background:linear-gradient(135deg,#ffffff,#f7faff);
    border-radius:25px;
    padding:40px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 45px rgba(0,0,0,0.12);
    transition:0.4s;
}

.chequeFormCard:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

.chequeFormCard::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:linear-gradient(135deg,#0d6efd,#4dabf7);
    border-radius:50%;
    top:-100px;
    right:-100px;
    opacity:.08;
}

.chequeFormCard::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:linear-gradient(135deg,#ffc107,#ff9800);
    border-radius:50%;
    bottom:-100px;
    left:-100px;
    opacity:.08;
}

.chequeFormHeader{
    text-align:center;
    margin-bottom:35px;
}

.chequeFormBadge{
    display:inline-block;
    padding:8px 18px;
    background:#eaf3ff;
    color:#0d6efd;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.chequeFormHeader h2{
    font-size:34px;
    font-weight:700;
    color:#0b2d5c;
    margin-bottom:10px;
}

.chequeFormHeader p{
    color:#777;
    font-size:15px;
}

.chequeInputBox{
    position:relative;
    margin-bottom:25px;
}

.chequeInputBox input{
    width:100%;
    height:58px;
    border:2px solid #e6eaf0;
    border-radius:15px;
    padding:0 55px 0 18px;
    font-size:15px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.chequeInputBox input:focus{
    border-color:#0d6efd;
    box-shadow:0 0 20px rgba(13,110,253,.15);
}

.chequeInputBox label{
    position:absolute;
    left:18px;
    top:18px;
    background:#fff;
    padding:0 5px;
    color:#888;
    transition:.3s;
    pointer-events:none;
}

.chequeInputBox input:focus + label,
.chequeInputBox input:valid + label{
    top:-10px;
    left:15px;
    font-size:12px;
    color:#0d6efd;
    font-weight:600;
}

.activeLabel{
    top:-10px !important;
    left:15px !important;
    font-size:12px !important;
    color:#0d6efd !important;
    font-weight:600 !important;
}

.chequeInputBox i{
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    color:#0d6efd;
    font-size:18px;
}

.chequeSubmitBtn{
    width:100%;
    height:58px;
    border:none;
    border-radius:15px;
    background:linear-gradient(135deg,#0d6efd,#0056b3);
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.chequeSubmitBtn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(13,110,253,.35);
}

.chequeSubmitBtn i{
    margin-left:8px;
}

/* Responsive */
.downloadSection{
    padding:60px 0;
    background:#f7f9fc;
}

.downloadBox{
    width:100%;
    background:#fff;
    border-radius:18px;
    padding:22px 30px;
    margin-bottom:20px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    transition:all .35s ease;
    border-left:6px solid #0b90f6;
}

.downloadBox:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.downloadSr{
    min-width:50px;
    width:50px;
    height:50px;
    background:linear-gradient(135deg,#0b90f6,#0056b3);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
}

.downloadTitle{
    flex:1;
    padding:0 25px;
}

.downloadTitle h5{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#222;
}

.downloadTitle p{
    margin:5px 0 0;
    color:#777;
    font-size:14px;
}

.downloadAction a{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 28px;
    background:linear-gradient(135deg,#0b90f6,#0056b3);
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:all .3s ease;
}

.downloadAction a:hover{
    background:linear-gradient(135deg,#0056b3,#0b90f6);
    color:#fff;
    transform:scale(1.05);
}

.downloadAction i{
    font-size:15px;
}

/* Responsive */
.dbtFacilityBox{
    background: #f5f9ff;
    border: 1px solid #d7e7ff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.dbtFacilityHeader{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.dbtFacilityIcon{
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg,#0c4a96,#1976d2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.dbtFacilityHeader h3{
    font-size: 24px;
    margin: 0;
    color: #0c4a96;
    font-weight: 700;
}

.dbtFacilityHeader p{
    margin: 5px 0 0;
    color: #666;
    font-size: 13px;
}

.dbtFacilityText{
    font-size: 14px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.dbtSchemeGrid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin: 25px 0;
}

.dbtSchemeItem{
    background: #fff;
    border: 1px solid #e2ecfb;
    border-radius: 12px;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    transition: .3s;
}

.dbtSchemeItem:hover{
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.dbtSchemeItem i{
    color: #0c4a96;
    margin-right: 10px;
    width: 18px;
}

.dbtBenefitBox{
    background: #ffffff;
    border-left: 4px solid #0c4a96;
    padding: 18px;
    border-radius: 10px;
    margin-top: 20px;
}

.dbtBenefitBox h5{
    font-size: 17px;
    margin-bottom: 12px;
    color: #0c4a96;
}

.dbtBenefitBox ul{
    padding-left: 18px;
    margin: 0;
}

.dbtBenefitBox ul li{
    font-size: 14px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

.dbtBottomNote{
    margin-top: 20px;
    background: #fff7e8;
    border-left: 4px solid #f4a100;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:991px){

    .dbtFacilityBox{
        padding:20px;
    }

    .dbtSchemeGrid{
        grid-template-columns:1fr;
    }

    .dbtFacilityHeader{
        align-items:flex-start;
    }

    .dbtFacilityHeader h3{
        font-size:20px;
    }
}
.atmTransactionBox{
    background:#f8fbff;
    border:1px solid #dbe9ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.atmHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.atmIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.atmHeader h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.atmHeader p{
    margin:5px 0 0;
    font-size:13px;
    color:#666;
}

.atmText{
    font-size:14px;
    color:#555;
    line-height:1.9;
    margin-bottom:20px;
}

.atmServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:25px 0;
}

.atmServiceItem{
    background:#fff;
    border:1px solid #e2ecfb;
    border-radius:12px;
    padding:12px 15px;
    font-size:14px;
    color:#333;
    transition:.3s;
}

.atmServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.atmServiceItem i{
    color:#0c4a96;
    margin-right:10px;
    width:18px;
}

.atmBenefitBox{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
    margin-top:20px;
}

.atmBenefitBox h5{
    font-size:17px;
    color:#0c4a96;
    margin-bottom:12px;
}

.atmBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.atmBenefitBox ul li{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
    line-height:1.7;
}

.atmSecurityNote{
    margin-top:20px;
    background:#fff3e0;
    border-left:4px solid #ff9800;
    padding:15px;
    border-radius:10px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .atmTransactionBox{
        padding:20px;
    }

    .atmServiceGrid{
        grid-template-columns:1fr;
    }

    .atmHeader h3{
        font-size:20px;
    }
}

.rtgsNeftBox{
    background:#f7fbff;
    border:1px solid #d8eaff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.rtgsHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.rtgsIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.rtgsTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.rtgsTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.rtgsDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
}

.rtgsServices{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:25px 0;
}

.rtgsServiceItem{
    background:#fff;
    border:1px solid #e3edf9;
    padding:12px 15px;
    border-radius:12px;
    font-size:14px;
    transition:.3s;
}

.rtgsServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.rtgsServiceItem i{
    color:#0c4a96;
    margin-right:10px;
}

.rtgsInfoBox{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:20px;
}

.rtgsInfoCard{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
}

.rtgsInfoCard h5{
    margin-bottom:10px;
    color:#0c4a96;
    font-size:17px;
}

.rtgsInfoCard p{
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.8;
}

.rtgsBenefits{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
}

.rtgsBenefits h5{
    color:#0c4a96;
    margin-bottom:12px;
    font-size:17px;
}

.rtgsBenefits ul{
    margin:0;
    padding-left:18px;
}

.rtgsBenefits li{
    margin-bottom:10px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.rtgsNote{
    margin-top:20px;
    background:#fff5e8;
    border-left:4px solid #f4a100;
    padding:15px;
    border-radius:10px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .rtgsServices{
        grid-template-columns:1fr;
    }

    .rtgsInfoBox{
        grid-template-columns:1fr;
    }

    .rtgsTitle h3{
        font-size:20px;
    }
}

.microAtmBox{
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.microAtmHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.microAtmIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.microAtmTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.microAtmTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.microAtmDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
}

.microAtmServices{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin:25px 0;
}

.microAtmServiceItem{
    background:#fff;
    border:1px solid #e3edf9;
    padding:12px 15px;
    border-radius:12px;
    font-size:14px;
    transition:.3s;
}

.microAtmServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.microAtmServiceItem i{
    color:#0c4a96;
    margin-right:10px;
}

.microAtmFeatureBox{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:20px;
}

.microAtmFeatureCard{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
}

.microAtmFeatureCard h5{
    margin-bottom:10px;
    color:#0c4a96;
    font-size:17px;
}

.microAtmFeatureCard p{
    margin:0;
    font-size:14px;
    color:#555;
    line-height:1.8;
}

.microAtmBenefits{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
}

.microAtmBenefits h5{
    color:#0c4a96;
    margin-bottom:12px;
    font-size:17px;
}

.microAtmBenefits ul{
    margin:0;
    padding-left:18px;
}

.microAtmBenefits li{
    margin-bottom:10px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.microAtmNote{
    margin-top:20px;
    background:#fff5e8;
    border-left:4px solid #f4a100;
    padding:15px;
    border-radius:10px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .microAtmServices{
        grid-template-columns:1fr;
    }

    .microAtmFeatureBox{
        grid-template-columns:1fr;
    }

    .microAtmTitle h3{
        font-size:20px;
    }
}

.socialSchemeBox{
    background:#f8fbff;
    border:1px solid #dce9ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.socialSchemeHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.socialSchemeIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:24px;
}

.socialSchemeTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.socialSchemeTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.socialSchemeDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.schemeCards{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:25px;
}

.schemeCard{
    background:#fff;
    border:1px solid #e5eefb;
    border-radius:15px;
    padding:25px 20px;
    text-align:center;
    transition:.3s;
}

.schemeCard:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.schemeCardIcon{
    width:65px;
    height:65px;
    margin:0 auto 15px;
    border-radius:50%;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.schemeCard h5{
    font-size:18px;
    color:#0c4a96;
    margin-bottom:12px;
    font-weight:700;
}

.schemeCard p{
    font-size:13px;
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

.schemeTag{
    display:inline-block;
    padding:6px 14px;
    background:#e8f1ff;
    color:#0c4a96;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.schemeBenefits{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:10px;
}

.schemeBenefits h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:12px;
}

.schemeBenefits ul{
    margin:0;
    padding-left:18px;
}

.schemeBenefits ul li{
    margin-bottom:10px;
    color:#555;
    font-size:14px;
    line-height:1.7;
}

.schemeNote{
    margin-top:20px;
    background:#fff6e8;
    border-left:4px solid #f4a100;
    padding:15px;
    border-radius:10px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .schemeCards{
        grid-template-columns:1fr;
    }

    .socialSchemeTitle h3{
        font-size:20px;
    }
}

.kccCardBox{
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.kccHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.kccIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.kccTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.kccTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.kccDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.kccServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:25px;
}

.kccServiceItem{
    background:#fff;
    border:1px solid #e5eefb;
    border-radius:12px;
    padding:12px 15px;
    font-size:14px;
    color:#444;
    transition:.3s;
}

.kccServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.kccServiceItem i{
    color:#0c4a96;
    margin-right:10px;
}

.kccInfoCards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:25px;
}

.kccInfoCard{
    background:#fff;
    border-left:4px solid #0c4a96;
    border-radius:12px;
    padding:20px;
}

.kccInfoIcon{
    width:55px;
    height:55px;
    background:#eef5ff;
    color:#0c4a96;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.kccInfoCard h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:10px;
}

.kccInfoCard p{
    font-size:13px;
    color:#555;
    line-height:1.8;
}

.kccBenefitBox{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:12px;
}

.kccBenefitBox h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:12px;
}

.kccBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.kccBenefitBox ul li{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
    line-height:1.7;
}

.kccNoteBox{
    margin-top:20px;
    background:#fff5e9;
    border-left:4px solid #f5a000;
    border-radius:12px;
    padding:15px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .kccServiceGrid,
    .kccInfoCards{
        grid-template-columns:1fr;
    }

    .kccTitle h3{
        font-size:20px;
    }
}

.rupayCardBox{
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.rupayHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.rupayIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.rupayTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.rupayTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.rupayDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.rupayServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:25px;
}

.rupayServiceItem{
    background:#fff;
    border:1px solid #e5eefb;
    border-radius:12px;
    padding:12px 15px;
    font-size:14px;
    color:#444;
    transition:.3s;
}

.rupayServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.rupayServiceItem i{
    color:#0c4a96;
    margin-right:10px;
}

.rupayFeatureCards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:25px;
}

.rupayFeatureCard{
    background:#fff;
    border-left:4px solid #0c4a96;
    border-radius:12px;
    padding:20px;
}

.rupayFeatureIcon{
    width:55px;
    height:55px;
    background:#eef5ff;
    color:#0c4a96;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.rupayFeatureCard h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:10px;
}

.rupayFeatureCard p{
    font-size:13px;
    color:#555;
    line-height:1.8;
}

.rupayBenefitBox{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:12px;
}

.rupayBenefitBox h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:12px;
}

.rupayBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.rupayBenefitBox ul li{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
    line-height:1.7;
}

.rupayNoteBox{
    margin-top:20px;
    background:#fff5e9;
    border-left:4px solid #f5a000;
    border-radius:12px;
    padding:15px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .rupayServiceGrid,
    .rupayFeatureCards{
        grid-template-columns:1fr;
    }

    .rupayTitle h3{
        font-size:20px;
    }
}

.ecommerceBox{
    background:#f8fbff;
    border:1px solid #dbe8ff;
    border-radius:18px;
    padding:28px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.ecommerceHeader{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.ecommerceIcon{
    width:60px;
    height:60px;
    min-width:60px;
    border-radius:15px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.ecommerceTitle h3{
    margin:0;
    font-size:24px;
    color:#0c4a96;
    font-weight:700;
}

.ecommerceTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:13px;
}

.ecommerceDescription{
    font-size:14px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.ecommerceServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    margin-bottom:25px;
}

.ecommerceServiceItem{
    background:#fff;
    border:1px solid #e5eefb;
    border-radius:12px;
    padding:12px 15px;
    font-size:14px;
    color:#444;
    transition:.3s;
}

.ecommerceServiceItem:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.ecommerceServiceItem i{
    color:#0c4a96;
    margin-right:10px;
}

.ecommerceFeatureCards{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
    margin-bottom:25px;
}

.ecommerceFeatureCard{
    background:#fff;
    border-left:4px solid #0c4a96;
    border-radius:12px;
    padding:20px;
}

.ecommerceFeatureIcon{
    width:55px;
    height:55px;
    background:#eef5ff;
    color:#0c4a96;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    margin-bottom:15px;
}

.ecommerceFeatureCard h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:10px;
}

.ecommerceFeatureCard p{
    font-size:13px;
    color:#555;
    line-height:1.8;
}

.ecommerceBenefitBox{
    background:#fff;
    border-left:4px solid #0c4a96;
    padding:18px;
    border-radius:12px;
}

.ecommerceBenefitBox h5{
    color:#0c4a96;
    font-size:17px;
    margin-bottom:12px;
}

.ecommerceBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.ecommerceBenefitBox ul li{
    font-size:14px;
    color:#555;
    margin-bottom:10px;
    line-height:1.7;
}

.ecommerceNoteBox{
    margin-top:20px;
    background:#fff5e9;
    border-left:4px solid #f5a000;
    border-radius:12px;
    padding:15px;
    font-size:13px;
    color:#555;
    line-height:1.8;
}

/* Responsive */

@media(max-width:991px){

    .ecommerceServiceGrid,
    .ecommerceFeatureCards{
        grid-template-columns:1fr;
    }

    .ecommerceTitle h3{
        font-size:20px;
    }
}

.posBox{
    background:#ffffff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    border:1px solid #e9eef5;
}

.posHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.posIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1d72d8);
    display:flex;
    align-items:center;
    justify-content:center;
}

.posIcon i{
    color:#fff;
    font-size:34px;
}

.posTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.posTitle p{
    margin:6px 0 0;
    color:#666;
    font-size:15px;
}

.posDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.posServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
    margin-bottom:30px;
}

.posServiceItem{
    background:#f7faff;
    border:1px solid #dce8f8;
    padding:18px;
    border-radius:15px;
    text-align:center;
    font-weight:600;
    color:#0c4a96;
    transition:0.3s;
}

.posServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
    color:#0c4a96;
}

.posServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(12,74,150,0.15);
}

.posFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.posFeatureCard{
    background:#f9fbff;
    border-radius:18px;
    padding:25px;
    border-left:5px solid #0c4a96;
}

.posFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.posFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.posFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
    font-size:20px;
}

.posFeatureCard p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.posBenefitBox{
    background:#f7faff;
    border-radius:18px;
    padding:25px;
    margin-bottom:25px;
}

.posBenefitBox h5{
    color:#0c4a96;
    margin-bottom:20px;
    font-size:22px;
}

.posBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.posBenefitBox ul li{
    margin-bottom:12px;
    color:#555;
    line-height:1.8;
}

.posNoteBox{
    background:#fff4e5;
    border-left:5px solid #ff9800;
    padding:18px 20px;
    border-radius:12px;
    color:#7a4b00;
    line-height:1.8;
}

@media(max-width:991px){

    .posServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }
    
    .posFeatureCards{
        grid-template-columns:1fr;
    }

}

.currentAccountBox{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #e8eef7;
}

.currentAccountHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.currentAccountIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1976d2);
    display:flex;
    align-items:center;
    justify-content:center;
}

.currentAccountIcon i{
    color:#fff;
    font-size:34px;
}

.currentAccountTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.currentAccountTitle p{
    margin:5px 0 0;
    color:#666;
}

.currentAccountDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.currentAccountServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.currentAccountServiceItem{
    background:#f8fbff;
    border:1px solid #dbe8f7;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:.3s;
}

.currentAccountServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:10px;
}

.currentAccountServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(12,74,150,.15);
}

.currentAccountFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.currentAccountFeatureCard{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #0c4a96;
}

.currentAccountFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.currentAccountFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.currentAccountFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.currentAccountFeatureCard p{
    color:#666;
    line-height:1.8;
}

.currentAccountBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.currentAccountBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.currentAccountBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.currentAccountBenefitBox li{
    margin-bottom:12px;
    color:#555;
}

.currentAccountNoteBox{
    background:#fff8e7;
    border-left:5px solid #ffb300;
    padding:18px;
    border-radius:12px;
    color:#7b5600;
}

@media(max-width:991px){

    .currentAccountServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .currentAccountFeatureCards{
        grid-template-columns:1fr;
    }

}

.savingAccountBox{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #e8eef7;
}

.savingAccountHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.savingAccountIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1b72d1);
    display:flex;
    align-items:center;
    justify-content:center;
}

.savingAccountIcon i{
    color:#fff;
    font-size:34px;
}

.savingAccountTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.savingAccountTitle p{
    margin:5px 0 0;
    color:#666;
}

.savingAccountDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.savingAccountServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.savingAccountServiceItem{
    background:#f8fbff;
    border:1px solid #dce8f8;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:.3s;
}

.savingAccountServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.savingAccountServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(12,74,150,.15);
}

.savingAccountFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.savingAccountFeatureCard{
    background:#f8fbff;
    border-left:5px solid #0c4a96;
    border-radius:18px;
    padding:25px;
}

.savingAccountFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.savingAccountFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.savingAccountFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.savingAccountFeatureCard p{
    color:#666;
    line-height:1.8;
}

.savingAccountBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.savingAccountBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.savingAccountBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.savingAccountBenefitBox li{
    margin-bottom:12px;
    color:#555;
}

.savingAccountNoteBox{
    background:#eefaf0;
    border-left:5px solid #28a745;
    padding:18px;
    border-radius:12px;
    color:#1f5f2d;
}

@media(max-width:991px){

    .savingAccountServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .savingAccountFeatureCards{
        grid-template-columns:1fr;
    }

}

.termDepositBox{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    border:1px solid #e8eef7;
}

.termDepositHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.termDepositIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1a73e8);
    display:flex;
    align-items:center;
    justify-content:center;
}

.termDepositIcon i{
    color:#fff;
    font-size:34px;
}

.termDepositTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.termDepositTitle p{
    margin:5px 0 0;
    color:#666;
}

.termDepositDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.termDepositServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.termDepositServiceItem{
    background:#f8fbff;
    border:1px solid #dbe8f7;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:.3s;
}

.termDepositServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.termDepositServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 20px rgba(12,74,150,.15);
}

.termDepositFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.termDepositFeatureCard{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #0c4a96;
}

.termDepositFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.termDepositFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.termDepositFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.termDepositFeatureCard p{
    color:#666;
    line-height:1.8;
}

.termDepositBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.termDepositBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.termDepositBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.termDepositBenefitBox ul li{
    margin-bottom:12px;
    color:#555;
}

.termDepositNoteBox{
    background:#fff8e8;
    border-left:5px solid #f4b400;
    padding:18px;
    border-radius:12px;
    color:#7b5b00;
    line-height:1.8;
}

@media(max-width:991px){

    .termDepositServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .termDepositFeatureCards{
        grid-template-columns:1fr;
    }

}

.cashCreditBox{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #e8eef7;
}

.cashCreditHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.cashCreditIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1e88e5);
    display:flex;
    align-items:center;
    justify-content:center;
}

.cashCreditIcon i{
    color:#ffffff;
    font-size:34px;
}

.cashCreditTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.cashCreditTitle p{
    margin:5px 0 0;
    color:#666;
}

.cashCreditDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.cashCreditServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.cashCreditServiceItem{
    background:#f8fbff;
    border:1px solid #dbe8f7;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:.3s;
}

.cashCreditServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.cashCreditServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(12,74,150,.15);
}

.cashCreditFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.cashCreditFeatureCard{
    background:#f8fbff;
    border-left:5px solid #0c4a96;
    border-radius:18px;
    padding:25px;
}

.cashCreditFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.cashCreditFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.cashCreditFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.cashCreditFeatureCard p{
    color:#666;
    line-height:1.8;
}

.cashCreditBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.cashCreditBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.cashCreditBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.cashCreditBenefitBox ul li{
    margin-bottom:12px;
    color:#555;
}

.cashCreditNoteBox{
    background:#fff7e6;
    border-left:5px solid #ff9800;
    padding:18px;
    border-radius:12px;
    color:#7a5200;
    line-height:1.8;
}

@media(max-width:991px){

    .cashCreditServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .cashCreditFeatureCards{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .cashCreditBox{
        padding:20px;
    }

    .cashCreditHeader{
        justify-content:center;
        text-align:center;
    }

    .cashCreditTitle h3{
        font-size:22px;
    }

    .cashCreditServiceGrid{
        grid-template-columns:1fr;
    }

    .cashCreditIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .cashCreditIcon i{
        font-size:30px;
    }

}

.overdraftBox{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #e8eef7;
}

.overdraftHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.overdraftIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1e88e5);
    display:flex;
    align-items:center;
    justify-content:center;
}

.overdraftIcon i{
    color:#ffffff;
    font-size:34px;
}

.overdraftTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.overdraftTitle p{
    margin:5px 0 0;
    color:#666;
}

.overdraftDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.overdraftServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.overdraftServiceItem{
    background:#f8fbff;
    border:1px solid #dbe8f7;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:0.3s;
}

.overdraftServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.overdraftServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(12,74,150,.15);
}

.overdraftFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.overdraftFeatureCard{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #0c4a96;
}

.overdraftFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.overdraftFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.overdraftFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.overdraftFeatureCard p{
    color:#666;
    line-height:1.8;
}

.overdraftBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.overdraftBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.overdraftBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.overdraftBenefitBox ul li{
    margin-bottom:12px;
    color:#555;
}

.overdraftNoteBox{
    background:#fff8e8;
    border-left:5px solid #ff9800;
    padding:18px;
    border-radius:12px;
    color:#7a5200;
    line-height:1.8;
}

@media(max-width:991px){

    .overdraftServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .overdraftFeatureCards{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .overdraftBox{
        padding:20px;
    }

    .overdraftHeader{
        justify-content:center;
        text-align:center;
    }

    .overdraftTitle h3{
        font-size:22px;
    }

    .overdraftServiceGrid{
        grid-template-columns:1fr;
    }

    .overdraftIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .overdraftIcon i{
        font-size:30px;
    }

}

.homeLoanBox{
    background:#ffffff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #e8eef7;
}

.homeLoanHeader{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
    flex-wrap:wrap;
}

.homeLoanIcon{
    width:80px;
    height:80px;
    min-width:80px;
    border-radius:20px;
    background:linear-gradient(135deg,#0c4a96,#1e88e5);
    display:flex;
    align-items:center;
    justify-content:center;
}

.homeLoanIcon i{
    color:#fff;
    font-size:34px;
}

.homeLoanTitle h3{
    margin:0;
    color:#0c4a96;
    font-size:28px;
    font-weight:700;
}

.homeLoanTitle p{
    margin:5px 0 0;
    color:#666;
}

.homeLoanDescription{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.homeLoanServiceGrid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-bottom:30px;
}

.homeLoanServiceItem{
    background:#f8fbff;
    border:1px solid #dbe8f7;
    border-radius:15px;
    padding:18px;
    text-align:center;
    color:#0c4a96;
    font-weight:600;
    transition:.3s;
}

.homeLoanServiceItem i{
    display:block;
    font-size:28px;
    margin-bottom:12px;
}

.homeLoanServiceItem:hover{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(12,74,150,.15);
}

.homeLoanFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:30px;
}

.homeLoanFeatureCard{
    background:#f8fbff;
    border-left:5px solid #0c4a96;
    border-radius:18px;
    padding:25px;
}

.homeLoanFeatureIcon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0c4a96;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.homeLoanFeatureIcon i{
    color:#fff;
    font-size:24px;
}

.homeLoanFeatureCard h5{
    color:#0c4a96;
    margin-bottom:12px;
}

.homeLoanFeatureCard p{
    color:#666;
    line-height:1.8;
}

.homeLoanBenefitBox{
    background:#f8fbff;
    padding:25px;
    border-radius:18px;
    margin-bottom:25px;
}

.homeLoanBenefitBox h5{
    color:#0c4a96;
    margin-bottom:18px;
}

.homeLoanBenefitBox ul{
    padding-left:20px;
    margin:0;
}

.homeLoanBenefitBox ul li{
    margin-bottom:12px;
    color:#555;
}

.homeLoanNoteBox{
    background:#eef8ff;
    border-left:5px solid #0c4a96;
    padding:18px;
    border-radius:12px;
    color:#0c4a96;
    line-height:1.8;
}

@media(max-width:991px){

    .homeLoanServiceGrid{
        grid-template-columns:repeat(2,1fr);
    }

    .homeLoanFeatureCards{
        grid-template-columns:1fr;
    }

}
.enquiryBannerBox{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
   
}

.enquiryBannerBox img{
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.enquiryBannerOverlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiryBannerBtn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: #ffffff;
    color: #0c4a96;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    transition: 0.3s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.20);
}

.enquiryBannerBtn i{
    font-size: 18px;
}

.enquiryBannerBtn:hover{
    background: #0c4a96;
    color: #fff;
    transform: translateY(-3px);
}

.enquiryBannerBox:hover img{
    transform: scale(1.08);
}

@media(max-width:991px){
    .enquiryBannerBox{
        min-height: 280px;
    }

    .enquiryBannerBox img{
        min-height: 280px;
    }
}

@media(max-width:576px){

    .enquiryBannerBox{
        min-height: 240px;
        border-radius: 15px;
    }

    .enquiryBannerBox img{
        min-height: 240px;
    }

    .enquiryBannerBtn{
        padding: 12px 24px;
        font-size: 15px;
    }
}
@media(max-width:576px){

    .homeLoanBox{
        padding:20px;
    }

    .homeLoanHeader{
        justify-content:center;
        text-align:center;
    }

    .homeLoanTitle h3{
        font-size:22px;
    }

    .homeLoanServiceGrid{
        grid-template-columns:1fr;
    }

    .homeLoanIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .homeLoanIcon i{
        font-size:30px;
    }

}
@media(max-width:576px){

    .termDepositBox{
        padding:20px;
    }

    .termDepositHeader{
        justify-content:center;
        text-align:center;
    }

    .termDepositTitle h3{
        font-size:22px;
    }

    .termDepositServiceGrid{
        grid-template-columns:1fr;
    }

    .termDepositIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .termDepositIcon i{
        font-size:30px;
    }

}
@media(max-width:576px){

    .savingAccountBox{
        padding:20px;
    }

    .savingAccountHeader{
        justify-content:center;
        text-align:center;
    }

    .savingAccountTitle h3{
        font-size:22px;
    }

    .savingAccountServiceGrid{
        grid-template-columns:1fr;
    }

    .savingAccountIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

}
@media(max-width:576px){

    .currentAccountBox{
        padding:20px;
    }

    .currentAccountHeader{
        justify-content:center;
        text-align:center;
    }

    .currentAccountTitle h3{
        font-size:22px;
    }

    .currentAccountServiceGrid{
        grid-template-columns:1fr;
    }

    .currentAccountIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

}
@media(max-width:576px){

    .posBox{
        padding:20px;
    }

    .posHeader{
        text-align:center;
        justify-content:center;
    }

    .posTitle h3{
        font-size:22px;
    }

    .posServiceGrid{
        grid-template-columns:1fr;
    }

    .posIcon{
        width:70px;
        height:70px;
        min-width:70px;
    }

    .posIcon i{
        font-size:30px;
    }

}
@media(max-width:576px){

    .ecommerceHeader{
        flex-direction:column;
        text-align:center;
    }

    .ecommerceIcon{
        margin:auto;
    }

    .ecommerceTitle h3{
        font-size:18px;
    }

    .ecommerceDescription,
    .ecommerceBenefitBox ul li,
    .ecommerceNoteBox{
        font-size:13px;
    }
}
@media(max-width:576px){

    .rupayHeader{
        flex-direction:column;
        text-align:center;
    }

    .rupayIcon{
        margin:auto;
    }

    .rupayTitle h3{
        font-size:18px;
    }

    .rupayDescription,
    .rupayBenefitBox ul li,
    .rupayNoteBox{
        font-size:13px;
    }
}
@media(max-width:576px){

    .kccHeader{
        flex-direction:column;
        text-align:center;
    }

    .kccIcon{
        margin:auto;
    }

    .kccTitle h3{
        font-size:18px;
    }

    .kccDescription,
    .kccBenefitBox ul li,
    .kccNoteBox{
        font-size:13px;
    }
}
@media(max-width:576px){

    .socialSchemeHeader{
        flex-direction:column;
        text-align:center;
    }

    .socialSchemeIcon{
        margin:auto;
    }

    .socialSchemeTitle h3{
        font-size:18px;
    }

    .socialSchemeDescription,
    .schemeBenefits ul li,
    .schemeNote{
        font-size:13px;
    }
}
@media(max-width:576px){

    .microAtmHeader{
        flex-direction:column;
        text-align:center;
    }

    .microAtmIcon{
        margin:auto;
    }

    .microAtmTitle h3{
        font-size:18px;
    }

    .microAtmDescription,
    .microAtmBenefits li,
    .microAtmNote{
        font-size:13px;
    }
}
@media(max-width:576px){

    .rtgsHeader{
        flex-direction:column;
        text-align:center;
    }

    .rtgsIcon{
        margin:auto;
    }

    .rtgsTitle h3{
        font-size:18px;
    }

    .rtgsDescription,
    .rtgsBenefits li,
    .rtgsNote{
        font-size:13px;
    }
}
@media(max-width:576px){

    .atmHeader{
        flex-direction:column;
        text-align:center;
    }

    .atmIcon{
        margin:auto;
    }

    .atmHeader h3{
        font-size:18px;
    }

    .atmText,
    .atmBenefitBox ul li,
    .atmSecurityNote{
        font-size:13px;
    }
}
@media(max-width:576px){

    .dbtFacilityHeader{
        flex-direction:column;
        text-align:center;
    }

    .dbtFacilityIcon{
        margin:auto;
    }

    .dbtFacilityHeader h3{
        font-size:18px;
    }

    .dbtFacilityText,
    .dbtBenefitBox ul li,
    .dbtBottomNote{
        font-size:13px;
    }
}

.personalLoanBox{
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(7,71,150,0.12);
    box-shadow: 0 10px 35px rgba(7,71,150,0.08);
}

.personalLoanHeader{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

.personalLoanIcon{
    width: 75px;
    height: 75px;
    min-width: 75px;
    border-radius: 18px;
    background: linear-gradient(135deg,#074796,#0b65d4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.personalLoanIcon i{
    color: #fff;
    font-size: 32px;
}

.personalLoanTitle h3{
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: #074796;
}

.personalLoanTitle p{
    margin: 5px 0 0;
    color: #666;
    font-size: 14px;
}

.personalLoanDescription{
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 25px;
}

.personalLoanServiceGrid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.personalLoanServiceItem{
    background: rgba(7,71,150,0.06);
    border: 1px solid rgba(7,71,150,0.10);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #074796;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
}

.personalLoanServiceItem:hover{
    transform: translateY(-3px);
    background: #074796;
    color: #fff;
}

.personalLoanServiceItem i{
    font-size: 18px;
}

.personalLoanFeatureCards{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.personalLoanFeatureCard{
    background: linear-gradient(135deg,#074796,#0d5dc1);
    color: #fff;
    padding: 25px;
    border-radius: 18px;
}

.personalLoanFeatureIcon{
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.personalLoanFeatureIcon i{
    font-size: 22px;
}

.personalLoanFeatureCard h5{
    font-size: 18px;
    margin-bottom: 10px;
}

.personalLoanFeatureCard p{
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

.personalLoanBenefitBox{
    background: #f7faff;
    padding: 25px;
    border-radius: 18px;
    border-left: 5px solid #074796;
    margin-bottom: 20px;
}

.personalLoanBenefitBox h5{
    color: #074796;
    font-size: 20px;
    margin-bottom: 15px;
}

.personalLoanBenefitBox ul{
    padding-left: 18px;
    margin: 0;
}

.personalLoanBenefitBox li{
    margin-bottom: 10px;
    color: #555;
    font-size: 14px;
}

.personalLoanNoteBox{
    background: rgba(7,71,150,0.08);
    border-left: 4px solid #074796;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 14px;
    color: #444;
}

/* Responsive */

@media(max-width:767px){

    .personalLoanBox{
        padding: 20px;
    }

    .personalLoanHeader{
        flex-direction: column;
        text-align: center;
    }

    .personalLoanIcon{
        width: 65px;
        height: 65px;
        min-width: 65px;
    }

    .personalLoanIcon i{
        font-size: 28px;
    }

    .personalLoanTitle h3{
        font-size: 24px;
    }

    .personalLoanServiceGrid,
    .personalLoanFeatureCards{
        grid-template-columns: 1fr;
    }

    .personalLoanServiceItem{
        font-size: 13px;
        padding: 12px 14px;
    }

    .personalLoanFeatureCard{
        padding: 20px;
    }

    .personalLoanFeatureCard h5{
        font-size: 16px;
    }

    .personalLoanBenefitBox h5{
        font-size: 18px;
    }
}
.fasta
{
    color:#fff;
}
@media(max-width:768px){
    
     .service-details .row.gutter-y-50{
        display: flex;
        flex-direction: column;
    }

    .service-details .col-xl-8.col-lg-7{
        order: 1 !important;
    }

    .service-details .col-xl-4.col-lg-5{
        order: 2 !important;
    }

    .downloadBox{
        flex-direction:column;
        text-align:center;
        padding:25px 20px;
    }

    .downloadTitle{
        padding:20px 0;
    }

    .downloadSr{
        width:60px;
        height:60px;
        font-size:20px;
    }

    .downloadTitle h5{
        font-size:20px;
    }

    .downloadAction{
        width:100%;
    }

    .downloadAction a{
        width:100%;
        justify-content:center;
    }
}

.vehicleLoanBox{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(7,71,150,.12);
    box-shadow:0 10px 35px rgba(7,71,150,.08);
}

.vehicleLoanHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.vehicleLoanIcon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#074796,#0d66d0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.vehicleLoanIcon i{
    color:#fff;
    font-size:32px;
}

.vehicleLoanTitle h3{
    color:#074796;
    margin:0;
    font-size:28px;
    font-weight:700;
}

.vehicleLoanTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.vehicleLoanDescription{
    font-size:15px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
}

.vehicleLoanServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.vehicleLoanServiceItem{
    background:#f6f9ff;
    border:1px solid rgba(7,71,150,.12);
    border-radius:12px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:600;
    color:#074796;
    transition:.3s;
}

.vehicleLoanServiceItem:hover{
    background:#074796;
    color:#fff;
    transform:translateY(-3px);
}

.vehicleLoanFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.vehicleLoanFeatureCard{
    background:linear-gradient(135deg,#074796,#0d66d0);
    color:#fff;
    padding:25px;
    border-radius:18px;
}

.vehicleLoanFeatureIcon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.vehicleLoanFeatureIcon i{
    font-size:22px;
}

.vehicleLoanBenefitBox{
    background:#f7faff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #074796;
    margin-bottom:20px;
}

.vehicleLoanBenefitBox h5{
    color:#074796;
    margin-bottom:15px;
}

.vehicleLoanBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.vehicleLoanBenefitBox li{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.vehicleLoanNoteBox{
    background:rgba(7,71,150,.08);
    border-left:4px solid #074796;
    padding:16px 20px;
    border-radius:12px;
    font-size:14px;
    color:#444;
}

.jlgLoanBox{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(7,71,150,.12);
    box-shadow:0 10px 35px rgba(7,71,150,.08);
}

.jlgLoanHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.jlgLoanIcon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#074796,#0d66d0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.jlgLoanIcon i{
    color:#fff;
    font-size:32px;
}

.jlgLoanTitle h3{
    margin:0;
    color:#074796;
    font-size:28px;
    font-weight:700;
}

.jlgLoanTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.jlgLoanDescription{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.jlgLoanServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.jlgLoanServiceItem{
    background:#f6f9ff;
    border:1px solid rgba(7,71,150,.12);
    border-radius:12px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#074796;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.jlgLoanServiceItem:hover{
    background:#074796;
    color:#fff;
    transform:translateY(-3px);
}

.jlgLoanFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.jlgLoanFeatureCard{
    background:linear-gradient(135deg,#074796,#0d66d0);
    color:#fff;
    padding:25px;
    border-radius:18px;
}

.jlgLoanFeatureIcon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.jlgLoanFeatureIcon i{
    font-size:22px;
}

.jlgLoanFeatureCard h5{
    margin-bottom:10px;
    font-size:18px;
}

.jlgLoanFeatureCard p{
    margin:0;
    line-height:1.8;
    font-size:14px;
}

.jlgLoanBenefitBox{
    background:#f7faff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #074796;
    margin-bottom:20px;
}

.jlgLoanBenefitBox h5{
    color:#074796;
    margin-bottom:15px;
}

.jlgLoanBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.jlgLoanBenefitBox li{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.jlgLoanNoteBox{
    background:rgba(7,71,150,.08);
    border-left:4px solid #074796;
    padding:16px 20px;
    border-radius:12px;
    color:#444;
    font-size:14px;
}

.rdBox{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(7,71,150,.12);
    box-shadow:0 10px 35px rgba(7,71,150,.08);
}

.rdHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.rdIcon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#074796,#0d66d0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.rdIcon i{
    color:#fff;
    font-size:32px;
}

.rdTitle h3{
    margin:0;
    color:#074796;
    font-size:28px;
    font-weight:700;
}

.rdTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.rdDescription{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.rdServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.rdServiceItem{
    background:#f6f9ff;
    border:1px solid rgba(7,71,150,.12);
    border-radius:12px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#074796;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.rdServiceItem:hover{
    background:#074796;
    color:#fff;
    transform:translateY(-3px);
}

.rdFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.rdFeatureCard{
    background:linear-gradient(135deg,#074796,#0d66d0);
    color:#fff;
    padding:25px;
    border-radius:18px;
}

.rdFeatureIcon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.rdFeatureIcon i{
    font-size:22px;
}

.rdFeatureCard h5{
    margin-bottom:10px;
    font-size:18px;
}

.rdFeatureCard p{
    margin:0;
    line-height:1.8;
    font-size:14px;
}

.rdBenefitBox{
    background:#f7faff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #074796;
    margin-bottom:20px;
}

.rdBenefitBox h5{
    color:#074796;
    margin-bottom:15px;
}

.rdBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.rdBenefitBox li{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.rdNoteBox{
    background:rgba(7,71,150,.08);
    border-left:4px solid #074796;
    padding:16px 20px;
    border-radius:12px;
    color:#444;
    font-size:14px;
}

.fdBox{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(7,71,150,.12);
    box-shadow:0 10px 35px rgba(7,71,150,.08);
}

.fdHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.fdIcon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#074796,#0d66d0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.fdIcon i{
    color:#fff;
    font-size:32px;
}

.fdTitle h3{
    margin:0;
    color:#074796;
    font-size:28px;
    font-weight:700;
}

.fdTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.fdDescription{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.fdServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.fdServiceItem{
    background:#f6f9ff;
    border:1px solid rgba(7,71,150,.12);
    border-radius:12px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#074796;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.fdServiceItem:hover{
    background:#074796;
    color:#fff;
    transform:translateY(-3px);
}

.fdFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.fdFeatureCard{
    background:linear-gradient(135deg,#074796,#0d66d0);
    color:#fff;
    padding:25px;
    border-radius:18px;
}

.fdFeatureIcon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.fdFeatureIcon i{
    font-size:22px;
}

.fdFeatureCard h5{
    margin-bottom:10px;
    font-size:18px;
}

.fdFeatureCard p{
    margin:0;
    line-height:1.8;
    font-size:14px;
}

.fdBenefitBox{
    background:#f7faff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #074796;
    margin-bottom:20px;
}

.fdBenefitBox h5{
    color:#074796;
    margin-bottom:15px;
}

.fdBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.fdBenefitBox li{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.fdNoteBox{
    background:rgba(7,71,150,.08);
    border-left:4px solid #074796;
    padding:16px 20px;
    border-radius:12px;
    color:#444;
    font-size:14px;
}

.misBox{
    background:#fff;
    border-radius:20px;
    padding:30px;
    border:1px solid rgba(7,71,150,.12);
    box-shadow:0 10px 35px rgba(7,71,150,.08);
}

.misHeader{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:25px;
}

.misIcon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:18px;
    background:linear-gradient(135deg,#074796,#0d66d0);
    display:flex;
    align-items:center;
    justify-content:center;
}

.misIcon i{
    color:#fff;
    font-size:32px;
}

.misTitle h3{
    margin:0;
    color:#074796;
    font-size:28px;
    font-weight:700;
}

.misTitle p{
    margin:5px 0 0;
    color:#666;
    font-size:14px;
}

.misDescription{
    font-size:15px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.misServiceGrid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.misServiceItem{
    background:#f6f9ff;
    border:1px solid rgba(7,71,150,.12);
    border-radius:12px;
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:12px;
    color:#074796;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.misServiceItem:hover{
    background:#074796;
    color:#fff;
    transform:translateY(-3px);
}

.misFeatureCards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:25px;
}

.misFeatureCard{
    background:linear-gradient(135deg,#074796,#0d66d0);
    color:#fff;
    padding:25px;
    border-radius:18px;
}

.misFeatureIcon{
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:15px;
}

.misFeatureIcon i{
    font-size:22px;
}

.misFeatureCard h5{
    margin-bottom:10px;
    font-size:18px;
}

.misFeatureCard p{
    margin:0;
    line-height:1.8;
    font-size:14px;
}

.misBenefitBox{
    background:#f7faff;
    padding:25px;
    border-radius:18px;
    border-left:5px solid #074796;
    margin-bottom:20px;
}

.misBenefitBox h5{
    color:#074796;
    margin-bottom:15px;
}

.misBenefitBox ul{
    margin:0;
    padding-left:18px;
}

.misBenefitBox li{
    margin-bottom:10px;
    font-size:14px;
    color:#555;
}

.misNoteBox{
    background:rgba(7,71,150,.08);
    border-left:4px solid #074796;
    padding:16px 20px;
    border-radius:12px;
    color:#444;
    font-size:14px;
}

@media(max-width:767px){

    .misBox{
        padding:20px;
    }

    .misHeader{
        flex-direction:column;
        text-align:center;
    }

    .misTitle h3{
        font-size:24px;
    }

    .misServiceGrid,
    .misFeatureCards{
        grid-template-columns:1fr;
    }

}
@media(max-width:767px){

    .fdBox{
        padding:20px;
    }

    .fdHeader{
        flex-direction:column;
        text-align:center;
    }

    .fdTitle h3{
        font-size:24px;
    }

    .fdServiceGrid,
    .fdFeatureCards{
        grid-template-columns:1fr;
    }

}
@media(max-width:767px){

    .rdBox{
        padding:20px;
    }

    .rdHeader{
        flex-direction:column;
        text-align:center;
    }

    .rdTitle h3{
        font-size:24px;
    }

    .rdServiceGrid,
    .rdFeatureCards{
        grid-template-columns:1fr;
    }

}
@media(max-width:767px){

    .jlgLoanBox{
        padding:20px;
    }

    .jlgLoanHeader{
        flex-direction:column;
        text-align:center;
    }

    .jlgLoanTitle h3{
        font-size:24px;
    }

    .jlgLoanServiceGrid,
    .jlgLoanFeatureCards{
        grid-template-columns:1fr;
    }

}
@media(max-width:767px){

    .vehicleLoanBox{
        padding:20px;
    }

    .vehicleLoanHeader{
        flex-direction:column;
        text-align:center;
    }

    .vehicleLoanServiceGrid,
    .vehicleLoanFeatureCards{
        grid-template-columns:1fr;
    }

    .vehicleLoanTitle h3{
        font-size:24px;
    }

}
@media(max-width:768px){

    .chequeFormCard{
        padding:30px 20px;
    }

    .chequeFormHeader h2{
        font-size:28px;
    }

    .chequeInputBox input{
        height:54px;
    }
}
@media(max-width:767px){

    .bccb-enquiry-wrapper{
        padding:30px 20px;
    }

    .bccb-enquiry-header h2{
        font-size:28px;
    }
}
.bccbProductBody ul li::before
{
    color:#000;
}
.insurance-title
{
    font-size:26px !important;
}
.page-header__image
{
    display:none;
}
 .page-header__title
    {
        color:#fff;
    }
@media only screen and (max-width: 768px) {
    
    .page-header__title
    {
        color:#fff;
    }
    
    .insurance-title
{
    font-size:20px !important;
}
    
    .mobile-top-header
    {
        gap:0px !important
    }
    
    .mobile-top-item:first-child
    {
        padding-right:0px !important;
    }
    
    .hero-slider .carousel-item
    {
        height:auto;
    }
    
    .nav-inner
    {
        margin-top:-30px;
    }
    
    .dccb-mobile-quick-icon img{
     margin-top:-74px;   
    }
    
    .dccb-right-meta-holder
    {
        margin-top:-30px;
    }
    
    .dccb-upper-utility-row
    {
        display:none;
    }
    
    .custom-feature-card{
    position:relative;
    border:1px dashed #d9d9d9;
    border-radius:14px;
    padding:22px 16px 16px;
    background:#fff;
    overflow:visible;   /* Important */
    transition:.3s;
    height:auto;
}

    
    .dccb-amrit-img
    {
        display:none;
    }

  .page-header {
    position: relative;
    margin-top: 0px !important;
    padding-top: 38px;
    padding-bottom: 28px;
    overflow: hidden;
    background-color: var(--findox-white, #ffffff);
}

  .page-header__title
{
  font-size: 28px;
}

  .main-header__inner
  {
    padding: 5px 0px;
  }

  .product-sectionn
{
  padding: 47px 0px !important;
}

  .feature-slider{
    height:auto;
}


  .hero-slider-two .slider--el-bg
{
  height: 37%;
}

  .hero-slider-two
  {
    height: 179px;
  }

  .custom-sidebar-container
  {
    display: none;
  }

  .custom-menu-wrapper
  {
    display: none;
  }
.main-header__nav
{
  display:block;
}
}

@media only screen and (min-width:596px) and (max-width: 1200px) {
    .hero-slider .carousel-item{
    height:500px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
}
}

@media only screen and (min-width:1201px) and (max-width: 1300px) {
    .hero-slider .carousel-item{
    height:500px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
}
}

@media only screen and (min-width:1301px) and (max-width: 1400px) {
    .hero-slider .carousel-item{
    height:500px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
}
}
/* Tablet */

@media only screen and (min-width:1401px) and (max-width: 1800px) {
    .hero-slider .carousel-item{
    height:700px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
} 
}

@media only screen and (min-width:1801px) and (max-width: 1900px) {
    .hero-slider .carousel-item{
    height:700px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
}
}
/* Tablet */

@media only screen and (min-width:1801px) and (max-width: 1900px) {
    .hero-slider .carousel-item{
    height:700px;
}

.hero-slider .carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.carousel-control-prev,
.carousel-control-next{
    width:60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    width:45px;
    height:45px;
    background-color:rgba(0,0,0,.35);
    border-radius:50%;
    background-size:18px;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 5px;
    border:none;
}

.carousel-indicators .active{
    background:#0c4a96;
}
}
/* Tablet */
@media (max-width:991px){

.hero-slider .carousel-item
{
    height:auto;

}

}