/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --heartox-font: "Plus Jakarta Sans", serif;
  --heartox-heading-font: "Nunito", serif;
  --heartox-special-font: "Caveat", serif;
  --heartox-text: #66788A;
  --heartox-text-rgb: 102, 120, 138;
  --heartox-text-dark: #0B1F33;
  --heartox-text-dark-rgb: 11, 31, 51;
  --heartox-text-gray: #9AAABC;
  --heartox-text-gray-rgb: 154, 170, 188;
  --heartox-base: #102A43;
  --heartox-base-rgb: 16, 42, 67;
  --heartox-primary: #1B3F63;
  --heartox-primary-rgb: 27, 63, 99;
  --heartox-secondary: #E9AD45;
  --heartox-secondary-rgb: 233, 173, 69;
  --heartox-gray: #CBD4DE;
  --heartox-gray-rgb: 203, 212, 222;
  --heartox-gray2: #F2F5F8;
  --heartox-gray2-rgb: 242, 245, 248;
  --heartox-white: #FFFFFF;
  --heartox-white-rgb: 255, 255, 255;
  --heartox-black: #132238;
  --heartox-black-rgb: 19, 34, 56;
  --heartox-black2: #000;
  --heartox-black2-rgb: 0, 0, 0;
  --heartox-border-color: #CBD4DE;
  --heartox-border-color-rgb: 203, 212, 222;
  --heartox-letter-space: 0.1em;
  --heartox-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# 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;
}

.heartox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: transparent;
  color: var(--heartox-white, #fff);
  border: 0px solid transparent;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  transition: 500ms;
  padding: 13px 38px;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
  border-radius: 32px;
}
.heartox-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--heartox-secondary, #E9AD45);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}
.heartox-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  z-index: -1;
}
.heartox-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
}
.heartox-btn i {
  margin-left: 5px;
}
.heartox-btn:hover {
  color: var(--heartox-black, #132238);
}
.heartox-btn:hover::before {
  top: 100%;
}
.heartox-btn:hover::after {
  bottom: -50%;
}
.heartox-btn--primary::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.heartox-btn--primary::before {
  background-color: var(--heartox-primary, #1B3F63);
}
.heartox-btn--primary:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--base::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.heartox-btn--base::before {
  background-color: var(--heartox-base, #102A43);
}
.heartox-btn--base:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--secondary::after {
  background-color: var(--heartox-base, #102A43);
}
.heartox-btn--secondary::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.heartox-btn--secondary:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--border {
  border: 1px solid var(--heartox-base, #102A43);
}
.heartox-btn--border::after {
  background-color: var(--heartox-base, #102A43);
}
.heartox-btn--border::before {
  background-color: transparent;
}
.heartox-btn--border:hover {
  color: var(--heartox-base, #102A43);
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.sec-title--two .sec-title__tagline,
.sec-title--two .sec-title__title, .sec-title--three .sec-title__tagline,
.sec-title--three .sec-title__title {
  color: var(--heartox-white, #fff);
}
.sec-title__tagline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 120%;
  color: var(--heartox-base, #102A43);
  margin-bottom: 10px;
}
.sec-title__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 125%;
  color: var(--heartox-base, #102A43);
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 40px;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--heartox-base, #102A43);
  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(--heartox-heading-font, "Nunito", serif);
  color: var(--heartox-base, #102A43);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

p {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-text, #66788A);
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--heartox-base, #102A43);
}

.background-gray {
  background-color: var(--heartox-gray, #CBD4DE);
}

.background-black {
  background-color: var(--heartox-black, #132238);
}

.background-black-2 {
  background-color: var(--heartox-black2, #000);
}

.heartox-text-dark {
  color: var(--heartox-text-dark, #0B1F33);
}

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

.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-60 {
  --bs-gutter-y: 60px;
}

.section-space {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* Shared HosmedAI footer */
.hosmed-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 82% 20%, rgba(27, 63, 99, 0.72), transparent 35%),
    linear-gradient(120deg, #071f35, #0b2944 55%, #061b30);
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
}

.hosmed-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(233, 173, 69, 0.26) 49%, rgba(233, 173, 69, 0.26) 51%, transparent 52%),
    linear-gradient(150deg, transparent 48%, rgba(233, 173, 69, 0.2) 49%, rgba(233, 173, 69, 0.2) 51%, transparent 52%);
  background-size: 90px 155px;
  background-position: calc(100% + 20px) -30px;
  background-repeat: no-repeat;
}

.hosmed-footer a {
  color: inherit;
  transition: color 250ms ease, transform 250ms ease, background-color 250ms ease;
}

.hosmed-footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.15fr;
  gap: 30px;
  padding: 40px 20px 28px;
}

.hosmed-footer__logo {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
}

.hosmed-footer__logo > img {
  width: min(245px, 100%);
  height: auto;
  object-fit: contain;
}

.hosmed-footer__logo > span,
.hosmed-footer__logo small {
  display: block;
}

.hosmed-footer__logo strong {
  color: #fff;
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: 35px;
  line-height: 1;
}

.hosmed-footer__logo strong span {
  color: #16b4ad;
}

.hosmed-footer__logo small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hosmed-footer__brand > p {
  max-width: 350px;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
}

.hosmed-footer__social {
  display: flex;
  gap: 12px;
}

.hosmed-footer__social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(46, 91, 128, 0.5);
}

.hosmed-footer__social a:hover {
  transform: translateY(-4px);
  color: var(--heartox-base, #102a43);
  background: var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__column,
.hosmed-footer__contact {
  padding-left: 25px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.hosmed-footer__column h3,
.hosmed-footer__contact > h3 {
  position: relative;
  margin: 0 0 20px;
  padding-bottom: 13px;
  color: var(--heartox-secondary, #e9ad45);
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: 21px;
  font-weight: 800;
}

.hosmed-footer__column h3::after,
.hosmed-footer__contact > h3::after {
  content: "";
  width: 42px;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hosmed-footer__column li + li {
  margin-top: 8px;
}

.hosmed-footer__column a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.hosmed-footer__column a::before {
  content: "›";
  color: var(--heartox-secondary, #e9ad45);
  font-size: 24px;
  line-height: 0;
}

.hosmed-footer__column a:hover {
  color: var(--heartox-secondary, #e9ad45);
  transform: translateX(4px);
}

.hosmed-footer__contact > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
}

.hosmed-footer__contact > div + div {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hosmed-footer__contact > div > i {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--heartox-secondary, #e9ad45);
  font-size: 19px;
}

.hosmed-footer__contact p,
.hosmed-footer__contact a,
.hosmed-footer__contact span {
  display: block;
  margin: 0;
}

.hosmed-footer__contact a + a,
.hosmed-footer__contact span + span {
  margin-top: 5px;
}

.hosmed-footer__contact a:hover {
  color: var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__subscribe {
  display: grid;
  grid-template-columns: auto 1fr 1.35fr;
  align-items: center;
  gap: 22px;
  margin: 0 0 22px;
  padding: 20px 28px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
}

.hosmed-footer__subscribe-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heartox-base, #102a43);
  background: var(--heartox-secondary, #e9ad45);
  font-size: 25px;
}

.hosmed-footer__subscribe h3 {
  max-width: 390px;
  margin: 0;
  color: #fff;
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: 20px;
  line-height: 1.3;
}

.hosmed-footer__subscribe h3 span {
  color: var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__subscribe p {
  margin: 8px 0 0;
  font-size: 13px;
}

.hosmed-footer__subscribe form {
  display: flex;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.hosmed-footer__subscribe input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 13px 18px;
  color: #fff;
  background: rgba(5, 28, 48, 0.5);
  font-family: inherit;
}

.hosmed-footer__subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.hosmed-footer__subscribe button {
  width: 64px;
  border: 0;
  color: #fff;
  background: var(--heartox-secondary, #e9ad45);
  font-size: 22px;
}

.hosmed-footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__bottom .container {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.hosmed-footer__bottom p {
  margin: 0;
}

.hosmed-footer__bottom p i {
  margin-right: 10px;
  color: var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__bottom nav {
  display: flex;
  gap: 0;
}

.hosmed-footer__bottom nav a {
  padding: 0 25px;
}

.hosmed-footer__bottom nav a + a {
  border-left: 1px solid var(--heartox-secondary, #e9ad45);
}

.hosmed-footer__bottom nav a:hover {
  color: var(--heartox-secondary, #e9ad45);
}

@media (max-width: 1199px) {
  .hosmed-footer__top {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosmed-footer__subscribe {
    grid-template-columns: auto 1fr;
  }

  .hosmed-footer__subscribe form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .hosmed-footer__top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 32px 5px 24px;
  }

  .hosmed-footer__column,
  .hosmed-footer__contact {
    padding: 0;
    border-left: 0;
  }

  .hosmed-footer__column h3,
  .hosmed-footer__contact > h3 {
    margin-bottom: 20px;
  }

  .hosmed-footer__column ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .hosmed-footer__column li + li {
    margin-top: 0;
  }

  .hosmed-footer__subscribe {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-bottom: 20px;
    padding: 18px;
  }

  .hosmed-footer__subscribe form {
    grid-column: auto;
  }

  .hosmed-footer__bottom .container {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .hosmed-footer__bottom nav {
    flex-wrap: wrap;
    gap: 10px 0;
  }

  .hosmed-footer__bottom nav a {
    padding: 0 12px;
  }

  .hosmed-footer__bottom nav a:first-child {
    padding-left: 0;
  }
}

/* Hospital Planning & Design page */
.hosmed-planning { overflow: hidden; color: #233b50; background: #fff; font-family: "Plus Jakarta Sans", sans-serif; }.hosmed-planning h1,.hosmed-planning h2,.hosmed-planning h3 { font-family: "Nunito", sans-serif; }
.hosmed-planning__hero { min-height: clamp(650px, 56.25vw, 900px); display: flex; align-items: center; position: relative; background: url("../images/planning_banner.png") center/cover no-repeat; }.hosmed-planning__hero::before { content:""; position:absolute; inset:0; z-index:0; background:linear-gradient(90deg,rgba(2,16,30,.94) 0%,rgba(2,20,36,.83) 31%,rgba(2,20,36,.45) 49%,rgba(2,20,36,0) 68%); }.hosmed-planning__hero > .container { width: 100%; max-width: none; margin: 0; padding-left: 4.3vw; position:relative; z-index:1; }.hosmed-planning__hero-copy { width: 39%; max-width: 700px; padding: 35px 0; }.hosmed-planning__hero-copy > p:first-child { margin: 0; color: #17c0b7; font-size: 17px; font-weight: 800; letter-spacing: .5px; }.hosmed-planning__hero-copy > i { display: block; width: 60px; height: 3px; margin: 18px 0 25px; background: #17c0b7; }.hosmed-planning__hero h1 { margin: 0; color: #fff; font-size: clamp(52px, 5vw, 82px); line-height: 1.05; font-weight: 800; }.hosmed-planning__hero h1 span { color: #15b8af; }.hosmed-planning__hero h2 { margin: 22px 0 0; color: #fff; font-size: clamp(21px, 1.75vw, 30px); line-height: 1.35; }.hosmed-planning__hero h2 + i { margin: 22px 0; }.hosmed-planning__hero-copy > p:last-child { margin: 0; color: #e4edf2; font-size: 14px; line-height: 1.75; font-weight: 600; }
.hosmed-planning__services { padding: 34px 0 42px; }.hosmed-planning__heading { display: flex; align-items: center; justify-content: center; gap: 28px; margin-bottom: 28px; }.hosmed-planning__heading h2 { margin: 0; color: #087f79; font-size: 25px; letter-spacing: 1px; }.hosmed-planning__heading > i { width: 210px; height: 1px; position: relative; background: linear-gradient(90deg, transparent, #078b84); }.hosmed-planning__heading > i:last-child { background: linear-gradient(90deg, #078b84, transparent); }.hosmed-planning__heading > i::after { content:""; position:absolute; right:-3px; top:-3px; width:7px; height:7px; border-radius:50%; background:#078b84; }.hosmed-planning__heading > i:last-child::after { right:auto; left:-3px; }
.hosmed-planning__services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0 30px; }.hosmed-planning__service { min-height: 112px; display: grid; grid-template-columns: 74px 1fr; align-items: start; gap: 15px; padding: 13px 16px; border-right: 1px dashed #b9ced6; }.hosmed-planning__service:nth-child(3n) { border-right:0; }.hosmed-planning__service > span { width: 62px; height: 62px; display:grid; place-items:center; border:1px solid #cde0e5; border-radius:50%; color:#078b84; background:#eff7f7; font-size:25px; transition:transform .4s ease,background .3s ease,color .3s ease; }.hosmed-planning__service:hover > span { transform:rotateY(180deg); color:#fff; background:#078b84; }.hosmed-planning__service h3 { margin:2px 0 5px; color:#071d3d; font-size:15px; font-weight:800; }.hosmed-planning__service p { margin:0; color:#263e52; font-size:11px; line-height:1.55; }
.hosmed-planning__approach { padding: 0 0 38px; }.hosmed-planning__approach-inner { padding: 22px 26px 28px; border:1px solid #a9d2d3; border-radius:15px; }.hosmed-planning__approach-inner .hosmed-planning__heading { margin-bottom:20px; }.hosmed-planning__approach-grid { display:grid; grid-template-columns:repeat(5,1fr); }.hosmed-planning__approach-grid > div { position:relative; padding:0 17px; text-align:center; }.hosmed-planning__approach-grid span { width:98px; height:98px; display:grid; place-items:center; margin:0 auto 12px; border:5px solid #e9f2f3; border-radius:50%; color:#fff; background:#062c58; font-size:38px; transition:transform .35s ease; }.hosmed-planning__approach-grid > div:nth-child(even) span { background:#078f88; }.hosmed-planning__approach-grid > div:hover span { transform:translateY(-7px); }.hosmed-planning__approach-grid h3 { margin:0 0 7px; color:#071d3d; font-size:19px; }.hosmed-planning__approach-grid p { margin:0; font-size:10px; line-height:1.55; }.hosmed-planning__approach-grid b { position:absolute; top:38px; right:-10px; color:#073b73; font-size:27px; }
.hosmed-planning__cta { padding-bottom:40px; background:#f7f9fa; }.hosmed-planning__cta-inner { min-height:430px; display:flex; align-items:center; margin-bottom:-46px; padding:42px 50px 82px; border-radius:0; color:#fff; background:linear-gradient(90deg,rgba(3,34,65,.98),rgba(3,41,72,.15)),url("../images/plannig-expert.png") center/cover; }.hosmed-planning__cta-inner > div { max-width:580px; }.hosmed-planning__cta h2 { margin:0; color:#fff; font-size:34px; line-height:1.2; }.hosmed-planning__cta h2 span { color:#0fc0b7; }.hosmed-planning__cta h2 + i { display:block; width:55px; height:2px; margin:20px 0; background:#0fc0b7; }.hosmed-planning__cta-inner p { max-width:500px; margin:0 0 23px; color:#d9e4eb; font-size:13px; line-height:1.7; }.hosmed-planning__cta .heartox-btn { padding:15px 24px; color:#fff; background:#079a93; }.hosmed-planning__benefits { position:relative; display:grid; grid-template-columns:repeat(5,1fr); padding:22px 24px; border-radius:14px; background:#fff; box-shadow:0 12px 35px rgba(7,48,80,.12); }.hosmed-planning__benefits > div { display:flex; align-items:center; gap:11px; padding:0 17px; border-left:1px solid #dce6eb; }.hosmed-planning__benefits > div:first-child { border-left:0; }.hosmed-planning__benefits i { color:#07948d; font-size:28px; }.hosmed-planning__benefits p { margin:0; }.hosmed-planning__benefits b,.hosmed-planning__benefits span { display:block; }.hosmed-planning__benefits b { color:#071d3d; font-size:11px; }.hosmed-planning__benefits span { margin-top:3px; font-size:8px; line-height:1.45; }
@media(max-width:991px){.hosmed-planning__hero-copy{width:55%}.hosmed-planning__services-grid{grid-template-columns:repeat(2,1fr)}.hosmed-planning__service:nth-child(3n){border-right:1px dashed #b9ced6}.hosmed-planning__service:nth-child(2n){border-right:0}.hosmed-planning__approach-grid{grid-template-columns:repeat(2,1fr);gap:25px}.hosmed-planning__approach-grid b{display:none}.hosmed-planning__benefits{grid-template-columns:repeat(2,1fr);gap:20px 0}.hosmed-planning__benefits>div:nth-child(odd){border-left:0}}
@media(max-width:575px){.hosmed-planning__hero{min-height:650px;background-position:58% center}.hosmed-planning__hero>.container{padding-left:22px}.hosmed-planning__hero-copy{width:72%}.hosmed-planning__hero h1{font-size:43px}.hosmed-planning__hero-copy>p:last-child br{display:none}.hosmed-planning__heading{gap:12px}.hosmed-planning__heading>i{width:55px}.hosmed-planning__services-grid{grid-template-columns:1fr}.hosmed-planning__service{border-right:0!important}.hosmed-planning__approach-grid{grid-template-columns:1fr}.hosmed-planning__cta-inner{min-height:480px;padding:35px 22px 75px;background-position:60% center}.hosmed-planning__cta h2{font-size:28px}.hosmed-planning__benefits{grid-template-columns:1fr}.hosmed-planning__benefits>div{padding:10px 4px;border-left:0;border-top:1px solid #dce6eb}.hosmed-planning__benefits>div:first-child{border-top:0}}

/* NABH / NABL Accreditation page */
.hosmed-accreditation { overflow: hidden; color: #66788a; background: #f7f9fb; font-family: "Plus Jakarta Sans", sans-serif; }
.hosmed-accreditation h1, .hosmed-accreditation h2, .hosmed-accreditation h3 { font-family: "Nunito", sans-serif; }
.hosmed-accreditation__hero { width: 100%; min-height: clamp(460px, 37.5vw, 720px); display: flex; align-items: center; color: #fff; background: url("../images/nabh-banner.png") center center/cover no-repeat; }
.hosmed-accreditation__hero > .container { width: 100%; max-width: none; margin: 0; padding-right: 4vw; padding-left: 5.6vw; }
.hosmed-accreditation__hero-copy { width: 36%; max-width: 670px; padding: 20px 0 74px; }
.hosmed-accreditation__hero-copy > p:first-child { margin: 0 0 12px; color: #19bbb3; font-size: 12px; font-weight: 800; }
.hosmed-accreditation__hero h1 { margin: 0; color: #fff; font-size: clamp(42px, 3.4vw, 65px); line-height: 1.08; font-weight: 700; }
.hosmed-accreditation__hero h2 { margin: 7px 0 0; color: #19bbb3; font-size: clamp(29px, 2.35vw, 45px); line-height: 1.1; font-weight: 700; }
.hosmed-accreditation__hero-copy > i { display: block; width: 55px; height: 3px; margin: 18px 0; background: #18b8b0; }
.hosmed-accreditation__hero-copy > p:last-child { max-width: 560px; margin: 0; color: #d8e4ec; font-size: 14px; line-height: 1.75; font-weight: 600; }
.hosmed-accreditation__content { padding: 0 0 42px; }.hosmed-accreditation__content > .container { margin-top: -52px; position: relative; z-index: 2; }
.hosmed-accreditation__panel { display: grid; grid-template-columns: 175px 1fr; align-items: center; gap: 20px; margin-bottom: 22px; padding: 30px 34px; border: 1px solid #dce5ec; border-radius: 12px; background: #fff; box-shadow: 0 12px 35px rgba(7,48,80,.09); }
.hosmed-accreditation__panel-icon { width: 125px; height: 125px; display: grid; place-items: center; margin: auto; border: 1px dashed #13a8a1; border-radius: 50%; color: #0b5b87; background: #fff; box-shadow: 0 9px 23px rgba(7,48,80,.12); font-size: 53px; }
.hosmed-accreditation__panel h2 { margin: 0; color: #0b3559; font-size: 27px; }.hosmed-accreditation__panel h2 span { color: #0ba49d; }.hosmed-accreditation__panel-content > p { margin: 2px 0 17px; color: #3d596f; font-size: 12px; }
.hosmed-accreditation__journey { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px; }.hosmed-accreditation__journey > div { position: relative; display: grid; justify-items: center; gap: 8px; text-align: center; }.hosmed-accreditation__journey span { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid #cae0e8; border-radius: 50%; color: #0b7694; background: #f8fbfc; font-size: 21px; }.hosmed-accreditation__journey b { color: #163a58; font-size: 9px; }.hosmed-accreditation__journey em { position: absolute; top: 20px; right: -8px; color: #0da49d; font-size: 18px; font-style: normal; }
.hosmed-accreditation__nabl-grid { display: grid; grid-template-columns: repeat(5, 1fr); }.hosmed-accreditation__nabl-grid > div { min-height: 64px; display: flex; align-items: center; gap: 10px; padding: 10px 13px; border-right: 1px solid #e1e8ed; border-bottom: 1px solid #e1e8ed; color: #25465f; font-size: 10px; font-weight: 600; }.hosmed-accreditation__nabl-grid > div:nth-child(5n) { border-right: 0; }.hosmed-accreditation__nabl-grid > div:nth-child(n+6) { border-bottom: 0; }.hosmed-accreditation__nabl-grid i { color: #1b7baa; font-size: 23px; }
.hosmed-accreditation__ecosystem { margin: 0 10px 22px; padding: 17px 22px 20px; border: 1px solid #cddfe8; border-radius: 11px; background: #fff; box-shadow: 0 8px 24px rgba(7,48,80,.06); }.hosmed-accreditation__ecosystem h2 { margin: 0 0 14px; color: #0b3559; text-align: center; font-size: 22px; }.hosmed-accreditation__ecosystem h2 span { color: #0ba49d; }.hosmed-accreditation__ecosystem > div { display: grid; grid-template-columns: repeat(9, 1fr); }.hosmed-accreditation__ecosystem > div > div { display: grid; justify-items: center; gap: 7px; padding: 0 8px; border-left: 1px solid #e1e8ed; text-align: center; }.hosmed-accreditation__ecosystem > div > div:first-child { border-left: 0; }.hosmed-accreditation__ecosystem span { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid #cfe0e8; border-radius: 50%; color: #18769d; background: #f8fbfc; font-weight: 800; }.hosmed-accreditation__ecosystem b { color: #21445f; font-size: 9px; }
.hosmed-accreditation__cta { min-height: 205px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 30px 55px; color: #fff; border-radius: 12px; background: linear-gradient(90deg, rgba(5,39,67,.98), rgba(4,42,70,.78)), url("../images/nabh-expert.png") center/cover; }.hosmed-accreditation__cta h2 { margin: 0; color: #fff; font-size: 27px; line-height: 1.15; }.hosmed-accreditation__cta p { margin: 4px 0 0; color: #15c1b8; font-size: 24px; line-height: 1.2; font-weight: 700; }.hosmed-accreditation__cta > div > i { display: block; width: 48px; height: 2px; margin-top: 15px; background: #15c1b8; }.hosmed-accreditation__cta .heartox-btn { padding: 15px 23px; color: #fff; background: #0ca59e; font-size: 11px; }
@media (max-width: 991px) { .hosmed-accreditation__hero-copy { width: 52%; }.hosmed-accreditation__panel { grid-template-columns: 1fr; }.hosmed-accreditation__journey { grid-template-columns: repeat(4, 1fr); gap: 18px; }.hosmed-accreditation__journey em { display: none; }.hosmed-accreditation__nabl-grid { grid-template-columns: repeat(3, 1fr); }.hosmed-accreditation__ecosystem > div { grid-template-columns: repeat(3, 1fr); gap: 20px 0; }.hosmed-accreditation__cta { padding: 28px; } }
@media (max-width: 575px) { .hosmed-accreditation__hero { min-height: 540px; background-position: 58% center; }.hosmed-accreditation__hero > .container { padding-left: 24px; }.hosmed-accreditation__hero-copy { width: 72%; padding-bottom: 48px; }.hosmed-accreditation__hero h1 { font-size: 36px; }.hosmed-accreditation__hero h2 { font-size: 27px; }.hosmed-accreditation__content > .container { margin-top: -25px; }.hosmed-accreditation__panel { padding: 24px 15px; }.hosmed-accreditation__panel-icon { width: 95px; height: 95px; font-size: 40px; }.hosmed-accreditation__journey { grid-template-columns: repeat(2, 1fr); }.hosmed-accreditation__nabl-grid { grid-template-columns: repeat(2, 1fr); }.hosmed-accreditation__nabl-grid > div { border: 0; border-bottom: 1px solid #e1e8ed; }.hosmed-accreditation__ecosystem { margin-right: 0; margin-left: 0; }.hosmed-accreditation__cta { align-items: flex-start; flex-direction: column; }.hosmed-accreditation__cta h2 { font-size: 23px; }.hosmed-accreditation__cta p { font-size: 20px; } }

/* Hospital Software page */
.hosmed-software { overflow: hidden; color: #66788a; background: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-style: normal; }
.hosmed-software p, .hosmed-software li, .hosmed-software a, .hosmed-software span, .hosmed-software small, .hosmed-software strong, .hosmed-software b { font-family: "Plus Jakarta Sans", sans-serif; }
.hosmed-software h1, .hosmed-software h2, .hosmed-software h3 { font-family: "Nunito", sans-serif; font-style: normal; }
.hosmed-software__hero { min-height: 535px; display: flex; align-items: center; color: #fff; background: radial-gradient(circle at 78% 42%, rgba(11,154,158,.28), transparent 26%), linear-gradient(105deg, #052b4a 0%, #073554 60%, #041f37 100%); }
.hosmed-software__hero .container { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 40px; }
.hosmed-software__hero-copy { padding: 55px 0; }
.hosmed-software__hero-copy > p:first-child { margin: 0 0 12px; color: #18bbb3; font-size: 12px; font-weight: 800; }
.hosmed-software__hero h1 { margin: 0 0 13px; color: #fff; font-size: clamp(42px, 3.7vw, 63px); line-height: 1.03; font-weight: 700; }
.hosmed-software__hero h1 span, .hosmed-software__heading span, .hosmed-software__truth h2 span { color: #13b4ac; }
.hosmed-software__hero h2 { max-width: 520px; margin: 0; color: #d7e4ec; font-size: 21px; line-height: 1.3; font-weight: 700; }
.hosmed-software__hero-copy > i { display: block; width: 52px; height: 2px; margin: 18px 0; background: #e9ad45; }
.hosmed-software__hero-copy > p:nth-of-type(2) { max-width: 540px; margin: 0 0 22px; color: #d3dfe8; font-size: 14px; line-height: 1.75; font-weight: 600; }
.hosmed-software__hero .heartox-btn { padding: 14px 21px; color: #fff; background: #0aa29b; font-size: 11px; }
.hosmed-software__dashboard { position: relative; min-height: 390px; display: grid; place-items: center; perspective: 900px; }
.hosmed-software__screen { width: 78%; min-height: 310px; padding: 25px; border: 8px solid #071b2a; border-radius: 14px; background: linear-gradient(145deg, #073a5b, #041e34); box-shadow: 0 25px 45px rgba(0,0,0,.35), inset 0 0 35px rgba(11,176,170,.08); transform: rotateY(-8deg) rotateX(2deg); }
.hosmed-software__screen > div { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.12); }
.hosmed-software__screen b { color: #fff; font-size: 18px; }.hosmed-software__screen b span { color: #12b6ae; }.hosmed-software__screen small { color: #8ba7b8; }
.hosmed-software__screen section { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 18px 0; }
.hosmed-software__screen section p { margin: 0; padding: 13px; border: 1px solid rgba(18,182,174,.24); border-radius: 5px; background: rgba(3,25,43,.55); }
.hosmed-software__screen section span, .hosmed-software__screen section strong { display: block; }.hosmed-software__screen section span { color: #89a8ba; font-size: 9px; }.hosmed-software__screen section strong { margin-top: 5px; color: #fff; font-size: 22px; }
.hosmed-software__screen > i { width: 100%; height: 115px; display: flex; align-items: center; justify-content: center; color: #14c9bf; border-radius: 6px; background: linear-gradient(180deg, rgba(12,178,171,.03), rgba(12,178,171,.16)); font-size: 75px; }
.hosmed-software__phone { position: absolute; right: 5%; bottom: 20px; width: 120px; height: 230px; display: flex; align-items: center; flex-direction: column; padding: 30px 10px; border: 7px solid #071b2a; border-radius: 23px; color: #fff; background: linear-gradient(#084263, #05263e); box-shadow: 0 20px 35px rgba(0,0,0,.35); transform: rotateY(-8deg); }
.hosmed-software__phone i { margin: 30px 0 17px; color: #14c9bf; font-size: 34px; }.hosmed-software__phone b { font-size: 14px; }.hosmed-software__phone span { margin-top: 5px; color: #91aebf; font-size: 8px; }
.hosmed-software__modules { padding: 32px 0 30px; background: #fff; }
.hosmed-software__heading { margin-bottom: 24px; text-align: center; }.hosmed-software__heading h2 { margin: 0; color: #0b3559; font-size: 29px; line-height: 1; font-weight: 800; }.hosmed-software__heading > i { display: block; width: 54px; height: 2px; margin: 10px auto 0; background: #0aa29b; }
.hosmed-software__module-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.hosmed-software__module { min-height: 310px; padding: 20px 18px 18px; border: 1px solid #e8edf1; border-bottom: 4px solid #099b92; border-radius: 8px; background: #fff; box-shadow: 0 7px 22px rgba(7,48,80,.08); transition: transform .35s ease, box-shadow .35s ease; }
.hosmed-software__module:nth-child(2) { border-bottom-color: #176ca5; }.hosmed-software__module:nth-child(3) { border-bottom-color: #6f50ad; }.hosmed-software__module:nth-child(4) { border-bottom-color: #f09a19; }.hosmed-software__module:nth-child(5) { border-bottom-color: #1595a9; }
.hosmed-software__module:hover { transform: translateY(-8px); box-shadow: 0 17px 38px rgba(7,48,80,.15); }
.hosmed-software__module > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 16px; border-radius: 50%; color: #fff; background: #099b92; font-size: 21px; box-shadow: 0 5px 14px rgba(9,155,146,.2); transition: transform .4s ease; }.hosmed-software__module:nth-child(2) > span { background: #176ca5; box-shadow: 0 5px 14px rgba(23,108,165,.2); }.hosmed-software__module:nth-child(3) > span { background: #6f50ad; box-shadow: 0 5px 14px rgba(111,80,173,.2); }.hosmed-software__module:nth-child(4) > span { background: #f09a19; box-shadow: 0 5px 14px rgba(240,154,25,.2); }.hosmed-software__module:nth-child(5) > span { background: #1595a9; box-shadow: 0 5px 14px rgba(21,149,169,.2); }.hosmed-software__module:hover > span { transform: rotateY(180deg); }
.hosmed-software__module h3 { min-height: 38px; margin: 0; color: #0b3559; font-size: 14px; line-height: 1.2; font-weight: 800; }.hosmed-software__module > i { display: block; width: 28px; height: 2px; margin: 9px 0 11px; background: #099b92; }.hosmed-software__module:nth-child(2) > i { background: #176ca5; }.hosmed-software__module:nth-child(3) > i { background: #6f50ad; }.hosmed-software__module:nth-child(4) > i { background: #f09a19; }.hosmed-software__module:nth-child(5) > i { background: #1595a9; }
.hosmed-software__module ul { margin: 0; padding: 0; list-style: none; }.hosmed-software__module li { position: relative; padding: 3px 0 3px 10px; color: #536b7e; font-size: 9px; line-height: 1.4; }.hosmed-software__module li::before { content: "•"; position: absolute; left: 0; color: #099b92; }.hosmed-software__module:nth-child(2) li::before { color: #176ca5; }.hosmed-software__module:nth-child(3) li::before { color: #6f50ad; }.hosmed-software__module:nth-child(4) li::before { color: #f09a19; }.hosmed-software__module:nth-child(5) li::before { color: #1595a9; }
.hosmed-software__ai { padding: 0 0 24px; }.hosmed-software__ai-inner { min-height: 325px; display: grid; grid-template-columns: .8fr 1.2fr; align-items: center; overflow: hidden; padding: 30px 35px; color: #d6e3eb; border-radius: 12px; background: radial-gradient(circle at 72% 50%, rgba(7,170,163,.24), transparent 31%), linear-gradient(120deg, #082b49, #06395a); }
.hosmed-software__ai-inner > div > p:first-child { margin: 0; color: #0fb5ad; font-size: 14px; }.hosmed-software__ai h2 { margin: 2px 0 0; color: #12bcb3; font-size: 57px; line-height: 1; }.hosmed-software__ai h2 span { color: #e9ad45; }.hosmed-software__ai-inner > div > i { display: block; width: 42px; height: 2px; margin: 16px 0; background: #e9ad45; }.hosmed-software__ai-inner > div > p:nth-of-type(2) { max-width: 430px; margin: 0; font-size: 12px; line-height: 1.65; }
.hosmed-software__ai img { width: min(100%, 620px); max-height: 280px; margin: auto; object-fit: contain; filter: drop-shadow(0 10px 22px rgba(0,207,255,.18)); animation: hosmedAiImageFloat 3.5s ease-in-out infinite; }
.hosmed-software__flow { display: flex; align-items: center; gap: 12px; margin-top: 25px; }.hosmed-software__flow span { display: grid; gap: 5px; color: #fff; text-align: center; font-size: 9px; }.hosmed-software__flow span i { width: 38px; height: 38px; display: grid; place-items: center; margin: auto; border: 1px solid #0cb4ac; border-radius: 50%; color: #13c8be; }.hosmed-software__flow b { color: #10b8af; font-size: 20px; }
.hosmed-software__truth { padding: 0 0 24px; }.hosmed-software__truth-inner { display: grid; grid-template-columns: .9fr 1.5fr; align-items: center; gap: 28px; padding: 22px 30px; border: 1px solid #dfe7ed; border-radius: 11px; background: #fff; box-shadow: 0 10px 30px rgba(7,48,80,.08); }.hosmed-software__truth-inner > div:first-child { display: flex; align-items: center; gap: 18px; }.hosmed-software__truth-inner > div:first-child > i { color: #0ba69f; font-size: 58px; }.hosmed-software__truth h2 { margin: 0; color: #0b3559; font-size: 22px; line-height: 1.25; }.hosmed-software__truth-inner > div:last-child { display: grid; grid-template-columns: repeat(4, 1fr); }.hosmed-software__truth-inner > div:last-child span { display: grid; gap: 8px; padding: 4px 15px; text-align: center; border-left: 1px solid #e1e7ec; }.hosmed-software__truth-inner > div:last-child i { color: #0ba69f; font-size: 20px; }.hosmed-software__truth-inner > div:last-child b { color: #465f74; font-size: 10px; }
.hosmed-software__cta { padding: 0 0 42px; }.hosmed-software__cta-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; padding: 22px 28px; color: #fff; border-radius: 11px; background: linear-gradient(100deg, #087d79, #073858); }.hosmed-software__cta-inner > i { width: 52px; height: 52px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; font-size: 22px; }.hosmed-software__cta h2 { margin: 0 0 3px; color: #fff; font-size: 21px; }.hosmed-software__cta p { margin: 0; color: #d5e3eb; font-size: 10px; }.hosmed-software__cta .heartox-btn { padding: 14px 22px; color: #0b3559; background: #fff; font-size: 11px; }

@media (max-width: 991px) { .hosmed-software__hero .container { grid-template-columns: 1fr; }.hosmed-software__dashboard { display: none; }.hosmed-software__module-grid { grid-template-columns: repeat(2, 1fr); }.hosmed-software__ai-inner { grid-template-columns: 1fr; }.hosmed-software__truth-inner { grid-template-columns: 1fr; } }
@media (max-width: 575px) { .hosmed-software__hero { min-height: 550px; }.hosmed-software__hero h1 { font-size: 37px; }.hosmed-software__module-grid { grid-template-columns: 1fr; }.hosmed-software__module { min-height: 0; }.hosmed-software__ai-inner { padding: 24px 20px; }.hosmed-software__ai h2 { font-size: 49px; }.hosmed-software__truth-inner > div:last-child { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }.hosmed-software__truth-inner > div:last-child span:nth-child(3) { border-left: 0; }.hosmed-software__cta-inner { grid-template-columns: 1fr; }.hosmed-software__cta-inner > i { display: none; } }

/* AI for Healthcare page */
.hosmed-ai { overflow: hidden; color: #66788a; background: #fff; font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif); }
.hosmed-ai h1, .hosmed-ai h2, .hosmed-ai h3 { font-family: var(--heartox-heading-font, "Nunito", sans-serif); }
.hosmed-ai__hero { min-height: 525px; display: flex; align-items: center; color: #fff; background: url("../images/backgrounds/slider-2.png") center/cover; }
.hosmed-ai__hero-copy { max-width: 660px; padding: 58px 0; }
.hosmed-ai__hero-copy > p:first-child { margin: 0 0 13px; color: #1cc1b8; font-size: 13px; font-weight: 800; letter-spacing: .3px; }
.hosmed-ai__hero h1 { margin: 0 0 14px; color: #fff; font-size: clamp(42px, 4vw, 68px); line-height: 1.05; font-weight: 750; }
.hosmed-ai__hero h2 { margin: 0 0 18px; color: #18bbb3; font-size: clamp(21px, 1.8vw, 29px); font-weight: 600; }
.hosmed-ai__hero-copy > p:nth-of-type(2) { max-width: 570px; margin: 0 0 24px; color: #d8e4ec; font-size: 14px; line-height: 1.75; }
.hosmed-ai__hero .heartox-btn { padding: 14px 22px; color: #fff; background: linear-gradient(100deg, #0ba099, #16bbb2); font-size: 12px; }
.hosmed-ai__hero .heartox-btn i, .hosmed-ai__decisions .heartox-btn i { margin-left: 7px; }
.hosmed-ai__possibilities { padding: 38px 0 26px; }
.hosmed-ai__heading { margin-bottom: 24px; text-align: center; }
.hosmed-ai__heading h2 { margin: 0; color: #0b3559; font-size: 34px; font-weight: 800; }
.hosmed-ai__heading h2 span { color: #0ba099; }
.hosmed-ai__heading > i { position: relative; display: block; width: 72px; height: 2px; margin: 11px auto 0; background: #0ba099; }
.hosmed-ai__heading > i::after { content: ""; position: absolute; top: -3px; left: 50%; width: 8px; height: 8px; border-radius: 50%; background: #e9ad45; transform: translateX(-50%); }
.hosmed-ai__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.hosmed-ai__card { min-height: 235px; display: flex; align-items: center; flex-direction: column; padding: 22px 15px 18px; text-align: center; border: 1px solid #e3e9ef; border-radius: 9px; background: #fff; box-shadow: 0 8px 24px rgba(8,48,80,.07); transition: transform .35s ease, color .35s ease, background .35s ease, box-shadow .35s ease; }
.hosmed-ai__card:hover { transform: translateY(-7px); color: #d5e3eb; background: linear-gradient(150deg, #0b3559, #096a71); box-shadow: 0 17px 38px rgba(8,48,80,.18); }
.hosmed-ai__card > span { width: 58px; height: 58px; display: grid; place-items: center; margin-bottom: 14px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #0ca39c, #077b77); font-size: 22px; transition: transform .4s ease, background .35s ease; }
.hosmed-ai__card:hover > span { transform: rotateY(180deg); background: #e9ad45; }
.hosmed-ai__card h3 { min-height: 44px; display: flex; align-items: center; margin: 0 0 10px; color: #0b3559; font-size: 15px; line-height: 1.3; font-weight: 800; transition: color .35s ease; }
.hosmed-ai__card:hover h3 { color: #fff; }
.hosmed-ai__card p { margin: 0; font-size: 10px; line-height: 1.6; }
.hosmed-ai__decisions { padding: 0 0 42px; }
.hosmed-ai__decisions-inner { min-height: 315px; display: grid; grid-template-columns: .8fr 1.2fr; overflow: hidden; color: #fff; border-radius: 12px; background: radial-gradient(circle at 72% 50%, rgba(8,169,161,.24), transparent 29%), linear-gradient(115deg, #082b49, #073858); }
.hosmed-ai__decisions-copy { padding: 40px 35px; }
.hosmed-ai__decisions h2 { margin: 0 0 10px; color: #fff; font-size: 31px; }
.hosmed-ai__decisions h2 span { color: #11b4ac; }
.hosmed-ai__decisions-copy p { max-width: 420px; margin: 0; color: #d9e4ec; font-size: 13px; line-height: 1.65; }
.hosmed-ai__decisions-copy > i { display: block; width: 48px; height: 2px; margin: 17px 0; background: #e9ad45; }
.hosmed-ai__decisions .heartox-btn { margin-top: 22px; padding: 13px 20px; color: #fff; background: #0aa59e; font-size: 11px; }
.hosmed-ai__visual { position: relative; min-height: 315px; display: grid; place-items: center; background-image: linear-gradient(rgba(15,184,174,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(15,184,174,.08) 1px, transparent 1px); background-size: 34px 34px; perspective: 700px; }
.hosmed-ai__visual > img { position: relative; z-index: 1; width: min(72%, 560px); height: auto; object-fit: contain; filter: drop-shadow(0 12px 25px rgba(0, 207, 255, .22)); animation: hosmedAiImageFloat 3.5s ease-in-out infinite; }
.hosmed-ai__chip { width: 150px; height: 150px; display: grid; place-items: center; position: relative; border: 2px solid #0dc1b7; border-radius: 24px; color: #17d7cc; background: rgba(4,50,72,.85); box-shadow: 0 0 30px rgba(12,193,183,.35), inset 0 0 25px rgba(12,193,183,.18); transform: rotateX(55deg) rotateZ(45deg); animation: hosmedAiFloat 3.2s ease-in-out infinite; }
.hosmed-ai__chip i, .hosmed-ai__chip b { position: absolute; transform: rotateZ(-45deg); }
.hosmed-ai__chip i { font-size: 55px; opacity: .32; }
.hosmed-ai__chip b { color: #fff; font-size: 38px; }
.hosmed-ai__visual > div { position: absolute; inset: 20px; }
.hosmed-ai__visual > div { z-index: 2; pointer-events: none; }
.hosmed-ai__visual > div p { position: absolute; min-width: 105px; margin: 0; padding: 9px 12px; border: 1px solid rgba(20,201,190,.35); border-radius: 6px; color: #9edbd7; background: rgba(5,39,61,.88); box-shadow: 0 7px 18px rgba(0,0,0,.16); font-size: 9px; }
.hosmed-ai__visual > div p strong { display: block; color: #fff; font-size: 17px; }
.hosmed-ai__visual > div p:nth-child(1) { top: 8%; left: 8%; }.hosmed-ai__visual > div p:nth-child(2) { top: 8%; right: 7%; }.hosmed-ai__visual > div p:nth-child(3) { bottom: 8%; left: 4%; }.hosmed-ai__visual > div p:nth-child(4) { right: 5%; bottom: 8%; }
@keyframes hosmedAiFloat { 0%,100% { transform: rotateX(55deg) rotateZ(45deg) translateZ(0); } 50% { transform: rotateX(55deg) rotateZ(45deg) translateZ(18px); } }
@keyframes hosmedAiImageFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 991px) {
  .hosmed-ai__hero { min-height: 470px; background-position: 62% center; }
  .hosmed-ai__grid { grid-template-columns: repeat(2, 1fr); }
  .hosmed-ai__card { min-height: 210px; }
  .hosmed-ai__decisions-inner { grid-template-columns: 1fr; }
}

@media (max-width: 575px) {
  .hosmed-ai__hero { min-height: 520px; align-items: flex-end; background-position: 67% center; }
  .hosmed-ai__hero-copy { padding: 45px 0; }
  .hosmed-ai__hero h1 { font-size: 35px; }
  .hosmed-ai__hero h2 { font-size: 20px; }
  .hosmed-ai__possibilities { padding: 30px 0 20px; }
  .hosmed-ai__heading h2 { font-size: 27px; }
  .hosmed-ai__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hosmed-ai__card { min-height: 225px; padding: 18px 10px; }
  .hosmed-ai__card h3 { font-size: 13px; }
  .hosmed-ai__decisions-copy { padding: 28px 22px; }
  .hosmed-ai__decisions h2 { font-size: 27px; }
  .hosmed-ai__visual { min-height: 280px; }
}

/* Why HosmedAI page */
.hosmed-why { overflow: hidden; color: #66788a; background: #fff; font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif); }
.hosmed-why h1, .hosmed-why h2, .hosmed-why h3 { font-family: var(--heartox-heading-font, "Nunito", sans-serif); }
.hosmed-why__hero { position: relative; padding: 70px 0 88px; color: #fff; background: linear-gradient(90deg, rgba(5,38,66,.98), rgba(5,42,71,.86) 55%, rgba(5,38,66,.28)), url("../images/backgrounds/slider-1-1.jpg") center 48%/cover; }
.hosmed-why__hero::after { content: ""; position: absolute; right: -3%; bottom: -1px; width: 53%; height: 70px; background: #fff; clip-path: ellipse(67% 38% at 70% 100%); }
.hosmed-why__hero-copy { position: relative; z-index: 1; max-width: 700px; }
.hosmed-why__hero-copy > p:first-child { display: flex; align-items: center; gap: 12px; margin: 0 0 13px; color: #f2af35; font-size: 13px; font-weight: 800; }
.hosmed-why__hero-copy > p:first-child::after { content: ""; width: 45px; height: 2px; background: #f2af35; }
.hosmed-why__hero h1 { margin: 0 0 5px; color: #fff; font-size: clamp(38px, 3.4vw, 58px); line-height: 1.08; }
.hosmed-why__hero h2 { margin: 0 0 16px; color: #19b6ae; font-size: clamp(25px, 2.3vw, 38px); }
.hosmed-why__hero-copy > p:last-child { max-width: 610px; margin: 0; color: #d5e0e9; font-size: 14px; line-height: 1.75; }
.hosmed-why__reasons { padding: 38px 0 45px; background-image: radial-gradient(rgba(14,79,116,.1) 1px, transparent 1px); background-size: 18px 18px; }
.hosmed-why__reasons-grid { position: relative; max-width: 1040px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 105px; margin: 0 auto; }
.hosmed-why__timeline { position: absolute; top: 30px; bottom: 30px; left: 50%; width: 2px; background: linear-gradient(#0ba49e, #e9a525); transform: translateX(-50%); }
.hosmed-why__reason { position: relative; min-height: 145px; display: grid; grid-template-columns: 94px 1fr; align-items: center; padding: 20px 24px 20px 55px; border-radius: 12px; background: #fff; box-shadow: 0 13px 35px rgba(9,48,80,.12); transition: transform .35s ease, box-shadow .35s ease; }
.hosmed-why__reason:hover { transform: translateY(-7px); box-shadow: 0 20px 44px rgba(9,48,80,.18); }
.hosmed-why__reason--right { margin-top: 58px; }
.hosmed-why__reason b { position: absolute; top: 0; left: 0; width: 66px; height: 54px; display: grid; place-items: center; color: #fff; border-radius: 12px 0 28px; background: linear-gradient(135deg, #18aea7, #058782); font-size: 24px; }
.hosmed-why__reason--right b { background: linear-gradient(135deg, #f7b536, #ed8f00); }
.hosmed-why__reason-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: linear-gradient(135deg, #16aea7, #057c78); font-size: 30px; box-shadow: 0 8px 18px rgba(5,126,121,.22); }
.hosmed-why__reason--right .hosmed-why__reason-icon { background: linear-gradient(135deg, #f7b536, #ed8f00); box-shadow: 0 8px 18px rgba(237,143,0,.22); }
.hosmed-why__reason h3 { margin: 0; color: #088f89; font-size: 19px; font-weight: 800; }
.hosmed-why__reason--right h3 { color: #ee9307; }
.hosmed-why__reason h3 + span { display: block; width: 33px; height: 2px; margin: 8px 0; background: #0aa39d; }
.hosmed-why__reason--right h3 + span { background: #ee9307; }
.hosmed-why__reason p { margin: 0; font-size: 12px; line-height: 1.6; }
.hosmed-why__advantage { padding: 0 0 25px; }
.hosmed-why__advantage-inner { padding: 22px 30px 28px; color: #d5e0e9; border-radius: 12px; background: linear-gradient(120deg, #082b49, #0d3d64); }
.hosmed-why__advantage h2 { margin: 0 0 19px; color: #fff; text-align: center; font-size: 23px; font-weight: 500; }
.hosmed-why__advantage h2 span { color: #f2af35; }
.hosmed-why__advantage-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hosmed-why__advantage-grid > div { padding: 0 24px; border-left: 1px solid rgba(255,255,255,.18); }
.hosmed-why__advantage-grid > div:first-child { border-left: 0; }
.hosmed-why__advantage-grid i { width: 42px; height: 42px; display: grid; place-items: center; float: left; margin: 0 11px 9px 0; border-radius: 50%; color: #fff; background: #0eaaa3; }
.hosmed-why__advantage-grid > div:nth-child(even) i { background: #f1a626; }
.hosmed-why__advantage-grid h3 { margin: 3px 0 10px; color: #fff; font-size: 14px; }
.hosmed-why__advantage-grid p { clear: both; margin: 0; font-size: 10px; line-height: 1.55; }
.hosmed-why__cta { padding: 0 0 42px; }
.hosmed-why__cta-inner { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 38px; color: #fff; border-radius: 12px; background: linear-gradient(100deg, rgba(5,145,139,.97), rgba(6,63,91,.88)), url("../images/about/about-001.png") right 35%/cover; }
.hosmed-why__cta h2 { margin: 0 0 4px; color: #fff; font-size: 23px; }
.hosmed-why__cta p { max-width: 580px; margin: 0; color: #e3eef3; font-size: 11px; }
.hosmed-why__cta .heartox-btn { padding: 14px 24px; color: #0b3559; background: #fff; font-size: 12px; }

@media (max-width: 991px) {
  .hosmed-why__reasons-grid { gap: 25px 35px; }
  .hosmed-why__timeline { display: none; }
  .hosmed-why__reason--right { margin-top: 30px; }
  .hosmed-why__advantage-grid { grid-template-columns: repeat(2, 1fr); gap: 25px 0; }
  .hosmed-why__advantage-grid > div:nth-child(3) { border-left: 0; }
}

@media (max-width: 575px) {
  .hosmed-why__hero { padding: 42px 0 60px; }
  .hosmed-why__hero h1 { font-size: 33px; }
  .hosmed-why__hero h2 { font-size: 24px; }
  .hosmed-why__reasons { padding: 30px 0; }
  .hosmed-why__reasons-grid { grid-template-columns: 1fr; gap: 17px; }
  .hosmed-why__reason--right { margin-top: 0; }
  .hosmed-why__reason { grid-template-columns: 78px 1fr; min-height: 130px; padding: 18px 18px 18px 45px; }
  .hosmed-why__reason-icon { width: 65px; height: 65px; font-size: 25px; }
  .hosmed-why__reason h3 { font-size: 17px; }
  .hosmed-why__advantage-grid { grid-template-columns: 1fr 1fr; }
  .hosmed-why__advantage-grid > div { padding: 0 12px; }
  .hosmed-why__cta-inner { align-items: flex-start; flex-direction: column; padding: 22px; }
}

/* HosmedAI Solutions page */
.hosmed-solutions { overflow: hidden; color: #68798b; background: #fff; font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif); }
.hosmed-solutions h1, .hosmed-solutions h2, .hosmed-solutions h3 { font-family: var(--heartox-heading-font, "Nunito", sans-serif); }
.hosmed-solutions__hero { position: relative; padding: 66px 0 92px; color: #fff; background: linear-gradient(90deg, rgba(5,38,66,.98), rgba(6,43,72,.88) 54%, rgba(6,41,69,.58)), url("../images/backgrounds/slider-1-1.jpg") center 48%/cover; }
.hosmed-solutions__hero::after { content: ""; position: absolute; right: -4%; bottom: -1px; width: 56%; height: 82px; background: #fff; clip-path: ellipse(67% 39% at 70% 100%); border-top: 5px solid #efad35; }
.hosmed-solutions__hero-copy { position: relative; z-index: 1; max-width: 720px; }
.hosmed-solutions__eyebrow { margin: 0 0 10px; color: #f2af35; font-family: var(--heartox-special-font, "Caveat", cursive); font-size: 21px; font-weight: 700; }
.hosmed-solutions__hero h1 { margin: 0; max-width: 660px; color: #fff; font-size: clamp(38px, 3.5vw, 60px); line-height: 1.1; font-weight: 700; }
.hosmed-solutions__hero-copy > span { display: block; width: 64px; height: 3px; margin: 22px 0; background: #efad35; }
.hosmed-solutions__hero-copy > p:last-child { max-width: 590px; margin: 0; color: #d3dee8; font-size: 14px; line-height: 1.75; }
.hosmed-solutions__content { padding-top: 42px; padding-bottom: 48px; }
.hosmed-solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px; }
.hosmed-solutions__card { position: relative; overflow: hidden; min-height: 330px; display: flex; align-items: center; flex-direction: column; padding: 30px 25px 25px; text-align: center; border: 1px solid #e3e9ee; border-radius: 10px; background: #fff; box-shadow: 0 10px 28px rgba(11,53,89,.07); transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.hosmed-solutions__card::before { content: ""; position: absolute; inset: auto 0 0; height: 0; background: linear-gradient(180deg, #0d3b61, #082b49); transition: height .4s ease; }
.hosmed-solutions__card:hover { transform: translateY(-8px); border-color: #efad35; box-shadow: 0 18px 40px rgba(11,53,89,.14); }
.hosmed-solutions__card:hover::before { height: 100%; }
.hosmed-solutions__card > * { position: relative; z-index: 1; }
.hosmed-solutions__icon { width: 82px; height: 82px; display: grid; place-items: center; margin-bottom: 17px; border: 9px solid #edf2f6; border-radius: 50%; color: #f2af35; background: #0b3559; font-size: 28px; box-shadow: 0 0 0 1px #dfe7ed; transition: transform .4s ease; }
.hosmed-solutions__card:hover .hosmed-solutions__icon { transform: rotateY(180deg); }
.hosmed-solutions__card > p { margin: 0 0 8px; color: #eca930; font-size: 10px; font-weight: 800; letter-spacing: .3px; }
.hosmed-solutions__card h3 { margin: 0; color: #0b2f50; font-size: 19px; font-weight: 800; transition: color .3s ease; }
.hosmed-solutions__card > span { width: 35px; height: 2px; margin: 13px 0; background: #efad35; }
.hosmed-solutions__card > div:not(.hosmed-solutions__icon) { min-height: 61px; font-size: 12px; line-height: 1.65; transition: color .3s ease; }
.hosmed-solutions__card > a { margin-top: auto; color: #0b3559; font-size: 11px; font-weight: 800; transition: color .3s ease; }
.hosmed-solutions__card > a i { margin-left: 5px; color: #efad35; transition: transform .25s ease; }
.hosmed-solutions__card:hover h3, .hosmed-solutions__card:hover > a { color: #fff; }
.hosmed-solutions__card:hover > div:not(.hosmed-solutions__icon) { color: #cfdae4; }
.hosmed-solutions__card:hover > a i { transform: translateX(4px); }
.hosmed-solutions__stats { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 28px; padding: 25px 30px; color: #fff; border-radius: 10px; background: linear-gradient(105deg, #082b49, #0e3d64); }
.hosmed-solutions__stats > div { display: flex; align-items: center; justify-content: center; gap: 13px; border-left: 1px solid rgba(255,255,255,.13); }
.hosmed-solutions__stats > div:first-child { border-left: 0; }
.hosmed-solutions__stats i { color: #efad35; font-size: 25px; }
.hosmed-solutions__stats p { margin: 0; }
.hosmed-solutions__stats strong, .hosmed-solutions__stats span { display: block; }
.hosmed-solutions__stats strong { font-size: 22px; line-height: 1; }
.hosmed-solutions__stats span { margin-top: 4px; color: #c9d6e1; font-size: 10px; }
.hosmed-solutions__cta { position: relative; overflow: hidden; min-height: 116px; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 25px; padding: 25px 35px; border-radius: 10px; background: linear-gradient(100deg, #f7bd51, #efa92c); }
.hosmed-solutions__cta h2 { margin: 0 0 3px; color: #092f50; font-size: 24px; }
.hosmed-solutions__cta p { max-width: 650px; margin: 0; color: #20445f; font-size: 11px; }
.hosmed-solutions__cta .heartox-btn { z-index: 1; padding: 15px 24px; color: #fff; background: #0b3559; font-size: 12px; }
.hosmed-solutions__cta > i { position: absolute; right: 7%; color: rgba(87,54,8,.15); font-size: 112px; transform: rotate(-18deg); }

@media (max-width: 991px) {
  .hosmed-solutions__grid { grid-template-columns: repeat(2, 1fr); }
  .hosmed-solutions__hero { padding: 55px 0 75px; }
}

@media (max-width: 575px) {
  .hosmed-solutions__hero { padding: 40px 0 60px; }
  .hosmed-solutions__hero h1 { font-size: 31px; }
  .hosmed-solutions__content { padding: 30px 0; }
  .hosmed-solutions__grid { grid-template-columns: 1fr; gap: 16px; }
  .hosmed-solutions__card { min-height: 295px; padding: 24px 20px; }
  .hosmed-solutions__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; padding: 22px 12px; }
  .hosmed-solutions__stats > div:nth-child(3) { border-left: 0; }
  .hosmed-solutions__cta { align-items: flex-start; flex-direction: column; padding: 22px; }
  .hosmed-solutions__cta h2 { font-size: 21px; }
}

/* HosmedAI Projects page */
.hosmed-projects {
  overflow: hidden;
  color: #637487;
  background: #fff;
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
}

.hosmed-projects h1, .hosmed-projects h2, .hosmed-projects h3 { font-family: var(--heartox-heading-font, "Nunito", sans-serif); }
.hosmed-projects__hero { position: relative; padding: 66px 0 82px; color: #fff; background: linear-gradient(90deg, rgba(5,38,66,.98) 0%, rgba(7,48,80,.92) 54%, rgba(5,38,66,.7) 100%), url("../images/backgrounds/slider-1-1.jpg") center 43%/cover; }
.hosmed-projects__hero::after { content: ""; position: absolute; right: -4%; bottom: -1px; width: 52%; height: 72px; background: #fff; clip-path: ellipse(64% 38% at 68% 100%); border-top: 4px solid #efae37; }
.hosmed-projects__hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 70px; position: relative; z-index: 1; }
.hosmed-projects__hero-copy { max-width: 710px; }
.hosmed-projects__eyebrow { margin: 0 0 12px; color: #f2af35; font-family: var(--heartox-special-font, "Caveat", cursive); font-size: 21px; font-weight: 700; }
.hosmed-projects__hero h1 { margin: 0; color: #fff; font-size: clamp(36px, 3.15vw, 58px); line-height: 1.12; font-weight: 700; }
.hosmed-projects__accent { display: block; width: 64px; height: 3px; margin: 20px 0; background: #efae37; }
.hosmed-projects__hero-copy > p:last-child { max-width: 585px; margin: 0; color: #d6e1eb; font-size: 15px; line-height: 1.75; }
.hosmed-projects__impact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px 30px; padding: 32px; border: 1px solid rgba(255,255,255,.18); border-radius: 16px; background: rgba(5,32,55,.3); backdrop-filter: blur(5px); }
.hosmed-projects__impact > div { display: flex; align-items: center; gap: 13px; }
.hosmed-projects__impact i { color: #f2af35; font-size: 25px; }
.hosmed-projects__impact p { margin: 0; }
.hosmed-projects__impact strong, .hosmed-projects__impact span { display: block; }
.hosmed-projects__impact strong { color: #fff; font-size: 24px; line-height: 1; }
.hosmed-projects__impact span { margin-top: 5px; color: #cedae5; font-size: 11px; }
.hosmed-projects__showcase { padding-top: 45px; padding-bottom: 55px; }
.hosmed-projects__filters { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; overflow-x: auto; scrollbar-width: none; }
.hosmed-projects__filters::-webkit-scrollbar { display: none; }
.hosmed-projects__filters button, .hosmed-projects__filters span { flex: 0 0 auto; border: 1px solid #dce4eb; border-radius: 5px; padding: 9px 13px; color: #506376; background: #f7f9fb; font: 600 11px/1 var(--heartox-font, sans-serif); }
.hosmed-projects__filters button { cursor: pointer; }
.hosmed-projects__filters button.active, .hosmed-projects__filters button:hover { color: #fff; border-color: #0b3559; background: #0b3559; }
.hosmed-projects__filters span { margin-left: auto; min-width: 125px; display: flex; justify-content: space-between; }
.hosmed-projects__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hosmed-projects__card { overflow: hidden; border: 1px solid #e2e8ee; border-radius: 9px; background: #fff; box-shadow: 0 10px 30px rgba(11,53,89,.07); transition: transform .35s ease, box-shadow .35s ease; }
.hosmed-projects__card:hover { transform: translateY(-8px); box-shadow: 0 18px 40px rgba(11,53,89,.15); }
.hosmed-projects__image { position: relative; height: 210px; overflow: hidden; }
.hosmed-projects__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hosmed-projects__card:hover img { transform: scale(1.06); }
.hosmed-projects__image span { position: absolute; top: 12px; right: 12px; padding: 6px 10px; border-radius: 4px; color: #fff; background: #0b3559; font-size: 10px; font-weight: 700; }
.hosmed-projects__card-body { padding: 19px 20px 20px; }
.hosmed-projects__card-body > p:first-child { margin: 0 0 5px; color: #e7a72f; font-size: 10px; font-weight: 700; }
.hosmed-projects__card h3 { margin: 0 0 10px; color: #0b2f50; font-size: 18px; line-height: 1.25; font-weight: 800; }
.hosmed-projects__meta span { color: #637487; font-size: 11px; }
.hosmed-projects__meta i { margin-right: 6px; color: #e7a72f; }
.hosmed-projects__services { min-height: 40px; margin: 10px 0 13px; padding-top: 10px; border-top: 1px solid #edf1f4; font-size: 11px; line-height: 1.55; }
.hosmed-projects__card-body a { color: #0b3559; font-size: 11px; font-weight: 800; }
.hosmed-projects__card-body a i { margin-left: 5px; color: #e7a72f; transition: transform .25s ease; }
.hosmed-projects__card-body a:hover i { transform: translateX(4px); }
.hosmed-projects__promise { padding: 0 0 30px; }
.hosmed-projects__promise-inner { display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 0; padding: 28px 30px; color: #d5e0ea; border-radius: 12px; background: linear-gradient(120deg, #082b49, #0e3c63); }
.hosmed-projects__promise-inner > div { padding: 0 22px; border-left: 1px solid rgba(255,255,255,.14); }
.hosmed-projects__promise-inner > div:first-child { padding-left: 0; border-left: 0; }
.hosmed-projects__promise h2, .hosmed-projects__promise h3 { margin: 0; color: #fff; }
.hosmed-projects__promise h2 { font-size: 24px; line-height: 1.2; }
.hosmed-projects__promise h3 { margin: 9px 0 5px; font-size: 14px; }
.hosmed-projects__promise i { color: #f2af35; font-size: 22px; }
.hosmed-projects__promise p { margin: 0; font-size: 10px; line-height: 1.5; }
.hosmed-projects__cta { padding: 0 0 45px; }
.hosmed-projects__cta-inner { position: relative; overflow: hidden; min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 24px 34px; border-radius: 12px; background: linear-gradient(100deg, #f7bd51, #efa92c); box-shadow: 0 12px 30px rgba(234,168,48,.24); }
.hosmed-projects__cta h2 { margin: 0 0 3px; color: #092e4e; font-size: 24px; }
.hosmed-projects__cta p { margin: 0; color: #183d5b; font-size: 11px; }
.hosmed-projects__cta .heartox-btn { z-index: 1; padding: 15px 24px; color: #fff; background: #0b3559; font-size: 12px; }
.hosmed-projects__cta-inner > i { position: absolute; right: 8%; color: rgba(105,69,13,.15); font-size: 110px; transform: rotate(-18deg); }

@media (max-width: 991px) {
  .hosmed-projects__hero { padding: 55px 0 70px; }
  .hosmed-projects__hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hosmed-projects__impact { max-width: 620px; }
  .hosmed-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .hosmed-projects__promise-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .hosmed-projects__promise-inner > div:nth-child(3) { border-left: 0; }
  .hosmed-projects__promise-inner > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 575px) {
  .hosmed-projects__hero { padding: 40px 0 58px; }
  .hosmed-projects__hero h1 { font-size: 31px; }
  .hosmed-projects__hero-copy > p:last-child { font-size: 13px; }
  .hosmed-projects__impact { gap: 20px 12px; padding: 22px 16px; }
  .hosmed-projects__impact strong { font-size: 20px; }
  .hosmed-projects__impact i { font-size: 20px; }
  .hosmed-projects__showcase { padding: 30px 0 36px; }
  .hosmed-projects__filters { margin-bottom: 20px; }
  .hosmed-projects__grid { grid-template-columns: 1fr; gap: 17px; }
  .hosmed-projects__image { height: 195px; }
  .hosmed-projects__promise-inner { grid-template-columns: 1fr 1fr; padding: 24px 15px; }
  .hosmed-projects__promise-inner > div { padding: 0 12px; }
  .hosmed-projects__promise-inner > div:nth-child(2), .hosmed-projects__promise-inner > div:nth-child(4) { border-left: 0; }
  .hosmed-projects__promise-inner > div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.14); }
  .hosmed-projects__cta { padding-bottom: 30px; }
  .hosmed-projects__cta-inner { align-items: flex-start; flex-direction: column; padding: 22px; }
  .hosmed-projects__cta h2 { font-size: 21px; }
}

/* HosmedAI Contact page */
.hosmed-contact {
  color: var(--heartox-text, #66788a);
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
  background: #fff;
}

.hosmed-contact h1,
.hosmed-contact h2,
.hosmed-contact h3,
.hosmed-contact strong,
.hosmed-contact .heartox-btn {
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-weight: 700;
}

.hosmed-contact__hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 39, 68, 0.99) 0%, rgba(7, 42, 73, 0.9) 47%, rgba(7, 42, 73, 0.25) 78%),
    url("../images/backgrounds/slider-3.png") center / cover no-repeat;
}

.hosmed-contact__hero::after {
  content: "";
  width: 430px;
  height: 430px;
  position: absolute;
  right: -180px;
  bottom: -250px;
  border: 75px solid rgba(233, 173, 69, 0.2);
  border-radius: 50%;
}

.hosmed-contact__hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 1;
}

.hosmed-contact__eyebrow {
  margin: 0 0 12px;
  color: var(--heartox-secondary, #e9ad45);
  font-family: var(--heartox-special-font, "Caveat", cursive);
  font-size: 25px;
  font-weight: 700;
  text-transform: capitalize;
}

.hosmed-contact__hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.08;
}

.hosmed-contact__accent {
  width: 65px;
  height: 2px;
  display: block;
  margin: 24px 0;
  background: var(--heartox-secondary, #e9ad45);
}

.hosmed-contact__hero-copy > p:not(.hosmed-contact__eyebrow) {
  max-width: 650px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
}

.hosmed-contact__heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.hosmed-contact__heading h2,
.hosmed-contact__intro h2 {
  margin: 0;
  color: var(--heartox-base, #102a43);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.15;
}

.hosmed-contact__needs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.hosmed-contact__needs-grid article {
  min-height: 210px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid #e0e7ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.07);
  transition: transform 350ms ease, color 350ms ease, background-color 350ms ease;
}

.hosmed-contact__needs-grid article:hover {
  transform: translateY(-7px);
  color: #fff;
  background: var(--heartox-base, #102a43);
}

.hosmed-contact__needs-grid article > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 14px;
  color: var(--heartox-secondary, #e9ad45);
  background: var(--heartox-base, #102a43);
  font-size: 22px;
  transition: background-color 350ms ease;
}

.hosmed-contact__needs-grid article:hover > i {
  background: var(--heartox-primary, #1b3f63);
}

.hosmed-contact__needs-grid h3 {
  margin: 0;
  color: var(--heartox-base, #102a43);
  font-size: 19px;
  line-height: 1.4;
  transition: color 350ms ease;
}

.hosmed-contact__needs-grid article:hover h3 {
  color: #fff;
}

.hosmed-contact__needs-grid article > span {
  position: absolute;
  right: 14px;
  bottom: -12px;
  color: rgba(16, 42, 67, 0.07);
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: 70px;
  font-weight: 800;
}

.hosmed-contact__consultation {
  background: #f2f5f8;
}

.hosmed-contact__consultation-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 65px;
  align-items: center;
}

.hosmed-contact__intro > p:not(.hosmed-contact__eyebrow) {
  margin: 22px 0 28px;
  font-size: 16px;
  line-height: 1.75;
}

.hosmed-contact__channel {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 14px;
  padding: 16px;
  border-radius: 13px;
  background: #fff;
}

.hosmed-contact__channel > i {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heartox-secondary, #e9ad45);
  background: var(--heartox-base, #102a43);
}

.hosmed-contact__channel span,
.hosmed-contact__channel a,
.hosmed-contact__channel strong {
  display: block;
}

.hosmed-contact__channel span {
  margin-bottom: 3px;
  font-size: 12px;
}

.hosmed-contact__channel a,
.hosmed-contact__channel strong {
  color: var(--heartox-base, #102a43);
  font-size: 14px;
}

.hosmed-contact__form {
  padding: 35px;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(16, 42, 67, 0.12);
}

.hosmed-contact__form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.hosmed-contact__form label,
.hosmed-contact__form label > span {
  display: block;
}

.hosmed-contact__form label > span {
  margin-bottom: 7px;
  color: var(--heartox-base, #102a43);
  font-size: 13px;
  font-weight: 700;
}

.hosmed-contact__form input,
.hosmed-contact__form select,
.hosmed-contact__form textarea {
  width: 100%;
  border: 1px solid #dce4ea;
  border-radius: 9px;
  outline: 0;
  padding: 13px 14px;
  color: var(--heartox-base, #102a43);
  background: #f8fafb;
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.hosmed-contact__form input:focus,
.hosmed-contact__form select:focus,
.hosmed-contact__form textarea:focus {
  border-color: var(--heartox-secondary, #e9ad45);
  box-shadow: 0 0 0 3px rgba(233, 173, 69, 0.14);
}

.hosmed-contact__form textarea {
  resize: vertical;
}

.hosmed-contact__form-full {
  grid-column: 1 / -1;
}

.hosmed-contact__brand {
  padding: 38px 0;
  background: #fff;
}

.hosmed-contact__brand-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding: 35px 42px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(120deg, #102a43, #1b3f63);
}

.hosmed-contact__brand-inner p {
  margin: 0 0 3px;
  color: var(--heartox-secondary, #e9ad45);
  font-family: var(--heartox-special-font, "Caveat", cursive);
  font-size: 23px;
  font-weight: 700;
}

.hosmed-contact__brand-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 34px;
}

.hosmed-contact__brand-inner span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991px) {
  .hosmed-contact__needs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hosmed-contact__consultation-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 767px) {
  .hosmed-contact__hero {
    min-height: 480px;
    padding: 55px 8px;
  }

  .hosmed-contact__hero h1 {
    font-size: 39px;
  }

  .hosmed-contact__hero-copy > p:not(.hosmed-contact__eyebrow) {
    font-size: 15px;
    line-height: 1.65;
  }

  .hosmed-contact .section-space {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }

  .hosmed-contact__heading {
    margin-bottom: 24px;
  }

  .hosmed-contact__heading h2,
  .hosmed-contact__intro h2 {
    font-size: 30px;
  }

  .hosmed-contact__needs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hosmed-contact__needs-grid article {
    min-height: 125px;
    padding: 18px;
  }

  .hosmed-contact__needs-grid article > i {
    width: 45px;
    height: 45px;
    margin-bottom: 14px;
  }

  .hosmed-contact__form {
    padding: 23px 17px;
  }

  .hosmed-contact__form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hosmed-contact__form-full {
    grid-column: auto;
  }

  .hosmed-contact__brand {
    padding: 22px 0;
  }

  .hosmed-contact__brand-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 27px 22px;
  }

  .hosmed-contact__brand-inner h2 {
    font-size: 28px;
  }
}

/* Shared Home and About FAQ */
.hosmed-faq {
  position: relative;
  overflow: hidden;
  padding: 65px 0;
  background: #f7f9f8;
}

.hosmed-faq::before,
.hosmed-faq::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hosmed-faq::before {
  width: 240px;
  height: 240px;
  top: -150px;
  left: -90px;
  border: 45px solid rgba(233, 173, 69, 0.12);
}

.hosmed-faq::after {
  width: 180px;
  height: 180px;
  right: -80px;
  bottom: -110px;
  background: rgba(27, 63, 99, 0.08);
}

.hosmed-faq__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
}

.hosmed-faq__heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.hosmed-faq__heading > p {
  margin: 0 0 10px;
  color: var(--heartox-secondary, #e9ad45);
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.hosmed-faq__heading h2 {
  margin: 0;
  color: var(--heartox-base, #102a43);
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
}

.hosmed-faq__list {
  border-top: 1px solid #d8e0e6;
}

.hosmed-faq__item {
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #d8e0e6;
  border-radius: 0;
  background: transparent;
  transition: background-color 350ms ease;
}

.hosmed-faq__item[open] {
  background: #fff;
}

.hosmed-faq__item summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 4px 15px 0;
  cursor: pointer;
  list-style: none;
  color: var(--heartox-base, #102a43);
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
  font-size: 17px;
  font-weight: 700;
}

.hosmed-faq__item summary::-webkit-details-marker {
  display: none;
}

.hosmed-faq__item summary i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heartox-primary, #1b3f63);
  background: rgba(233, 173, 69, 0.18);
  font-size: 12px;
  transition: transform 350ms ease;
}

.hosmed-faq__item[open] summary i {
  transform: rotate(45deg);
}

.hosmed-faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  animation: hosmedFaqReveal 450ms ease forwards;
}

.hosmed-faq__answer p {
  overflow: hidden;
  margin: 0;
  max-width: 950px;
  padding: 0 55px 20px 0;
  color: var(--heartox-text, #66788a);
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  line-height: 1.75;
}

@keyframes hosmedFaqReveal {
  to {
    grid-template-rows: 1fr;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .hosmed-faq {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .hosmed-faq__inner {
    padding: 0 3px;
  }

  .hosmed-faq__heading {
    margin-bottom: 20px;
  }

  .hosmed-faq__heading > p {
    font-size: 11px;
  }

  .hosmed-faq__heading h2 {
    font-size: 27px;
  }

  .hosmed-faq__item summary {
    min-height: 58px;
    padding: 12px 2px 12px 0;
    font-size: 15px;
  }

  .hosmed-faq__answer p {
    padding: 0 42px 16px 0;
    font-size: 13px;
    line-height: 1.65;
  }
}

/* High-contrast header after the page starts scrolling. */
.main-header--one.sticky-header--cloned,
.main-header--one.sticky-header--cloned .main-header__inner,
.main-header--one.sticky-header--cloned .main-header__bottom {
  background-color: var(--heartox-base, #102a43);
}

.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li > a {
  color: var(--heartox-white, #fff);
}

.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li.current > a,
.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li:hover > a {
  color: var(--heartox-secondary, #e9ad45);
}

.main-header--one.sticky-header--cloned .mobile-nav__btn {
  background-color: var(--heartox-secondary, #e9ad45);
}

.main-header--one.sticky-header--cloned .mobile-nav__btn span {
  background-color: var(--heartox-base, #102a43);
}

@media (max-width: 767px) {
  .main-header--one,
  .main-header--one.sticky-header--cloned {
    padding: 8px;
    background: var(--heartox-base, #102a43);
  }

  .main-header--one .main-header__inner,
  .main-header--one.sticky-header--cloned .main-header__inner {
    width: 100%;
    min-height: 64px;
    padding: 5px 14px;
    border: 1px solid rgba(16, 42, 67, 0.08);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(4, 28, 50, 0.18);
  }

  .main-header--one .main-header__logo {
    width: 150px;
    min-width: 150px;
    height: 52px;
    justify-content: flex-start;
  }

  .main-header--one .main-header__logo a {
    display: flex;
    align-items: center;
    gap: 7px;
    height: 100%;
  }

  .main-header--one .main-header__logo a::after {
    content: "HosmedAI";
    color: var(--heartox-base, #102a43);
    font-family: var(--heartox-heading-font, "Nunito", sans-serif);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  .main-header--one .main-header__logo img {
    width: 45px !important;
    height: 45px !important;
    flex: 0 0 45px;
    object-fit: cover;
    object-position: center 39%;
    transform: scale(1.65);
  }

  .main-header--one .main-header__right {
    right: 14px;
    gap: 12px;
  }

  .main-header--one .main-header__right::before {
    content: "";
    width: 1px;
    height: 32px;
    background: #d9dee4;
  }

  .main-header--one .mobile-nav__btn,
  .main-header--one.sticky-header--cloned .mobile-nav__btn {
    width: 40px;
    height: 40px;
    padding: 11px 9px;
    border-radius: 9px;
    background: var(--heartox-base, #102a43);
    box-shadow: 0 4px 10px rgba(16, 42, 67, 0.22);
  }

  .main-header--one .mobile-nav__btn span,
  .main-header--one.sticky-header--cloned .mobile-nav__btn span {
    background: #fff;
  }
}
@media (max-width: 575px) {
  .section-space {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-space-two {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space-two {
    padding-top: 97px;
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-two {
    padding-top: 77px;
    padding-bottom: 80px;
  }
}

.section-space-top {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-top {
    padding-top: 80px;
  }
}

.section-space-bottom {
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media (max-width: 575px) {
  .section-space-bottom {
    padding-bottom: 80px;
  }
}

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

.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(--heartox-base, #102A43);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--heartox-text, #66788A);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--heartox-black, #132238);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--heartox-base, #102A43);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--heartox-black, #132238);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  /* The mirrored vendor scripts are unavailable, so they cannot dismiss the
     loading overlay. Keep every static page accessible without JavaScript. */
  display: none;
  -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%;
}

/* Scroll To Top */
#scroll-percentage {
  position: absolute;
}

.scroll-top {
  height: 60px;
  width: 60px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: fixed;
  bottom: 25px;
  right: 30px;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  z-index: 100;
}

.scroll-top.active {
  bottom: 30px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  animation: 500ms ease-in-out 0s normal none 1 running scroll-Top;
  transition: 0.3s;
}

.scroll-top-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 600;
}

.scroll-top-value i {
  font-size: 20px;
}

@-webkit-keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scroll-Top {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* post paginations */
.post-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.post-pagination a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  line-height: 235%;
  border: 1px solid var(--heartox-gray, #CBD4DE);
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon {
  font-size: 20px;
  color: var(--heartox-base, #102A43);
  transition: all 400ms ease;
}
.post-pagination a:hover {
  border-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--heartox-white, #fff);
}
.post-pagination li.active a {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.post-pagination li.active a .post-pagination__icon {
  color: var(--heartox-white, #fff);
}

.heartox-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.heartox-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.heartox-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.heartox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--heartox-white, #fff);
  transition: all 500ms ease;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
  border-color: var(--heartox-base, #102A43);
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  margin-top: 50px;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  width: 38px;
  height: 8px;
  display: block;
  border-radius: 0;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  background-color: var(--heartox-primary, #1B3F63);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  display: none;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .heartox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--heartox-base, #102A43);
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.heartox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--heartox-black, #132238);
  color: var(--heartox-white, #fff);
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
}
.ui-datepicker-calendar td {
  background-color: var(--heartox-gray, #CBD4DE);
  background-image: none;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  color: var(--heartox-text, #66788A);
}
.ui-datepicker-calendar td a {
  border-color: var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-gray, #CBD4DE);
  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(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-gray, #CBD4DE);
  background-image: none;
  color: var(--heartox-text, #66788A);
  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(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.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(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-black, #132238);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.volunteer-video {
  position: relative;
  padding-top: 423px;
}
.volunteer-video__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.volunteer-video__inner {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  padding-top: 111px;
}
.volunteer-video__content {
  max-width: 755px;
  border-radius: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.9);
  padding: 1px 50px 50px;
}
.volunteer-video__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  text-align: center;
  color: var(--heartox-white, #fff);
  margin-bottom: 20px;
}
.volunteer-video__btn {
  text-align: center;
}
.volunteer-video__btn .heartox-btn {
  padding: 13px 38px;
}
.volunteer-video__btn .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.volunteer-video .video__popup {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: -60px;
}
.volunteer-video .video__popup:hover {
  background-color: var(--heartox-primary, #1B3F63);
}

.team-card__inner {
  padding: 0 30px 30px;
  position: relative;
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}
.team-card__inner::after {
  content: "";
  width: 100%;
  top: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 11px;
  background-color: transparent;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  transition: all 0.4s ease-in-out;
}
.team-card__inner::before {
  content: "";
  width: 100%;
  top: 30px;
  transform: translateY(100%);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 11px;
  background-color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
.team-card__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.team-card__image img {
  object-fit: cover;
  width: 100%;
  transform: scale(1);
  transition: all 1200ms ease-in-out;
}
.team-card__content {
  position: absolute;
  z-index: 1;
  right: 60px;
  left: 60px;
  padding: 15px 30px;
  bottom: 30px;
  border-radius: 10px 10px 0 0;
  background-color: var(--heartox-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 450px) {
  .team-card__content {
    right: 30px;
    left: 30px;
  }
}
.team-card__content:hover .team-card__social {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0px);
}
.team-card__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  text-transform: capitalize;
  margin: 0;
  text-align: center;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__designation {
  text-align: center;
  margin: 0;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--heartox-text, #66788A);
}
.team-card__social {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 30px);
  top: -40px;
  border-radius: 40px;
  background-color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9.5px 18px;
  gap: 20px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.team-card__social a {
  color: var(--heartox-white, #fff);
  font-size: 16px;
  position: relative;
  line-height: normal;
}
.team-card__social a:not(:first-child)::after {
  content: "";
  position: absolute;
  top: 0;
  left: -10px;
  height: 100%;
  width: 1px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
}
.team-card:hover .team-card__inner::before {
  transform: translateY(0%);
}
.team-card:hover .team-card__inner::after {
  opacity: 0;
  visibility: hidden;
}
.team-card:hover .team-card__image img {
  transform: scale(1.1);
}

.team-details {
  padding-bottom: 80px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
.team-details__image {
  display: inline-block;
  position: relative;
}
@media (min-width: 1200px) {
  .team-details__image {
    margin-right: -30px;
  }
}
.team-details__image img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
}
@media (min-width: 1199px) {
  .team-details__content {
    padding-left: 50px;
  }
}
.team-details__content__subtitle {
  margin-top: -6px;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.team-details__content__title {
  margin-top: -5px;
  font-size: 30px;
  margin-bottom: 22px;
  color: var(--heartox-base, #102A43);
  font-weight: 700;
  line-height: 125%;
}
@media (min-width: 992px) {
  .team-details__content__title {
    font-size: 40px;
  }
}
.team-details__content__text {
  color: var(--heartox-text, #66788A);
  margin-bottom: 20px;
  line-height: 200%;
}
@media (min-width: 992px) {
  .team-details__content__text {
    margin-bottom: 30px;
  }
}
.team-details__content__highlight {
  background-color: var(--heartox-base, #102A43);
  position: relative;
  padding: 10px 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  border-left: 6px solid var(--heartox-secondary, #E9AD45);
  border-radius: 10px;
  overflow: hidden;
}
.team-details__content__highlight svg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 315px;
  z-index: -1;
  height: 38px;
  fill: var(--heartox-primary, #1B3F63);
  transition: all 0.4s ease-in-out;
}
.team-details__content__highlight__text {
  max-width: 508px;
  display: block;
  width: 100%;
  color: var(--heartox-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
  .team-details__content__highlight {
    padding: 22px 40px;
    margin-bottom: 38px;
  }
  .team-details__content__highlight__text {
    font-size: 20px;
  }
}
.team-details__list {
  margin-bottom: 32px;
}
.team-details__list > li {
  margin-bottom: 13px;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.team-details__list > li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: var(--heartox-base, #102A43);
}
.team-details__list > li a:hover {
  background-size: 100% 1px;
}
.team-details__list > li span {
  display: inline-block;
  color: var(--heartox-text, #66788A);
}
.team-details__list > li:last-child {
  margin-bottom: 0;
}
.team-details__list > li i {
  color: var(--heartox-base, #102A43);
  margin-right: 10px;
}
.team-details .team-skills {
  margin-bottom: 40px;
}
.team-details .team-skills__progress + .team-skills__progress {
  margin-top: 20px;
}
@media (min-width: 992px) {
  .team-details .team-skills__progress + .team-skills__progress {
    margin-top: 34px;
  }
}
.team-details .team-skills__progress__title {
  margin-bottom: 12px;
  text-shadow: 0 0 0 0.1px currentColor;
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  font-weight: 600;
  line-height: 144.444%;
}
.team-details .team-skills__progress__bar {
  width: 100%;
  height: 10px;
  position: relative;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
}
.team-details .team-skills__progress__inner {
  position: absolute;
  height: 10px;
  background-color: var(--heartox-secondary, #E9AD45);
  transition: all 700ms linear;
  border-radius: 10px;
  width: 0px;
}
.team-details .team-skills__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  margin-bottom: 8px;
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  font-weight: 500;
  line-height: 144.444%;
}
.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
}
.team-details__social a {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--heartox-border-color, #e5e3e0);
  font-size: 12px;
  color: var(--heartox-base, #102A43);
  line-height: 1;
  transition: all 500ms ease;
}
.team-details__social a:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}

.team-skills-one__title {
  margin-bottom: 10px;
  color: var(--heartox-base, #102A43);
  font-size: 25px;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}
.team-skills-one__text {
  max-width: 542px;
  line-height: 200%;
}
.team-skills-one__certificates {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  gap: 21px;
}
.team-skills-one__certificates__item {
  max-width: 176px;
  width: 100%;
  cursor: pointer;
}
.team-skills-one__certificates__item img {
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.5s ease-in-out;
}
.team-skills-one__certificates__item:hover img {
  object-fit: cover;
  filter: grayscale(0%);
}
.team-skills-one__bottom {
  margin-top: 70px;
}
.team-skills-one__skill {
  padding-top: 45px;
  position: relative;
}
.team-skills-one__skill::before {
  position: absolute;
  top: 7px;
  left: 0;
  content: "";
  clear: both;
  width: 110%;
  height: 1px;
  background-color: var(--heartox-base, #102A43);
}
@media (max-width: 767px) {
  .team-skills-one__skill::before {
    display: none;
  }
}
.team-skills-one__skill::after {
  position: absolute;
  top: 0%;
  left: 0;
  content: "";
  clear: both;
  width: 15px;
  height: 15px;
  border-radius: 500px;
  background-color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .team-skills-one__skill::after {
    display: none;
  }
}
.team-skills-one__skill__start {
  display: block;
  margin-bottom: 10px;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.team-skills-one__skill__title {
  margin-bottom: 10px;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.team-skills-one__skill__text {
  margin-bottom: 0;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.team-skills-one__skill:hover::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.team-skills-one__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.team-skills-one__text {
  letter-spacing: 0;
  max-width: 550px;
  width: 100%;
}

.team-form-one {
  position: relative;
}
.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.team-form-one .container {
  position: relative;
  max-width: 898px;
}
.team-form-one .sec-title {
  text-align: center;
}
.team-form-one .form-one .form-one__group {
  grid-gap: 20px;
}
.team-form-one .form-one .bootstrap-select > .dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
  background-color: var(--heartox-white, #fff);
  border: none;
  outline: none;
  border-radius: 40px;
  font-size: 16px;
  color: var(--heartox-text, #66788A);
}
.team-form-one .form-one textarea {
  height: 176px;
  border-radius: 10px;
}
.team-form-one .form-one .heartox-btn {
  padding: 13px 38px;
}
.team-form-one__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  animation: topBottom 4s ease-in-out infinite;
}

.team-two {
  margin-bottom: -303px;
  position: relative;
  z-index: 1;
}
.team-two .team-card__inner::after {
  background-color: var(--heartox-white, #fff);
  border-color: transparent;
}

/** Blog One Style**/
.blog-card {
  position: relative;
  z-index: 1;
}
.blog-card__image {
  position: relative;
  z-index: 1;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.blog-card__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.8s ease-in-out;
  transform: scale(1);
  filter: grayscale(0%);
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--heartox-black-rgb, 19, 34, 56), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
}
.blog-card__image__link__hover {
  position: relative;
  z-index: 1;
  transform: translateY(-100px);
  transition: all 0.8s ease-in-out;
}
.blog-card__image__link__hover::before, .blog-card__image__link__hover::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--heartox-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link__hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card__content {
  margin-top: -36px;
  position: relative;
  z-index: 1;
  padding-top: 1;
  margin-left: 23px;
  padding: 30px 27px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-white, #fff);
  border-radius: 0 0 10px 10px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 991px) and (min-width: 767px), (max-width: 400px) {
  .blog-card__content {
    padding: 20px 15px;
  }
}
.blog-card__content__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card__content__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-card__content__image {
  max-width: 35px;
  width: 35px;
  border-radius: 50%;
}
.blog-card__content__image img {
  object-fit: cover;
  width: 100%;
}
.blog-card__content__name-title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  line-height: 162%;
}
.blog-card__content__name-dec {
  display: block;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.blog-card__content__month {
  position: absolute;
  top: -80px;
  right: -1px;
  width: 100px;
  height: 80px;
  border-radius: 20px 0 0 0;
  background-color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 87%;
  color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.blog-card__content__month span {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
}
.blog-card__content__month__icon {
  position: absolute;
  top: -23.99px;
  right: 0;
}
.blog-card__content__month__icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--heartox-secondary, #E9AD45);
}
.blog-card__content::after {
  content: "";
  width: 2px;
  height: 125px;
  position: absolute;
  top: 55%;
  left: -24px;
  transform: translateY(-50%) rotateX(-90deg);
  background-color: var(--heartox-secondary, #E9AD45);
  transition: all 0.4s ease-in-out;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}
.blog-card__meta li {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  text-transform: capitalize;
  color: var(--heartox-text, #66788A);
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.blog-card__meta li i {
  color: var(--heartox-base, #102A43);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}
.blog-card__meta a {
  border-radius: 40px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 129%;
  padding: 10.5px 20px;
  background-color: var(--heartox-gray2, #F2F5F8);
  color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
.blog-card__meta a:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.blog-card__link {
  border-radius: 40px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 129%;
  padding: 10.5px 20px;
  background-color: var(--heartox-gray2, #F2F5F8);
  color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
.blog-card__link:hover {
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.1);
  color: var(--heartox-white, #fff);
}
.blog-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  padding-bottom: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
  transition: all 0.3s ease-in-out;
}
.blog-card__title a {
  color: inherit;
  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__image img {
  transform: scale(1.1);
  filter: grayscale(100%);
}
.blog-card:hover .blog-card__image__link {
  opacity: 1;
}
.blog-card:hover .blog-card__image__link__hover {
  transform: translateY(0px);
}
.blog-card:hover .blog-card__content {
  border-color: var(--heartox-base, #102A43);
  background-color: var(--heartox-base, #102A43);
}
.blog-card:hover .blog-card__content::after {
  transform: translateY(-50%) rotateX(0deg);
}
.blog-card:hover .blog-card__content__month {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.blog-card:hover .blog-card__content__month__icon svg path {
  fill: var(--heartox-base, #102A43);
}
.blog-card:hover .blog-card__meta li {
  color: var(--heartox-gray, #CBD4DE);
}
.blog-card:hover .blog-card__meta li i {
  color: var(--heartox-secondary, #E9AD45);
}
.blog-card:hover .blog-card__meta a {
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.1);
  color: var(--heartox-white, #fff);
}
.blog-card:hover .blog-card__title {
  color: var(--heartox-white, #fff);
  border-color: var(--heartox-primary, #1B3F63);
}
.blog-card:hover .blog-card__content__name-title {
  color: var(--heartox-white, #fff);
}
.blog-card:hover .blog-card__content__name-dec {
  color: var(--heartox-gray, #CBD4DE);
}
.blog-card:hover .blog-card__link {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}

/** Blog List Style**/
.blog-card-list {
  position: relative;
  z-index: 1;
}
.blog-card-list__image {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}
.blog-card-list__image img {
  object-fit: cover;
  width: 100%;
  transition: all 0.8s ease-in-out;
  transform: scale(1);
  filter: grayscale(0%);
}
.blog-card-list__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--heartox-black-rgb, 19, 34, 56), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 800ms ease, transform 800ms ease;
}
.blog-card-list__image__link__hover {
  position: relative;
  z-index: 1;
  transform: translateY(-100px);
  transition: all 0.8s ease-in-out;
}
.blog-card-list__image__link__hover::before, .blog-card-list__image__link__hover::after {
  content: "";
  width: 25px;
  height: 2px;
  background-color: var(--heartox-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-list__image__link__hover::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-list__month {
  position: absolute;
  bottom: 0px;
  right: -1px;
  width: 100px;
  height: 80px;
  border-radius: 20px 0 0 0;
  background-color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 87%;
  color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.blog-card-list__month span {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
}
.blog-card-list__month__icon {
  position: absolute;
  top: -23.99px;
  right: 0;
}
.blog-card-list__month__icon svg path {
  transition: all 0.4s ease-in-out;
  fill: var(--heartox-secondary, #E9AD45);
}
.blog-card-list__meta {
  display: flex;
  align-items: center;
  margin: 0;
  transition: all 0.4s ease-in-out;
  margin-bottom: 6px;
}
.blog-card-list__meta li:not(:first-child)::before {
  content: "|";
  margin-left: 15px;
  margin-right: 15px;
  font-weight: 500;
  color: #66788A;
  opacity: 0.5;
}
.blog-card-list__meta li a {
  color: heartox-text-gray;
  font-size: 14px;
  font-weight: 600;
  line-height: 214.286%;
  text-transform: capitalize;
}
.blog-card-list__meta li a i {
  font-size: 15px;
  color: heartox-base;
  margin-right: 5px;
}
.blog-card-list__meta li a:hover {
  color: heartox-base;
}
.blog-card-list__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  margin-bottom: 10px;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__text {
  margin-bottom: 30px;
}
.blog-card-list__text + .blog-card-list__text {
  margin-top: -8px;
}
.blog-card-list__btn .heartox-btn {
  color: var(--heartox-base, #102A43);
  padding: 13px 39.5px;
}
.blog-card-list__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.blog-card-list__btn .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.blog-card-list:hover .blog-card-list__image img {
  transform: scale(1.1);
  filter: grayscale(100%);
}
.blog-card-list:hover .blog-card-list__image__link {
  opacity: 1;
}
.blog-card-list:hover .blog-card-list__image__link__hover {
  transform: translateY(0px);
}
.blog-card-list:hover .blog-card-list__month {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.blog-card-list:hover .blog-card-list__month__icon svg path {
  fill: var(--heartox-base, #102A43);
}

/** Blog One Style**/
.blog-one {
  position: relative;
  padding-bottom: 161px;
}
.blog-one__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-one__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.blog-one__top .sec-title {
  padding-bottom: 0;
}
.blog-one__btn {
  display: flex;
  align-items: center;
  justify-content: start;
}
.blog-one__btn .heartox-btn {
  padding: 13px 38px;
}
@media (min-width: 992px) {
  .blog-one__btn {
    justify-content: end;
  }
}

/** Blog Two Style**/
.blog-two {
  position: relative;
}
.blog-two__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-two__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.blog-two__top .sec-title {
  padding-bottom: 0;
}
.blog-two__btn {
  display: flex;
  align-items: center;
  justify-content: start;
}
.blog-two__btn .heartox-btn {
  padding: 13px 38px;
}
@media (min-width: 992px) {
  .blog-two__btn {
    justify-content: end;
  }
}
.blog-two__item {
  display: flex;
  align-items: center;
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  filter: drop-shadow(0px 4px 30px rgba(0, 0, 0, 0.15));
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .blog-two__item {
    flex-direction: column;
  }
}
.blog-two__item__content {
  border-radius: 10px 0 0 10px;
  padding: 34px 30px;
  background-color: var(--heartox-white, #fff);
  flex: 65%;
  width: 65%;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .blog-two__item__content {
    flex: 100%;
    width: 100%;
    border-radius: 10px;
  }
}
.blog-two__item__thumb {
  border-radius: 0 10px 10px 0;
  flex: 42.3%;
  width: 42.3%;
  overflow: hidden;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .blog-two__item__thumb {
    flex: 100%;
    width: 100%;
    border-radius: 10px;
  }
}
.blog-two__item__thumb img {
  object-fit: cover;
  width: 100%;
  height: 244px;
}
.blog-two__item .blog-card__link:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.blog-two__item + .blog-two__item {
  margin-top: 30px;
}
.blog-two__item-two {
  position: relative;
  z-index: 1;
}
.blog-two__item-two__thumb {
  position: relative;
  z-index: 1;
}
.blog-two__item-two__thumb img {
  border-radius: 10px;
  object-fit: cover;
  width: 100%;
}
.blog-two__item-two .blog-two__item__content {
  margin-left: 35px;
  margin-right: 35px;
  position: absolute;
  bottom: 0;
  z-index: 1;
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  flex: 100%;
  width: auto;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .blog-two__item-two .blog-two__item__content {
    margin: 0px 10px 10px;
  }
}
.blog-two__item-two .blog-card__title,
.blog-two__item-two .blog-card__content__name-title,
.blog-two__item-two .blog-card__meta li,
.blog-two__item-two .blog-card__meta li i {
  color: var(--heartox-white, #fff);
}
.blog-two__item-two .blog-card__meta li a {
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.1);
  color: var(--heartox-white, #fff);
}
.blog-two__item-two .blog-card__meta li a:hover {
  background-color: var(--heartox-primary, #1B3F63);
}
.blog-two__item-two .blog-card__link {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.blog-two__item-two .blog-card__link:hover {
  background-color: var(--heartox-primary, #1B3F63);
}

/** Blog Three Style**/
.blog-three {
  position: relative;
}
.blog-three__card {
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  .blog-three__card {
    flex-direction: column;
  }
}
.blog-three__card__thumb {
  flex: 50%;
  position: relative;
}
.blog-three__card__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 767px) {
  .blog-three__card__thumb {
    flex: 100%;
    width: 100%;
  }
  .blog-three__card__thumb img {
    border-radius: 10px 10px 0 0;
  }
}
.blog-three__card__content {
  flex: 40%;
  width: 40%;
  margin-left: -100px;
  background-color: var(--heartox-white, #fff);
  border-radius: 10px 10px 10px 0;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  padding: 30px;
}
@media (max-width: 767px) {
  .blog-three__card__content {
    flex: 100%;
    width: 100%;
    margin-left: 0px;
    border-radius: 0px 0px 10px 10px;
  }
}
.blog-three__card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 40px;
}
.blog-three__card__bottom__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0px 13px 20px;
}
.blog-three__card__bottom__author .author {
  max-width: 35px;
  width: 100%;
  height: 35px;
  border-radius: 50%;
}
.blog-three__card__bottom__author .author img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
}
.blog-three__card__bottom__author .author-name {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  margin: 0;
  text-transform: capitalize;
  margin-bottom: -5px;
}
.blog-three__card__bottom__author .author-dec {
  font-weight: 600;
  font-size: 12px;
  line-height: 25px;
  margin-bottom: 0;
  text-transform: capitalize;
  color: var(--heartox-text, #66788A);
}
.blog-three__card__bottom__link a {
  margin-top: -5px;
  margin-bottom: -5px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--heartox-base, #102A43);
  background-color: var(--heartox-white, #fff);
}
.blog-three__card__bottom__link a:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.blog-three__card__date {
  position: absolute;
  bottom: -0.555px;
  left: -87px;
  padding: 17px 17px;
  border-radius: 15px 0 0 0;
  background-color: var(--heartox-base, #102A43);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 138%;
  text-transform: capitalize;
  color: var(--heartox-gray2, #F2F5F8);
}
.blog-three__card__date span {
  display: block;
}
@media (max-width: 767px) {
  .blog-three__card__date {
    bottom: auto;
    top: -79px;
    left: 0;
    border-radius: 0 15px 0 0;
  }
}
.blog-three__item {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
}
.blog-three__item .blog-card__meta a {
  background-color: var(--heartox-white, #fff);
}
.blog-three__item .blog-card__meta a:hover {
  background-color: var(--heartox-base, #102A43);
}
.blog-three__item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-three__item__btn a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 1px solid var(--heartox-base, #102A43);
  font-size: 14px;
  transition: all 0.4s ease-in-out;
}
.blog-three__item__btn a:hover {
  color: var(--heartox-white, #fff);
  border-color: var(--heartox-base, #102A43);
  background-color: var(--heartox-base, #102A43);
}
.blog-three__item .blog-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  border: none;
  margin: 0;
  padding-bottom: 2px;
}
.blog-three__item .blog-card__text {
  margin: 0;
  margin-bottom: -4px;
}

.blog-four {
  position: relative;
}
.blog-four__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .blog-four__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.blog-four__top .sec-title {
  padding-bottom: 0;
}
.blog-four__btn {
  display: flex;
  align-items: center;
  justify-content: start;
}
.blog-four__btn .heartox-btn {
  padding: 13px 38px;
}
@media (min-width: 992px) {
  .blog-four__btn {
    justify-content: end;
  }
}
.blog-four__item {
  border-radius: 10px;
  position: relative;
  z-index: 1;
}
.blog-four__item::after {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  z-index: -1;
  background-color: var(--heartox-base, #102A43);
  transition: all 0.5s ease-in-out;
}
.blog-four__item__content {
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  padding: 30px;
  border-bottom: none;
  border-radius: 10px 10px 0 0;
}
.blog-four__item .blog-card__title {
  border: none;
  margin-bottom: 10px;
  padding: 0;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
}
.blog-four__item__thumb {
  margin-top: -20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.blog-four__item__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  transform: scale(1);
}
.blog-four__item__thumb__hover__box {
  display: block;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: rgba(var(--heartox-primary-rgb, 27, 63, 99), 0.7);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}
.blog-four__item__thumb__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}
.blog-four__item__thumb__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}
.blog-four__item__thumb__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}
.blog-four__item__thumb__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}
.blog-four__item__date {
  padding: 18px;
  border-radius: 0 0 10px 10px;
  background-color: var(--heartox-base, #102A43);
  position: absolute;
  top: 0;
  left: 30px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 138%;
  text-align: center;
  text-transform: capitalize;
  color: var(--heartox-gray2, #F2F5F8);
  text-align: center;
  z-index: 2;
}
.blog-four__item__date span {
  display: block;
}
.blog-four__item .blog-card__content__bottom {
  padding: 25px 30px;
}
.blog-four__item .blog-card__link {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.blog-four__item .blog-card__content__name-title {
  color: var(--heartox-white, #fff);
}
.blog-four__item .blog-card__content__name-dec {
  color: var(--heartox-text-gray, #9AAABC);
}
.blog-four__item .blog-card__meta a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.blog-four__item:hover::after {
  height: 100%;
}
.blog-four__item:hover .blog-four__item__thumb img {
  transform: scale(1.1);
}
.blog-four__item:hover .blog-four__item__thumb__hover__box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.blog-four__item:hover .blog-card__title {
  color: var(--heartox-white, #fff);
}
.blog-four__item:hover .blog-card__meta li:last-child {
  color: var(--heartox-text-gray, #9AAABC);
}
.blog-four__item:hover .blog-card__meta li:last-child i {
  color: var(--heartox-secondary, #E9AD45);
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-transform: capitalize;
  color: var(--heartox-black, #132238);
  cursor: pointer;
  margin: 0 0 18px;
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.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) {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--heartox-text, #66788A);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-text, #66788A);
  font-size: 14px;
  font-weight: 400;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-radius: 5px;
  outline: none;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.form-one .bootstrap-select > .dropdown-toggle:focus,
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus {
  color: var(--heartox-black, #132238);
  font-weight: 500;
  border-color: var(--heartox-white, #fff);
}
.form-one textarea {
  height: 185px;
  padding-top: 20px;
}
.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 .heartox-btn > i {
  border: none;
  background-color: var(--heartox-base, #102A43);
  padding: 12px 33px;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--heartox-base, #102A43);
  -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(--heartox-base, #102A43);
  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(--heartox-base, #102A43);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  z-index: 1;
  background-color: var(--heartox-base, #102A43);
}
.main-footer__top {
  padding-top: 110px;
}
.main-footer__middle {
  position: relative;
  z-index: 1;
}
.main-footer__middle__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  border-top: 1px solid var(--heartox-text-gray, #9AAABC);
  padding-top: 73px;
  margin-bottom: 73px;
}
@media (max-width: 1199px) {
  .main-footer__middle__inner {
    margin-top: 30px;
    padding-top: 40px;
    margin-bottom: 60px;
  }
}

/* HosmedAI primary navigation */
@media (min-width: 1200px) {
  .main-header--one:not(.sticky-header--cloned) .main-header__bottom {
    width: calc(100% + 270px);
  }

  .main-header--one .main-header__bottom::after {
    display: none;
  }

  .main-menu .hosmed-navigation > li + li {
    margin-left: 5px;
  }

  .main-menu .hosmed-navigation > li > a {
    font-size: 12px;
    white-space: nowrap;
  }

  .main-menu .hosmed-navigation > li > a > i {
    margin-right: 5px;
    font-size: 11px;
  }

  .main-header--one .main-header__bottom {
    padding-left: 15px;
  }
}

@media (min-width: 1601px) {
  .main-header--one:not(.sticky-header--cloned) .main-header__inner {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .main-header--one:not(.sticky-header--cloned) .container {
    width: 100%;
    max-width: 1360px;
    margin-left: 0;
    margin-right: 0;
  }

  .main-header--one:not(.sticky-header--cloned) .main-header__bottom {
    width: calc(100% + 285px);
  }

  .main-header--one:not(.sticky-header--cloned) .main-header__inner__right {
    position: absolute;
    top: 9px;
    right: 18px;
    z-index: 5;
    margin-left: 0;
  }

  .main-header--one:not(.sticky-header--cloned) .main-header__inner__right a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 7px;
    color: #fff;
    background: var(--heartox-base, #102a43);
    box-shadow: 0 5px 14px rgba(16, 42, 67, .16);
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
  }

  .main-header--one:not(.sticky-header--cloned) .main-header__inner__right a:hover {
    color: #fff;
    background: #0a8f89;
  }

  .main-header--one:not(.sticky-header--cloned) .main-header__inner__right a::before {
    content: "\f073";
    color: var(--heartox-secondary, #e9ad45);
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .main-menu .hosmed-navigation > li + li {
    margin-left: 6px;
  }

  .main-menu .hosmed-navigation > li > a {
    font-size: 12px;
  }
}

/* Clearly identify the page currently being viewed. */
@media (min-width: 1200px) {
  .main-header--one:not(.sticky-header--cloned) .main-menu .hosmed-navigation > li.current > a {
    padding: 8px 11px;
    border-radius: 7px;
    color: #fff;
    background: var(--heartox-base, #102a43);
    box-shadow: 0 5px 13px rgba(16, 42, 67, .16);
  }

  .main-header--one.sticky-header--cloned .main-menu .hosmed-navigation > li.current > a::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 3px;
    border-radius: 3px;
    background: var(--heartox-secondary, #e9ad45);
  }
}

.mobile-nav__content .hosmed-navigation li.current > a {
  margin: 5px 0;
  padding: 0 12px;
  height: 40px;
  border-radius: 6px;
  color: var(--heartox-base, #102a43);
  background: var(--heartox-secondary, #e9ad45);
  font-weight: 800;
}

.mobile-nav__content .hosmed-navigation li > a > i {
  width: 22px;
  margin-right: 8px;
  color: var(--heartox-secondary, #e9ad45);
  text-align: center;
}

.mobile-nav__content .hosmed-navigation li > a > span {
  margin-right: auto;
}

.mobile-nav__content .hosmed-navigation li.current > a > i {
  color: var(--heartox-base, #102a43);
}

@media (max-width: 991px) {
  .main-footer__middle__inner {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}
.main-footer__middle__text {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
  color: var(--heartox-white, #fff);
}
.main-footer__middle__right .footer-widget__newsletter {
  position: relative;
  z-index: 1;
  width: 470px;
  border-radius: 10px;
  height: 70px;
  background-color: var(--heartox-white, #fff);
}
@media (max-width: 500px) {
  .main-footer__middle__right .footer-widget__newsletter {
    width: 300px;
  }
}
.main-footer__middle__right .footer-widget__newsletter input {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  border: none;
  outline: none;
  border-radius: 10px;
  height: 70px;
  padding-left: 20px;
  padding-right: 70px;
  width: 100%;
  color: var(--heartox-text, #66788A);
}
.main-footer__middle__right .footer-widget__newsletter input::placeholder {
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
}
.main-footer__middle__right .footer-widget__newsletter button {
  width: 54px;
  height: 56px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  outline: none;
  position: absolute;
  right: 7px;
  top: 7px;
  bottom: 7px;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.main-footer__middle__right .footer-widget__newsletter button i {
  margin: 0;
}
.main-footer__bottom {
  background-color: var(--heartox-secondary, #E9AD45);
  padding: 22px 0;
}
.main-footer__bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .main-footer__bottom__inner {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}
.main-footer__copyright {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-white, #fff);
}
.main-footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.main-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: var(--heartox-white, #fff);
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.16);
  transition: all 0.4s ease-in-out;
}
.main-footer__social a:hover {
  color: var(--heartox-secondary, #E9AD45);
  background-color: var(--heartox-white, #fff);
}
.main-footer__element {
  position: absolute;
  bottom: 0px;
  left: 0;
  z-index: -1;
  mix-blend-mode: overlay;
}

.footer-widget {
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 40px;
  }
}
.footer-widget--about {
  margin-top: 8px;
  background: rgba(242, 245, 248, 0.1);
  border-radius: 10px;
  padding: 40px 35px 43px;
  position: relative;
  z-index: 1;
}
.footer-widget--about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
  border-radius: 50px 50px 0 0;
  background-color: var(--heartox-secondary, #E9AD45);
  height: 10px;
}
.footer-widget--about .footer-widget__text {
  margin: 0;
  margin-top: -5px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 188%;
  color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.7);
}
.footer-widget__logo {
  margin-bottom: 20px;
  display: block;
}
.footer-widget__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 147%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin-bottom: 15px;
}
.footer-widget__links {
  margin-bottom: 0;
}
.footer-widget__links li {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: #8FA3B8;
}
.footer-widget__links li a {
  color: inherit;
  position: relative;
  z-index: 1;
  position: relative;
  z-index: 1;
}
.footer-widget__links li a::after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  color: var(--heartox-secondary, #E9AD45);
  font-size: 8px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.footer-widget__links li a:hover {
  color: var(--heartox-secondary, #E9AD45);
  padding-left: 15px;
}
.footer-widget__links li a:hover::after {
  visibility: visible;
  opacity: 1;
}
.footer-widget__links li + li {
  margin-top: 7px;
}
.footer-widget__contact {
  margin-top: 30px;
}
.footer-widget__contact__item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}
.footer-widget__contact__item:hover .footer-widget__contact__icon {
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-secondary, #E9AD45);
}
.footer-widget__contact__item + .footer-widget__contact__item {
  margin-top: 21px;
}
.footer-widget__contact__inner a + a {
  margin-top: 5px;
}
.footer-widget__contact__inner p,
.footer-widget__contact__inner a {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: var(--heartox-text-gray, #9AAABC);
  display: block;
}
.footer-widget__contact__inner a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__contact__inner a:hover {
  background-size: 100% 1px;
}
.footer-widget__contact__inner a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.footer-widget__contact__icon {
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  padding-top: 162px;
}
.contact-one .form-one .form-one__group {
  grid-gap: 20px;
}
.contact-one .form-one input[type=text],
.contact-one .form-one input[type=email],
.contact-one .form-one input[type=tel],
.contact-one .form-one textarea {
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 40px;
  border: none;
  outline: none;
  height: 60px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
}
.contact-one .form-one input[type=text]::placeholder,
.contact-one .form-one input[type=email]::placeholder,
.contact-one .form-one input[type=tel]::placeholder,
.contact-one .form-one textarea::placeholder {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
}
.contact-one .form-one textarea {
  border-radius: 10px;
  height: 310px;
}
.contact-one .form-one .heartox-btn {
  padding: 13px 38px;
  text-transform: none;
}
.contact-one__info {
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 1;
  padding-top: 1px;
  padding-bottom: 1px;
  border-radius: 10px;
}
.contact-one__info__top {
  margin-left: 40px;
  margin-right: 40px;
  margin-top: -43px;
}
.contact-one__info__text {
  margin: 0;
  border-radius: 40px;
  background-color: var(--heartox-secondary, #E9AD45);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: normal;
  text-align: center;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  padding: 20px;
}
.contact-one__info__middle {
  margin-bottom: 0;
}
.contact-one__info__middle li + li {
  border-top: 1px solid var(--heartox-primary, #1B3F63);
}
.contact-one__info__item {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 16px;
  padding: 29px 40px;
}
.contact-one__info__item a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.contact-one__info__item:hover .contact-one__info__icon {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.contact-one__info__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-white, #fff);
  font-size: 22px;
  color: var(--heartox-secondary, #E9AD45);
  transition: all 0.4s ease-in-out;
}
.contact-one__info__subtitle {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: var(--heartox-text-gray, #9AAABC);
  text-transform: capitalize;
  display: block;
}
.contact-one__info__link {
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
  color: var(--heartox-white, #fff);
  margin: 0;
}
.contact-one__info__thumb {
  margin-left: 40px;
  margin-right: 40px;
  margin-bottom: -76px;
}
.contact-one__info__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}

.contact-one__maps .google-map iframe {
  height: 540px;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.topbar-one--four {
  position: relative;
  background-color: var(--heartox-base, #102A43);
  padding: 9px 0;
}
.topbar-one--four::after {
  content: "";
  width: 50%;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 0 100px 100px 0;
  z-index: -1;
}
.topbar-one--four .topbar-one__info__item {
  color: var(--heartox-text, #66788A);
}
.topbar-one--four .topbar-one__info__item a {
  color: inherit;
}
@media (max-width: 1399px) {
  .topbar-one {
    display: none;
  }
}
.topbar-one__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.topbar-one__info {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 35px;
}
.topbar-one__info__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: var(--heartox-text-gray, #9AAABC);
}
.topbar-one__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__item a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__item i {
  color: var(--heartox-secondary, #E9AD45);
}
.topbar-one__right, .topbar-one__social {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-one__right {
  gap: 10px;
}
.topbar-one__social a {
  width: 30px;
  border-radius: 50%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--heartox-white, #fff);
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.15);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.topbar-one__social a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  transform: scale(0.3);
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.topbar-one__social a:hover::after {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.topbar-one__text {
  margin: 0;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  color: var(--heartox-text-gray, #9AAABC);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
  background-color: var(--heartox-base, #102A43);
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: transparent;
  position: relative;
  max-width: 1745px;
  padding: 0px 15px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 15px;
  }
}
@media (max-width: 991px) {
  .main-header__inner .container {
    padding-right: 0;
  }
}
@media (max-width: 1600px) {
  .main-header__inner__right {
    display: none;
  }
}
.main-header__inner__right a {
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 26px;
  line-height: 33px;
  text-decoration-line: underline;
  color: var(--heartox-secondary, #E9AD45);
  transition: all 0.4s ease-in-out;
}
.main-header__inner__right a:hover {
  color: var(--heartox-primary, #1B3F63);
}
.main-header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 70px;
  padding-right: 30px;
  border-radius: 20px 10px 0 0;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: 1;
}
@media (max-width: 1399px) {
  .main-header__bottom {
    padding-left: 70px;
    padding-right: 0px;
    background-color: transparent;
    border-radius: 0;
  }
}
@media (max-width: 767px) {
  .main-header__bottom {
    padding-left: 0px;
  }
}
.main-header__bottom::after {
  content: "";
  width: 300px;
  border-radius: 0px 10px 0 0;
  height: 100%;
  position: absolute;
  background-color: var(--heartox-white, #fff);
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .main-header__bottom::after {
    display: none;
  }
}
.main-header__info + .main-header__btn {
  margin-left: 24px;
}
.main-header__logo {
  display: flex;
  height: 100%;
  position: relative;
}
.main-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.main-header__info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.main-header__info__item {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-gray2, #F2F5F8);
  font-size: 20px;
  color: var(--heartox-base, #102A43);
}
.main-header__info__item:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 1399px) {
  .main-header__info__item:hover {
    background-color: var(--heartox-secondary, #E9AD45);
  }
}
.main-header__btn .heartox-btn {
  color: var(--heartox-white, #fff);
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 129%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  border-radius: 40px;
  padding: 9px 17px;
}
.main-header__btn .heartox-btn::before {
  background-color: var(--heartox-base, #102A43);
}
@media (max-width: 1399px) {
  .main-header__btn .heartox-btn {
    padding: 13px 25px;
  }
  .main-header__btn .heartox-btn::before {
    background-color: var(--heartox-secondary, #E9AD45);
  }
  .main-header__btn .heartox-btn::after {
    background-color: var(--heartox-primary, #1B3F63);
  }
}
@media (max-width: 600px) {
  .main-header__btn .heartox-btn {
    display: none;
  }
}
.main-header__nav {
  margin-left: 0;
  margin-right: auto;
}
@media (max-width: 1399px) {
  .main-header--one .main-header__nav .main-menu__list > li.current > a,
  .main-header--one .main-header__nav .main-menu__list > li:hover > a {
    color: var(--heartox-secondary, #E9AD45);
  }
}
.main-header--one .container {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.main-header--one .main-header__inner__right {
  margin-left: -20px;
}
@media (max-width: 1399px) {
  .main-header--one .shape {
    display: none;
  }
}
.main-header--one .shape svg {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.main-header--one .shape svg path {
  fill: var(--heartox-primary, #1B3F63);
}
.main-header--one .shape-one {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
  z-index: -1;
}
@media (max-width: 1699px) {
  .main-header--one .shape-one {
    display: none;
  }
}
.main-header--two {
  background-color: var(--heartox-gray2, #F2F5F8);
  padding-bottom: 1px;
}
.main-header--two .main-header__inner {
  margin-bottom: -1px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 0;
  }
}
.main-header--two .main-header__inner__top {
  display: flex;
  align-items: center;
}
.main-header--two .main-header__inner__bottom {
  margin-bottom: -48px;
  background-color: var(--heartox-base, #102A43);
  padding: 15px 0;
  position: relative;
  margin-right: 300px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner__bottom {
    display: none;
  }
}
.main-header--two .main-header__inner__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  right: 99%;
  height: 100%;
  width: 9999999px;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
}
.main-header--two .main-header__inner__info {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 35px;
}
.main-header--two .main-header__inner__info .main-header__inner__info__item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: var(--heartox-text-gray, #9AAABC);
}
.main-header--two .main-header__inner__info .main-header__inner__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header--two .main-header__inner__info .main-header__inner__info__item a:hover {
  background-size: 100% 1px;
}
.main-header--two .main-header__inner__info .main-header__inner__info__item i {
  color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 767px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}
.main-header--two .main-header__nav {
  margin-left: 56px;
}
@media (max-width: 767px) {
  .main-header--two .main-header__nav {
    margin-left: 0;
  }
}
.main-header--two .main-header__nav .main-menu__list > li > a {
  color: var(--heartox-text, #66788A);
}
.main-header--two .main-header__nav .main-menu__list > li {
  padding-top: 38px;
  padding-bottom: 38px;
}
.main-header--two .main-header__nav .main-menu__list > li.current > a,
.main-header--two .main-header__nav .main-menu__list > li:hover > a {
  color: var(--heartox-secondary, #E9AD45);
}
.main-header--two .main-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 1595px;
  transform: translateY(-50%);
}
@media (min-width: 1921px) {
  .main-header--two .main-header__social {
    left: auto;
    right: 200px;
  }
}
@media (max-width: 1800px) {
  .main-header--two .main-header__social {
    left: auto;
    right: 50px;
  }
}
@media (max-width: 1600px) {
  .main-header--two .main-header__social {
    display: none;
  }
}
.main-header--two .main-header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--heartox-white, #fff);
  font-size: 12px;
}
.main-header--two .main-header__social a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-base, #102A43);
}
.main-header--two .main-header__right {
  position: relative;
  padding: 33px 0 33px 50px;
  background-color: var(--heartox-base, #102A43);
}
@media (max-width: 767px) {
  .main-header--two .main-header__right {
    padding: 20px 0 20px 40px;
  }
}
.main-header--two .main-header__right::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -28px;
  background-color: var(--heartox-primary, #1B3F63);
}
@media (max-width: 1599px) {
  .main-header--two .main-header__right::after {
    display: none;
  }
}
.main-header--two .main-header__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 99%;
  height: 100%;
  width: 9999999px;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
}
.main-header--two .main-header__info__item:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.main-header--two .heartox-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.main-header--two .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.main-header--three {
  background-color: var(--heartox-primary, #1B3F63);
  padding: 25px 0px 30px;
}
@media (max-width: 1199px) {
  .main-header--three {
    padding: 0;
  }
}
.main-header--three .main-header__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 450px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__bg {
    display: none;
  }
}
.main-header--three .main-header__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: RGBA(var(--heartox-base-rgb, 16, 42, 67), 0.8);
}
.main-header--three .main-header__inner {
  border-radius: 10px 10px 0 0;
  background-color: var(--heartox-white, #fff);
}
@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    border-radius: 0;
    background-color: transparent;
  }
}
.main-header--three .main-header__inner__middle {
  border-left: 1px solid var(--heartox-border-color, #e5e3e0);
  border-right: 1px solid var(--heartox-border-color, #e5e3e0);
}
.main-header--three .main-header__inner__bottom {
  background-color: var(--heartox-base, #102A43);
  padding: 20px 55px 20px 76px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__inner__bottom {
    display: none;
    padding: 0;
  }
}
.main-header--three .main-header__logo {
  padding-right: 40px;
  padding-left: 25px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__logo {
    padding: 0;
  }
}
.main-header--three .main-header__nav {
  padding-left: 76px;
  padding-right: 55px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__nav {
    padding: 0;
  }
}
.main-header--three .main-header__nav .main-menu__list > li > a {
  color: var(--heartox-base, #102A43);
}
.main-header--three .main-header__inner__info {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-header--three .main-header__inner__info__item {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  color: var(--heartox-text-gray, #9AAABC);
}
.main-header--three .main-header__inner__info__item i {
  color: var(--heartox-secondary, #E9AD45);
  margin-right: 6px;
}
.main-header--three .main-header__inner__info__item a {
  color: inherit;
}
.main-header--three .main-header__inner__info__item a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.main-header--three .main-header__right {
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__right {
    padding-right: 0;
  }
}
.main-header--three .main-header__btn .heartox-btn {
  padding: 11px 17px;
}
.main-header--three .main-header__btn .heartox-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 767px) {
  .main-header--three .main-header__btn .heartox-btn {
    display: none;
  }
}
.main-header--three .main-header__btn + .main-header__info {
  margin-left: 25px;
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 28px;
  padding-bottom: 14px;
}
.main-header--three .main-header__social {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 50%;
  left: 1595px;
  transform: translateY(-50%);
}
@media (min-width: 1921px) {
  .main-header--three .main-header__social {
    left: auto;
    right: 200px;
  }
}
@media (max-width: 1800px) {
  .main-header--three .main-header__social {
    left: auto;
    right: 50px;
  }
}
@media (max-width: 1600px) {
  .main-header--three .main-header__social {
    display: none;
  }
}
.main-header--three .main-header__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--heartox-white, #fff);
  font-size: 12px;
}
.main-header--three .main-header__social a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-base, #102A43);
}
.main-header--three .main-menu .main-menu__list > li.current > a,
.main-header--three .main-menu .main-menu__list > li:hover > a {
  color: var(--heartox-secondary, #E9AD45);
  text-shadow: 0 0 0.5px currentColor;
}
.main-header--four {
  background-color: var(--heartox-white, #fff);
}
.main-header--four::after {
  content: "";
  width: 675px;
  top: 0;
  right: 0;
  position: absolute;
  height: 100%;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 100px 0 0 100px;
  z-index: -1;
}
@media (max-width: 1550px) {
  .main-header--four::after {
    width: 500px;
  }
}
@media (max-width: 1399px) {
  .main-header--four::after {
    display: none;
  }
}
.main-header--four .main-header__nav {
  margin-left: 62px;
  margin-right: auto;
}
.main-header--four .main-menu .main-menu__list > li {
  padding-top: 38px;
  padding-bottom: 38px;
}
.main-header--four .main-menu .main-menu__list > li > a {
  color: var(--heartox-text, #66788A);
}
.main-header--four .main-header__nav .main-menu__list > li.current > a,
.main-header--four .main-header__nav .main-menu__list > li:hover > a {
  color: var(--heartox-secondary, #E9AD45);
}
.main-header--four .main-header__info__item:hover {
  background-color: var(--heartox-primary, #1B3F63);
}
.main-header--four .main-header__btn .heartox-btn {
  padding: 11px 19px;
}
.main-header--four .main-header__btn .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--heartox-base, #102A43);
}
@media (max-width: 767px) {
  .main-header--four .main-header__btn {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--heartox-base, #102A43);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--heartox-black-rgb, 19, 34, 56), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.main-header--one.sticky-header--cloned .topbar-one {
  display: none;
}
.main-header--one.sticky-header--cloned .main-header__bottom {
  background-color: transparent;
}
.main-header--one.sticky-header--cloned .main-header__bottom::after {
  display: none;
}
.main-header--one.sticky-header--cloned .main-header__btn .heartox-btn {
  padding: 13px 25px;
}
.main-header--one.sticky-header--cloned .main-header__btn .heartox-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-header--one.sticky-header--cloned .main-header__info__item:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.main-header--one.sticky-header--cloned .shape {
  display: none;
}
.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li.current > a,
.main-header--one.sticky-header--cloned .main-menu .main-menu__list > li:hover > a {
  color: var(--heartox-secondary, #E9AD45);
}

.main-header--two.sticky-header--cloned {
  background-color: var(--heartox-white, #fff);
  padding-bottom: 0;
}
.main-header--two.sticky-header--cloned .main-header__inner__bottom {
  display: none;
}
.main-header--two.sticky-header--cloned .main-header__btn .heartox-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}

.main-header--three.sticky-header--cloned {
  background-color: var(--heartox-primary, #1B3F63);
  padding: 0px;
}
.main-header--three.sticky-header--cloned .main-header__inner__middle {
  border-left: none;
  border-right: none;
}
.main-header--three.sticky-header--cloned .main-header__inner__bottom {
  display: none;
}
.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 30px;
  padding-bottom: 30px;
}
.main-header--three.sticky-header--cloned .main-header__nav {
  padding-left: 0;
  padding-right: 0;
}
.main-header--three.sticky-header--cloned .main-header__logo {
  padding-right: 0;
}
.main-header--three.sticky-header--cloned .main-header__inner__middle {
  margin-left: auto;
  margin-right: 0px;
}
.main-header--three.sticky-header--cloned .main-header__right {
  margin-left: 50px;
}
@media (max-width: 767px) {
  .main-header--three.sticky-header--cloned .main-header__right {
    margin: 0;
  }
}

.main-header--four.sticky-header--cloned {
  background-color: var(--heartox-primary, #1B3F63);
}
.main-header--four.sticky-header--cloned .main-header__nav .main-menu__list > li > a {
  color: var(--heartox-white, #fff);
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: 30px;
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  .mobile-nav__btn {
    margin-left: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--heartox-white, #fff);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.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 {
  padding-top: 21px;
  padding-bottom: 21px;
  position: relative;
}
@media (max-width: 1399px) {
  .main-menu .main-menu__list > li {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 30px;
}
.main-menu .main-menu__list > li > a {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--heartox-base, #102A43);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  border-radius: 10px;
  min-width: 240px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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(--heartox-gray2, #F2F5F8);
  box-shadow: 0px 10px 60px 0px RGBA(var(--heartox-gray2-rgb, 242, 245, 248), 0.07);
  padding: 15px 20px 11px;
}
.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: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: #718096;
  display: flex;
  text-transform: capitalize;
  padding: 10px 20px;
  transition: 600ms;
  margin-bottom: 7px;
  border-radius: 62px;
  transition: all 0.4s ease-in-out;
}
.main-menu .sub-menu .dropdown::before {
  position: absolute;
  right: 20px;
  top: 14px;
  transform: translate(10px 10px);
  font-size: 13px;
  font-weight: 500;
  color: var(--heartox-white, #fff);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scaleX(0);
  font-family: "icomoon" !important;
  content: "\e912";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}
.main-menu .sub-menu .dropdown:hover::before {
  visibility: visible;
  opacity: 1;
  transform: scaleX(1);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.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 .main-menu__list li ul li > ul ul {
  display: none;
}

@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(--heartox-white, #fff);
  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(--heartox-black, #132238);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--heartox-base, #102A43);
}
.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(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 18px;
  color: var(--heartox-base, #102A43);
  font-weight: 700;
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--heartox-white, #fff);
}
.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 {
  background-color: rgba(var(--heartox-black2-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  text-align: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__btn.heartox-btn {
  font-size: 14px;
  padding: 10px 30px;
}
.demo-one__btn.heartox-btn::before {
  background-color: var(--heartox-base, #102A43);
}
.demo-one__btn.heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.demo-one__btn.heartox-btn:hover {
  color: var(--heartox-white, #fff) !important;
}
.demo-one__title {
  padding-top: 28px;
  padding-bottom: 28px;
}

.home-showcase {
  margin-top: 0px;
  margin-bottom: -20px;
}
@media (min-width: 1500px) {
  .home-showcase {
    margin-right: -225px;
  }
  .home-showcase .container {
    max-width: 1350px;
  }
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
  box-shadow: 0px 10px 60px 0px rgba(var(--heartox-black2-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 16px;
  margin-top: 15px;
  padding-bottom: 10px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
/**** Funfact One ****/
.funfact-one {
  margin-top: 20px;
  position: relative;
  margin-bottom: -115px;
  z-index: 1;
}
.funfact-one__single {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  padding: 1px 0px 25px;
}
.funfact-one__single::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heartox-gray2, #F2F5F8);
  z-index: -1;
  border-radius: 10px;
  transition: all 500ms ease-in-out;
}
.funfact-one__single:hover::after {
  height: 115px;
  border-radius: 0 0 10px 10px;
}
.funfact-one__single:hover .funfact-one__icon__inner {
  background-color: var(--heartox-secondary, #E9AD45);
}
.funfact-one__single:hover .funfact-one__icon::before {
  background-color: var(--heartox-base, #102A43);
}
.funfact-one__single:hover .funfact-one__icon::after {
  transform: rotateX(0deg);
}
.funfact-one__icon {
  position: relative;
  z-index: 1;
}
.funfact-one__icon__inner {
  margin-top: -12px;
  width: 131px;
  height: 111px;
  border-radius: 10px 10px 0 0;
  background-color: var(--heartox-base, #102A43);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 55px;
  color: var(--heartox-white, #fff);
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  transition: all 500ms ease-in-out;
}
.funfact-one__icon::before {
  position: absolute;
  content: "";
  width: 122px;
  height: 118px;
  border-radius: 10px 10px 0 0;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: -1;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 500ms ease-in-out;
}
.funfact-one__icon::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--heartox-secondary, #E9AD45);
  transform: rotateX(90deg);
  transition: all 500ms ease-in-out;
}
.funfact-one__count {
  display: flex;
  align-items: center;
  margin: -10px;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 150%;
  text-align: center;
  color: var(--heartox-primary, #1B3F63);
}
.funfact-one__text {
  margin: 0;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--heartox-base, #102A43);
  text-align: center;
  text-transform: capitalize;
}

/**** Funfact Two ****/
.funfact-four {
  position: relative;
  background-color: var(--heartox-base, #102A43);
  z-index: 1;
}
.funfact-four::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
  background-image: url(../images/shapes/funfact-1-1.png);
}
.funfact-four::before {
  content: "";
  width: 100%;
  height: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/shapes/vector-1-2.png);
}
.funfact-four__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
@media (max-width: 1199px) {
  .funfact-four__list {
    gap: 30px 0;
  }
}
.funfact-four__list__item {
  flex: 25%;
  width: 25%;
  display: flex;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1199px) {
  .funfact-four__list__item {
    flex: 33.33%;
    width: 33.33%;
  }
}
@media (max-width: 991px) {
  .funfact-four__list__item {
    flex: 50%;
    width: 50%;
  }
}
@media (max-width: 576px) {
  .funfact-four__list__item {
    flex: 100%;
    width: 100%;
  }
}
.funfact-four__list__item:hover .funfact-four__list__icon::after {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.funfact-four__list__icon {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-primary, #1B3F63);
  font-size: 53px;
  color: var(--heartox-white, #fff);
  position: relative;
  z-index: 1;
}
.funfact-four__list__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: -1;
  transform: scale(0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) and (min-width: 576px) {
  .funfact-four__list__icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}
.funfact-four__list__text {
  color: var(--heartox-secondary, #E9AD45);
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.funfact-four__list__count {
  display: flex;
  align-items: center;
  color: var(--heartox-white, #fff);
  font-size: 45px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.333%;
  margin: 0;
}
@media (max-width: 767px) and (min-width: 576px) {
  .funfact-four__list__count {
    font-size: 35px;
  }
}
.funfact-four__list__count span {
  color: inherit;
}

/*--------------------------------------------------------------
# Donations 
--------------------------------------------------------------*/
/**** Donation Card ****/
.donation-card {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.donation-card__image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: -1px -1px 0;
}
.donation-card__image img {
  object-fit: cover;
  width: 100%;
}
.donation-card__image::after {
  content: "";
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #102A43 0%, rgba(16, 42, 67, 0) 100%);
}
.donation-card__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-card__btn a {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--heartox-white, #fff);
}
.donation-card__btn a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-card__popup {
  position: relative;
  z-index: 1;
}
.donation-card__popup .count {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  font-size: 8px;
  top: 0;
  right: -3px;
  transition: all 0.4s ease-in-out;
}
.donation-card__popup:hover .count {
  background-color: var(--heartox-primary, #1B3F63);
}
.donation-card__category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
  z-index: 1;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  padding: 3px 20px;
  border-radius: 45px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
}
.donation-card__category:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-card__content {
  padding: 30px;
  position: relative;
}
@media (max-width: 991px) and (min-width: 767px), (max-width: 500px) {
  .donation-card__content {
    padding: 30px 15px;
  }
}
.donation-card__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  margin-top: -8px;
  margin-bottom: 61px;
}
.donation-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donation-card__title a:hover {
  background-size: 100% 1px;
}
.donation-card .progress-box__bar + .progress-box {
  margin-top: 18px;
}
.donation-card .progress-box__bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.donation-card .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.donation-card .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.donation-card .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.donation-card .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-base, #102A43);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .donation-card .progress-box__number {
    font-size: 15px;
  }
}
.donation-card .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-base, #102A43);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.donation-card .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  padding: 29px 15px;
  position: relative;
  z-index: 1;
}
.donation-card .progress-box__content::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: var(--heartox-white, #fff);
}
.donation-card .progress-box__text {
  color: var(--heartox-base, #102A43);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-card .progress-box__text i {
  font-size: 22px;
  color: var(--heartox-primary, #1B3F63);
}
.donation-card .progress-box__text span {
  color: var(--heartox-text, #66788A);
}
.donation-card:hover {
  border-color: transparent;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

/**** Donation List Card ****/
.donation-card-list {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
  max-width: 1095px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.donation-card-list__image {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: -1px -1px;
}
@media (min-width: 992px) {
  .donation-card-list__image {
    margin-right: 10px;
  }
}
.donation-card-list__image img {
  object-fit: cover;
  width: 100%;
}
.donation-card-list__image::after {
  content: "";
  height: 100px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #102A43 0%, rgba(16, 42, 67, 0) 100%);
}
.donation-card-list__btn {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-card-list__btn a {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--heartox-white, #fff);
}
.donation-card-list__btn a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-card-list__popup {
  position: relative;
  z-index: 1;
}
.donation-card-list__popup .count {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  font-size: 8px;
  top: 0;
  right: -3px;
  transition: all 0.4s ease-in-out;
}
.donation-card-list__popup:hover .count {
  background-color: var(--heartox-primary, #1B3F63);
}
.donation-card-list__category {
  position: absolute;
  top: 30px;
  left: 30px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
  z-index: 1;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  padding: 3px 20px;
  border-radius: 45px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
}
.donation-card-list__category:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-card-list__content {
  position: relative;
  padding-right: 40px;
}
@media (max-width: 991px) {
  .donation-card-list__content {
    padding: 40px;
  }
}
@media (max-width: 500px) {
  .donation-card-list__content {
    padding: 40px 20px;
  }
}
.donation-card-list__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 117%;
  margin-bottom: 10px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .donation-card-list__title {
    font-size: 30px;
  }
}
@media (max-width: 500px) {
  .donation-card-list__title {
    font-size: 30px;
  }
}
.donation-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donation-card-list__title a:hover {
  background-size: 100% 1px;
}
.donation-card-list__text {
  font-style: normal;
  font-weight: 500;
  padding-bottom: 20px;
  margin-bottom: 70px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
@media (max-width: 1199px) and (min-width: 992px) {
  .donation-card-list__text {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.donation-card-list .progress-box__bar + .progress-box {
  margin-top: 10px;
}
.donation-card-list .progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.donation-card-list .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  border-radius: inherit;
  transition: all 800ms linear;
}
.donation-card-list .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.donation-card-list .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.donation-card-list .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .donation-card-list .progress-box__number {
    font-size: 15px;
  }
}
.donation-card-list .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.donation-card-list .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.donation-card-list .progress-box__text {
  color: var(--heartox-base, #102A43);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-card-list .progress-box__text span {
  color: var(--heartox-text, #66788A);
}
.donation-card-list:hover {
  filter: drop-shadow(0px 4px 60px rgba(0, 0, 0, 0.1));
}

/**** Donation One ****/
.donation-one {
  position: relative;
  z-index: 1;
}
.donation-one .container-fluid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.donation-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 530px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.donation-one__item {
  position: relative;
  z-index: 1;
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.donation-one .owl-stage {
  display: flex;
}
.donation-one .owl-item,
.donation-one .owl-item > .item {
  display: flex;
  height: auto;
  width: 100%;
}
.donation-one__item__image {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 400px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.donation-one__item__image::after {
  content: "";
  width: 100%;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(360deg, #102A43 9.05%, rgba(16, 42, 67, 0.06) 103.83%);
}
.donation-one__item__image::before {
  content: "";
  width: 100%;
  height: 85%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(360deg, #1B3F63 9.05%, rgba(16, 42, 67, 0.06) 103.83%);
}
.donation-one__item__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-one__item__btn a {
  width: 40px;
  border-radius: 50%;
  height: 40px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--heartox-white, #fff);
}
.donation-one__item__btn a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-one__item__category {
  position: absolute;
  top: 20px;
  left: 20px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
  z-index: 1;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  padding: 3px 20px;
  border-radius: 45px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
}
.donation-one__item__category:hover {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-one__item__popup {
  position: relative;
  z-index: 1;
}
.donation-one__item__popup .count {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  font-size: 8px;
  top: 0;
  right: -3px;
  transition: all 0.4s ease-in-out;
}
.donation-one__item__popup:hover .count {
  background-color: var(--heartox-primary, #1B3F63);
}
.donation-one__item .progress-box__bar + .progress-box {
  margin-top: 18px;
}
.donation-one__item .progress-box__bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.donation-one__item .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.donation-one__item .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.donation-one__item .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.donation-one__item .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .donation-one__item .progress-box__number {
    font-size: 15px;
  }
}
.donation-one__item .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.donation-one__item .progress-box {
  position: relative;
  margin-bottom: 23px;
}
.donation-one__item .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.donation-one__item .progress-box__text {
  color: var(--heartox-white, #fff);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-one__item .progress-box__text span {
  color: var(--heartox-gray, #CBD4DE);
}
.donation-one__item__content {
  margin-top: -137px;
  padding: 0px 30px 30px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.donation-one__item__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--heartox-white, #fff);
  margin-bottom: 10px;
  position: relative;
}
.donation-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donation-one__item__title a:hover {
  background-size: 100% 1px;
}
.donation-one__item__text__inner {
  overflow: hidden;
  position: relative;
}
.donation-one__item__text {
  margin-top: 0;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  color: var(--heartox-gray, #CBD4DE);
}
.donation-one__item__bottom__btn .heartox-btn {
  width: 100%;
  padding: 13px 38px;
  color: var(--heartox-base, #102A43);
}
.donation-one__item__bottom__btn {
  margin-top: auto;
}
.donation-one__item__bottom__btn .heartox-btn::before {
  background-color: var(--heartox-white, #fff);
}
.donation-one__item__bottom__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-one__item__bottom__btn .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.donation-one__item:hover .donation-one__item__text {
  margin-top: -7px;
}
.donation-one__item:hover {
  background-color: var(--heartox-primary, #1B3F63);
}
.donation-one__item:hover .donation-one__item__image::after {
  opacity: 0;
  visibility: hidden;
}
.donation-one__item:hover .donation-one__item__image::before {
  opacity: 1;
  visibility: visible;
}

/**** Donation Two ****/
.donation-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.donation-two::after {
  content: "";
  width: 100%;
  height: 446px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  z-index: -2;
}
@media (max-width: 991px) {
  .donation-two::after {
    height: 70%;
  }
}
.donation-two__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 38.2%;
}
@media (max-width: 1399px) {
  .donation-two__thumb {
    display: none;
  }
}
.donation-two__thumb img {
  object-fit: cover;
  width: 100%;
}
.donation-two__content {
  background-color: var(--heartox-white, #fff);
  border-radius: 0 10px 10px 0;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  display: flex;
  margin-left: -40px;
}
@media (max-width: 1399px) {
  .donation-two__content {
    border-radius: 10px;
    margin-left: 0;
    overflow: hidden;
  }
}
@media (max-width: 991px) {
  .donation-two__content {
    flex-direction: column;
  }
}
.donation-two__content__left, .donation-two__content__right {
  flex: 50%;
  width: 50%;
  padding: 80px 40px;
}
@media (max-width: 991px) {
  .donation-two__content__left, .donation-two__content__right {
    flex: 100%;
    width: 100%;
  }
}
.donation-two__content__left {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.donation-two__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 125%;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.donation-two__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.donation-two__content__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.donation-two__content__thumb__item {
  max-width: 178px;
  height: 178px;
  overflow: hidden;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.donation-two__content__thumb__item span {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.92);
  color: var(--heartox-white, #fff);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.donation-two__content__thumb__item:not(:first-child) {
  margin-top: -60px;
}
.donation-two__content__thumb__item:not(:first-child) span {
  visibility: hidden;
  opacity: 0;
}
.donation-two__content__thumb__item:hover span {
  visibility: visible;
  opacity: 1;
}
.donation-two .tab-buttons {
  border-radius: 40px;
  padding: 10px;
  background-color: var(--heartox-base, #102A43);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
.donation-two .tab-buttons .heartox-btn {
  padding-top: 5px;
  padding-bottom: 5px;
}
.donation-two .tab-buttons .heartox-btn:hover::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-two .tab-buttons .heartox-btn.active-btn::after, .donation-two .tab-buttons .heartox-btn.active-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-two .donate-form__amount__box label {
  width: 78px;
}
.donation-two .donate-form__amount__box input {
  width: 70%;
}
.donation-two .donate-form__amount__box label,
.donation-two .donate-form__amount__box input {
  background-color: var(--heartox-white, #fff);
}
.donation-two .donate-form__amount__btn {
  background-color: var(--heartox-white, #fff);
}
.donation-two .donate-form__amount {
  border-bottom: none;
  padding-bottom: 20px;
}
.donation-two .donate-form__amount__buttons {
  margin-top: 20px;
}
.donation-two__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 53px 0 53px 40px;
}
@media (max-width: 991px) {
  .donation-two__bottom {
    padding: 30px 0 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.donation-two__bottom__title {
  color: var(--heartox-white, #fff);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 250%;
  margin: 0;
}

/**** Donation Now ****/
.donate-now {
  position: relative;
  padding-top: 230px;
}
.donate-now__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.donate-now__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.8);
}
.donate-now__inner {
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.donate-now .donate-now__right {
  padding: 50px 50px 50px 0px;
}
@media (max-width: 991px) {
  .donate-now .donate-now__right {
    padding: 50px;
  }
}
@media (max-width: 991px) {
  .donate-now .donate-now__right {
    padding: 30px;
  }
}
.donate-now .donate-now__right .sec-title {
  padding-bottom: 30px;
}
.donate-now .donate-now__right .donate-now-form .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.donate-now .donate-now-form__info {
  margin-bottom: 20px;
}
.donate-now .donate-now-form__info .form-one__group {
  grid-gap: 20px;
}
.donate-now .donate-now-form__info .form-one__group input[type=text],
.donate-now .donate-now-form__info .form-one__group input[type=email] {
  height: 60px;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.3);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}
.donate-now .donate-now-form__info .form-one__group input[type=text]::placeholder,
.donate-now .donate-now-form__info .form-one__group input[type=email]::placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
}
.donate-now .donate-form__amount {
  border: none;
}
.donate-now .donate-form__amount__btn {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.donate-now .donate-form__amount__btn.active, .donate-now .donate-form__amount__btn:hover {
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-base, #102A43);
}
.donate-now__left {
  position: relative;
  background-color: var(--heartox-primary, #1B3F63);
  width: 100%;
  height: 100%;
}
.donate-now__inner > .row {
  align-items: stretch;
}
.donate-now__inner > .row > .col-lg-5 {
  display: flex;
}
@media (min-width: 1200px) {
  .donate-now__left {
    margin-right: 20px;
  }
}
.donate-now__thumb img {
  object-fit: cover;
  width: 100%;
}
.donate-now__funfact {
  padding: 30px 40px;
}
.donate-now__funfact {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.donate-now__funfact__item {
  max-width: 185px;
  width: 100%;
  height: 110px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 1;
}
.donate-now__funfact__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 92px;
  height: 10px;
  background-color: var(--heartox-secondary, #E9AD45);
}
.donate-now__funfact__item__count {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 75%;
  color: var(--heartox-white, #fff);
  margin: 0;
}
.donate-now__funfact__item__count span {
  color: inherit;
}
.donate-now__funfact__item .text {
  margin: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.donate-now__funfact__item:last-child {
  background-color: var(--heartox-white, #fff);
  align-items: start;
  text-align: left;
  padding-left: 35px;
}
.donate-now__funfact__item:last-child::after {
  display: none;
}
.donate-now__funfact__item:last-child .donate-now__funfact__item__count {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  margin: 0;
  color: var(--heartox-base, #102A43);
}
.donate-now__funfact__item:last-child .donate-now__funfact__item__count span {
  color: inherit;
}

/**** Donation Form ****/
.consultation-now__intro {
  padding: 28px 35px 32px;
  color: var(--heartox-white, #fff);
}
.consultation-now__intro h3 {
  color: inherit;
  font-size: 25px;
  margin-bottom: 8px;
}
.consultation-now__intro p {
  color: var(--heartox-gray, #CBD4DE);
  margin: 0;
}
.consultation-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 20px;
  margin-bottom: 22px;
}
.consultation-form__control--full {
  grid-column: 1 / -1;
}
.consultation-form input,
.consultation-form textarea {
  width: 100%;
  border: 0;
  outline: 0;
  border-radius: 30px;
  padding: 0 30px;
  color: var(--heartox-white, #fff);
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.3);
}
.consultation-form input {
  height: 60px;
}
.consultation-form textarea {
  min-height: 96px;
  padding-top: 18px;
  resize: vertical;
}
.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
  color: var(--heartox-white, #fff);
  opacity: 1;
}
@media (max-width: 575px) {
  .consultation-form__grid {
    grid-template-columns: 1fr;
  }
  .consultation-form__control--full {
    grid-column: auto;
  }
}
.donate-now-form .form-one__group {
  grid-gap: 20px;
}
.donate-now-form .form-one input[type=email],
.donate-now-form .form-one input[type=text] {
  border-radius: 40px;
  height: 60px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  border: none;
  outline: none;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.3);
}
.donate-now-form .form-one input[type=email]::placeholder,
.donate-now-form .form-one input[type=text]::placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
}
.donate-now-form .donate-form__amount {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .donate-now-form .donate-form__amount {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.donate-now-form .donate-form__amount .donate-form__amount__buttons {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}
.donate-now-form .donate-form__amount .donate-form__amount__input {
  width: 130px;
  height: 42px;
  border-radius: 40px;
  padding: 0px 16px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 16px !important;
  color: var(--heartox-base, #102A43);
  font-weight: 600;
  text-transform: capitalize;
  background-color: var(--heartox-white, #fff);
  border: 1px solid transparent;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .donate-now-form .donate-form__amount .donate-form__amount__input {
    width: 100%;
    height: 60px;
  }
}

/**** Donation Help ****/
.help-donate {
  position: relative;
  z-index: 1;
}
.help-donate__bg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  height: 605px;
  z-index: -1;
}
.help-donate__bg::after {
  content: "";
  width: 100%;
  height: 45px;
  background-image: url(../images/shapes/vector-1-2.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: center center;
  position: absolute;
  bottom: 0;
  left: 0;
}
.help-donate__spae {
  position: absolute;
  left: 5%;
  bottom: 0;
}
.help-donate__spae img {
  animation: movebounce 3s infinite ease-in-out;
}
.help-donate__love {
  position: absolute;
  top: 10%;
  left: 5%;
}
.help-donate__love img {
  animation: movebounce 3.5s infinite ease-in-out;
}
@media (min-width: 1500px) {
  .help-donate .container-fluid {
    max-width: 1800px;
    margin-left: auto;
    margin-right: -250px;
  }
}
.help-donate__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .help-donate__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.help-donate__top .sec-title {
  padding-bottom: 0;
}
.help-donate__top__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.help-donate__top__text {
  flex: calc(100% - 125px);
  width: calc(100% - 125px);
  padding: 20px 30px;
  border: 1px solid var(--heartox-primary, #1B3F63);
  border-radius: 10px;
}
.help-donate__top__text .text {
  color: var(--heartox-text-gray, #9AAABC);
  margin: 0;
}
.help-donate__top__custome-dots {
  flex: 125px;
  width: 125px;
}
.help-donate__custome-dots {
  flex: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
}
@media (max-width: 575px) {
  .help-donate__custome-dots {
    display: none;
  }
}
.help-donate__custome-dots button {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  color: var(--heartox-base, #102A43);
  transition: all 500ms ease;
  border: 1px solid transparent;
}
.help-donate__custome-dots button:last-child {
  transform: rotate(-120deg);
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-secondary, #E9AD45);
  border: 1px solid var(--heartox-secondary, #E9AD45);
}
.help-donate__custome-dots button:last-child:hover {
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-base, #102A43);
  border: 1px solid var(--heartox-white, #fff);
}
.help-donate__custome-dots button:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-secondary, #E9AD45);
  border: 1px solid var(--heartox-secondary, #E9AD45);
}

/**** Donation Help Two ****/
.help-donate__item__thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.help-donate__item__thumb img {
  object-fit: cover;
  width: 100%;
}
.help-donate__item__content {
  padding: 35px 40px 40px;
  border-radius: 10px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-white, #fff);
  position: relative;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: -128px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1399px) and (min-width: 992px) {
  .help-donate__item__content {
    padding: 30px 20px 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 575px) {
  .help-donate__item__content {
    padding: 30px 20px 30px;
    margin-left: 20px;
    margin-right: 20px;
  }
}
.help-donate__item__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  margin-bottom: 18px;
  text-transform: capitalize;
}
.help-donate__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.help-donate__item__title a:hover {
  background-size: 100% 1px;
}
.help-donate__item__inner {
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
  padding: 59px 20px 20px;
}
.help-donate__item__btn {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  top: -30px;
  right: 40px;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 112%;
  text-align: center;
}
.help-donate__item__btn span {
  font-size: 24px;
  color: var(--heartox-white, #fff);
  display: block;
  margin-bottom: 5px;
}
.help-donate__item__btn:hover {
  background-color: var(--heartox-primary, #1B3F63);
}
.help-donate__item .progress-box__bar + .progress-box {
  margin-top: 10px;
}
.help-donate__item .progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--heartox-white, #fff);
  border-radius: 15px;
}
.help-donate__item .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.help-donate__item .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.help-donate__item .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.help-donate__item .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .help-donate__item .progress-box__number {
    font-size: 15px;
  }
}
.help-donate__item .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.help-donate__item .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.help-donate__item .progress-box__text {
  color: var(--heartox-base, #102A43);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.help-donate__item:hover .help-donate__item__content {
  background-color: var(--heartox-base, #102A43);
  border-color: var(--heartox-base, #102A43);
}
.help-donate__item:hover .help-donate__item__title {
  color: var(--heartox-white, #fff);
}
.help-donate__item:hover .help-donate__item__btn {
  visibility: visible;
  opacity: 1;
}

/**** Donation Three ****/
.donation-three {
  position: relative;
}
.donation-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.donation-three__inner {
  position: relative;
  z-index: 1;
  padding: 65px 0px 65px 70px;
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .donation-three__inner {
    padding: 30px 0px 30px 30px;
  }
}
@media (max-width: 991px) {
  .donation-three__inner {
    padding: 30px;
    border-radius: 10px;
  }
}
.donation-three__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  left: 999px;
  z-index: -3;
  position: absolute;
  top: 0;
  background-color: var(--heartox-base, #102A43);
}
@media (max-width: 991px) {
  .donation-three__inner::after {
    display: none;
  }
}
.donation-three__inner::before {
  content: "";
  width: 140%;
  height: 100%;
  left: 0px;
  z-index: -2;
  position: absolute;
  top: 0;
  clip-path: polygon(40% 0, 100% 0, 100% 60%, 100% 100%, 0 100%, 0 70%, 28% 33%);
  background-color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 991px) {
  .donation-three__inner::before {
    width: 100%;
    height: 100%;
  }
}
.donation-three__content .sec-title {
  padding-bottom: 20px;
}
.donation-three__content .donate-form__amount {
  border-bottom: 0 solid transparent;
  padding-bottom: 50px;
}
.donation-three__content button::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.donation-three__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.donation-three__shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  z-index: 1;
}
@media (max-width: 1600px) {
  .donation-three__shape {
    display: none;
  }
}

.donate-card {
  position: relative;
  z-index: 1;
  margin-bottom: -100px;
}
.donate-card .container {
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}
.donate-card__item {
  padding: 5px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  transform: rotate(5deg);
  transition: all 0.4s ease-in-out;
}
.donate-card__item::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(-89.88deg, #102A43 36.95%, #E9AD45 96.04%);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.donate-card__item__thumb {
  position: relative;
}
.donate-card__item__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 6px;
}
.donate-card__item__content {
  position: absolute;
  top: 20px;
  left: 25px;
}
.donate-card__item__box {
  display: inline-block;
  padding: 5px 30px 5px 18px;
  border-radius: 10px 100px 100px 10px;
  -webkit-text-stroke-width: 0.8px;
  -webkit-text-stroke-color: var(--heartox-gray2, #F2F5F8);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: transparent;
  margin: 0;
  position: relative;
  z-index: 1;
}
.donate-card__item__box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px 100px 100px 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(89.88deg, #102A43 36.95%, #E9AD45 96.04%);
}
.donate-card__item__box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px 100px 100px 10px;
  visibility: visible;
  opacity: 1;
  background: linear-gradient(89.61deg, #102A43 51.26%, rgba(255, 255, 255, 0) 119.37%);
  transition: all 0.4s ease-in-out;
}
.donate-card__item__btn {
  position: relative;
  margin-top: -2px;
}
.donate-card__item__btn a {
  color: var(--heartox-white, #fff);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.41%;
  text-transform: capitalize;
  padding: 5px 18px;
  border-radius: 0 0 10px 10px;
  background-color: var(--heartox-primary, #1B3F63);
}
.donate-card__item__btn a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-base, #102A43);
}
.donate-card__item:hover {
  transform: rotate(0deg);
}
.donate-card__item:hover .donate-card__item__box::after {
  visibility: visible;
  opacity: 1;
}
.donate-card__item:hover .donate-card__item__box::before {
  visibility: hidden;
  opacity: 0;
}

/**** Donation Four ****/
.donations-four {
  position: relative;
}
.donations-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.donations-four__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.8);
}
.donations-four__inner {
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  overflow: hidden;
}
.donations-four__content {
  padding-top: 60px;
  position: relative;
  z-index: 1;
  margin-right: -30px;
}
.donations-four__content .sec-title {
  padding-bottom: 30px;
}
@media (min-width: 1200px) {
  .donations-four__content {
    margin-right: -50px;
  }
}
.donations-four__thumb {
  position: relative;
}
.donations-four__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.donations-four__funfact {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: -66px;
}
.donations-four__funfact__item {
  max-width: 185px;
  width: 100%;
  height: 110px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 1;
}
.donations-four__funfact__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 92px;
  height: 10px;
  background-color: var(--heartox-secondary, #E9AD45);
}
.donations-four__funfact__item__count {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 75%;
  color: var(--heartox-white, #fff);
  margin: 0;
}
.donations-four__funfact__item__count span {
  color: inherit;
}
.donations-four__funfact__item .text {
  margin: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.donations-four__funfact__item:last-child {
  background-color: var(--heartox-gray, #CBD4DE);
}
.donations-four__funfact__item:last-child::after {
  display: none;
}
.donations-four__funfact__item:last-child .donations-four__funfact__item__count {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  margin: 0;
  color: var(--heartox-base, #102A43);
}
.donations-four__funfact__item:last-child .donations-four__funfact__item__count span {
  color: inherit;
}
.donations-four__form__inner {
  background-color: var(--heartox-secondary, #E9AD45);
  padding: 50px 40px;
}
@media (max-width: 575px) {
  .donations-four__form__inner {
    padding: 40px 20px;
  }
}
@media (min-width: 1200px) {
  .donations-four__form__inner {
    margin-left: 20px;
  }
}
.donations-four__form__inner button::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.donations-four .donate-form__info + .donate-form__amount {
  margin-top: 20px;
}
.donations-four .donate-form__amount {
  border-bottom: none;
}
.donations-four .donate-form .form-one__group {
  grid-gap: 23px 20px;
}
.donations-four .donate-form__amount__buttons {
  margin-top: 23px;
}
.donations-four .donate-form__amount {
  padding-bottom: 23px;
}
.donations-four .donate-form__amount__box label {
  max-width: 78px;
  width: 100%;
}

/*--------------------------------------------------------------
# Charity 
--------------------------------------------------------------*/
.welcome-charity {
  position: relative;
  z-index: 1;
}
.welcome-charity__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.welcome-charity .container-fluid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.welcome-charity__item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  padding: 0 30px 30px;
  z-index: 1;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  background: linear-gradient(180deg, #1B3F63 0%, #E9AD45 45.5%, rgba(255, 255, 255, 0.75325) 89%);
}
.welcome-charity__item::after {
  content: "";
  top: 4px;
  left: 4px;
  bottom: 4px;
  right: 4px;
  background-color: var(--heartox-white, #fff);
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  transform: translateY(0);
}
.welcome-charity__item__top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 22px;
}
.welcome-charity__item__top .icon {
  max-width: 74px;
  width: 100%;
  height: 91px;
  padding: 16px 14px 0;
  margin-bottom: -10px;
  background-color: var(--heartox-primary, #1B3F63);
  transition: all 0.4s ease-in-out;
}
.welcome-charity__item__top .icon .icon__item {
  max-width: 46px;
  width: 100%;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.welcome-charity__item__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.welcome-charity__item__content {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 310px;
  padding: 139px 31px 20px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 450px) {
  .welcome-charity__item__content {
    padding: 100px 20px 20px;
  }
}
.welcome-charity__item__content::after {
  content: "";
  width: 100%;
  height: 85%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, #102A43 41.48%, rgba(16, 42, 67, 0) 104.71%);
  position: absolute;
  z-index: -1;
  border-radius: 10px;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
}
.welcome-charity__item__inner {
  transform: rotateX(-90deg);
  transition: all 0.5s ease-in-out;
}
.welcome-charity__item__inner .heartox-btn {
  width: 100%;
  padding: 7px 30px;
  font-size: 14px;
  display: block;
}
.welcome-charity__item__inner .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.welcome-charity__item__text {
  margin: 0;
  text-align: center;
  color: var(--heartox-white, #fff);
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 500;
  margin-bottom: 20px;
}
.welcome-charity__item__btn {
  position: absolute;
  bottom: 20px;
  left: 30px;
  transform: translateX(0%);
  visibility: visible;
  opacity: 1;
  transition: all 0.4s ease-in-out;
}
.welcome-charity__item__btn .heartox-btn {
  padding: 7px 30px;
  font-size: 14px;
  color: var(--heartox-base, #102A43);
}
.welcome-charity__item__btn .heartox-btn::before {
  background-color: var(--heartox-white, #fff);
}
.welcome-charity__item__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.welcome-charity__item__btn .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.welcome-charity__item:hover::after {
  transform: translateY(100%);
}
.welcome-charity__item:hover .welcome-charity__item__title {
  color: var(--heartox-white, #fff);
}
.welcome-charity__item:hover .icon {
  background-color: var(--heartox-white, #fff);
}
.welcome-charity__item:hover .icon .icon__item {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-secondary, #E9AD45);
}
.welcome-charity__item:hover .welcome-charity__item__btn {
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}
.welcome-charity__item:hover .welcome-charity__item__inner {
  transform: rotateX(0deg);
}
.welcome-charity__item:hover .welcome-charity__item__content::after {
  transform: translateY(0%);
}

.charity-three {
  position: relative;
  z-index: 1;
}
.charity-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.charity-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.9);
}
.charity-three__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .charity-three__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.charity-three__top .sec-title {
  padding-bottom: 0;
}
.charity-three__client-carousel .client-carousel__one {
  padding-top: 80px;
  border-top: 1px solid var(--heartox-primary, #1B3F63);
}
.charity-three__item {
  position: relative;
  z-index: 1;
  background-color: var(--heartox-white, #fff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 575px) {
  .charity-three__item {
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
}
.charity-three__item::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/texture.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  border-radius: 10px;
  z-index: -2;
  transition: all 0.4s ease-in-out;
}
.charity-three__item::before {
  content: "";
  position: absolute;
  width: 137px;
  height: 141px;
  background: var(--heartox-primary, #1B3F63);
  border-radius: 10px;
  right: 0;
  top: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .charity-three__item::before {
    display: none;
  }
}
.charity-three__content {
  position: relative;
  padding: 40px 0px 40px 40px;
  flex: 45%;
  width: 45%;
}
@media (max-width: 575px) {
  .charity-three__content {
    flex: 100%;
    width: 100%;
  }
}
.charity-three__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--heartox-white, #fff);
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  margin-bottom: 12px;
  transition: all 0.4s ease-in-out;
}
.charity-three__title {
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-bottom: 2px;
}
.charity-three__text {
  margin-bottom: -7px;
}
.charity-three__thumb {
  flex: 40.5%;
  width: 40.5%;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .charity-three__thumb {
    flex: 100%;
    width: 100%;
  }
}
.charity-three__thumb__item {
  border-radius: 100% 100% 0px 100%;
  overflow: hidden;
}
.charity-three__thumb__item img {
  object-fit: cover;
  width: 100%;
}
.charity-three__thumb__icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.9);
  font-size: 24px;
  color: var(--heartox-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}
.charity-three__item:hover::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.charity-three__item:hover .charity-three__thumb__icon {
  background-color: rgba(var(--heartox-secondary-rgb, 233, 173, 69), 0.9);
  transform: translate(-50%, -50%) scale(1.3);
}
.charity-three__item:hover .charity-three__icon {
  background-color: rgba(var(--heartox-secondary-rgb, 233, 173, 69));
}
.charity-three__inner {
  margin-bottom: 85px;
}
.charity-three__inner .container-fluid {
  max-width: 1800px;
  margin-left: auto;
  margin-right: -255px;
}
@media (max-width: 1550px) {
  .charity-three__inner .container-fluid {
    margin-right: auto;
    margin-left: auto;
  }
}
.charity-three__custome-dots {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}
.charity-three__custome-dots button {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  color: var(--heartox-base, #102A43);
  transition: all 500ms ease;
  transform: rotate(-100deg);
}
.charity-three__custome-dots button:last-child {
  transform: rotate(90deg);
}
.charity-three__custome-dots button:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E9AD45);
  border-color: var(--heartox-base, #102A43);
}

/*--------------------------------------------------------------
# Donations Details
--------------------------------------------------------------*/
.donation-details {
  position: relative;
  z-index: 1;
}
.donation-details__card__inner {
  position: relative;
  background: var(--heartox-white, #fff);
  border: 1px solid var(--heartox-gray, #CBD4DE);
  box-shadow: 0px 4px 40px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}
.donation-details__card__image {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  z-index: 1;
  margin-bottom: 78px;
}
.donation-details__card__image img {
  object-fit: cover;
  width: 100%;
}
.donation-details__card__image__btn {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  transform: translate(-50%, -50%);
  transition: all 0.4s ease-in-out;
}
.donation-details__card__image__btn a {
  padding: 0px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--heartox-white, #fff);
  text-align: center;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 113.684%;
  text-transform: capitalize;
}
.donation-details__card__image__btn a i {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.donation-details__card__image__btn:hover {
  background-color: var(--heartox-base, #102A43);
}
.donation-details .progress-box {
  padding: 0px 40px 40px;
  position: relative;
}
.donation-details .progress-box__bar + .progress-box {
  margin-top: 18px;
}
.donation-details .progress-box__bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.donation-details .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.donation-details .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.donation-details .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.donation-details .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-base, #102A43);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .donation-details .progress-box__number {
    font-size: 15px;
  }
}
.donation-details .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-base, #102A43);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.donation-details .progress-box__bar + .progress-box__inner {
  margin-top: 15px;
}
.donation-details .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  padding: 29px 15px;
  position: relative;
  z-index: 1;
}
.donation-details .progress-box__content::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: var(--heartox-white, #fff);
}
.donation-details .progress-box__text {
  color: var(--heartox-base, #102A43);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-details .progress-box__text i {
  font-size: 22px;
  color: var(--heartox-primary, #1B3F63);
}
.donation-details .progress-box__text span {
  color: var(--heartox-text, #66788A);
}
.donation-details__card__inner + .donation-details__card__text {
  margin-top: 40px;
}
.donation-details__card__text {
  font-weight: 500;
  margin: 0;
}
.donation-details .donation-details__card + .donation-details__summery {
  margin-top: 40px;
}
.donation-details__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  margin-bottom: 20px;
}
.donation-details__summery__text {
  margin: 0;
}
.donation-details__summery__text + .donation-details__summery__list {
  margin-top: 30px;
}
.donation-details__summery__list li {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: var(--heartox-base, #102A43);
}
.donation-details__summery__list li i {
  color: var(--heartox-secondary, #E9AD45);
  font-size: 18px;
  margin-right: 6px;
}
.donation-details__summery__list li + li {
  margin-top: 12px;
}
.donation-details__summery + .donation-details__donors {
  margin-top: 40px;
}
.donation-details__donors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
@media (max-width: 991px) {
  .donation-details__donors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.donation-details__donors__card {
  position: relative;
  border-radius: 10px;
}
.donation-details__donors__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 16px);
  background-color: var(--heartox-white, #fff);
  position: absolute;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  left: 0;
  bottom: 0;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.donation-details__donors__card__content {
  position: relative;
  padding: 0px 20px 16px;
  text-align: center;
  z-index: 1;
}
.donation-details__donors__card__image {
  margin-bottom: 11px;
  text-align: center;
}
.donation-details__donors__card__image img {
  display: inline-block !important;
  width: 66px !important;
  height: 66px;
  border-radius: 50%;
}
.donation-details__donors__card__name, .donation-details__donors__card__amount {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
  color: var(--heartox-base, #102A43);
}
.donation-details__donors__card__name {
  margin-bottom: 8px;
}
.donation-details__donors__card__amount {
  color: var(--heartox-secondary, #E9AD45);
}
.donation-details__donors__card:hover::after {
  background-color: var(--heartox-gray2, #F2F5F8);
  border: 1px solid var(--heartox-gray2, #F2F5F8);
}
.donation-details .comments-one {
  margin-top: 0;
}
.donation-details__donors + .comments-one {
  margin-top: 40px;
}

.donation-details-two {
  position: relative;
  z-index: 1;
}
.donation-details-two__image img {
  width: 100%;
  display: block;
  border-radius: 10px 10px 0 0;
  margin-bottom: 35px;
}
.donation-details-two__top {
  border: 1px solid var(--heartox-gray, #CBD4DE);
  box-shadow: 0px 4px 60px rgba(2, 2, 2, 0.1);
  border-radius: 10px;
}
.donation-details-two__inner {
  position: relative;
  z-index: 1;
  padding: 0px 40px 50px;
}
@media (max-width: 575px) {
  .donation-details-two__inner {
    padding: 0px 15px 30px;
  }
}
.donation-details-two__title {
  margin-bottom: 58px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 157%;
}
@media (max-width: 430px) {
  .donation-details-two__title {
    font-size: 25px;
  }
}
.donation-details-two .progress-box__bar + .progress-box {
  margin-top: 18px;
}
.donation-details-two .progress-box__bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.donation-details-two .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.donation-details-two .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.donation-details-two .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.donation-details-two .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-base, #102A43);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .donation-details-two .progress-box__number {
    font-size: 15px;
  }
}
.donation-details-two .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-base, #102A43);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.donation-details-two .progress-box__bar + .progress-box__inner {
  margin-top: 15px;
}
.donation-details-two .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  padding: 29px 15px;
  position: relative;
  z-index: 1;
}
.donation-details-two .progress-box__content::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  background-color: var(--heartox-white, #fff);
}
.donation-details-two .progress-box__text {
  color: var(--heartox-base, #102A43);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.donation-details-two .progress-box__text i {
  font-size: 22px;
  color: var(--heartox-primary, #1B3F63);
}
.donation-details-two .progress-box__text span {
  color: var(--heartox-text, #66788A);
}
.donation-details-two .progress-box + .donate-form {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
}
.donation-details-two__top + .donation-details-two__text {
  margin-top: 40px;
}
.donation-details-two__text {
  margin: 0;
}
.donation-details-two__text + .donation-details__summery {
  margin-top: 30px;
}

.donate-form__amount {
  border-radius: 0;
  box-shadow: none;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
.donate-form__amount__box {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.donate-form__amount__box label {
  height: 95px;
  width: 75px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
  font-family: var(--heartox-heading-font, "Nunito", serif);
}
.donate-form__amount__box input {
  height: 95px;
  border-radius: 10px;
  width: 100%;
  border: 2px dashed var(--heartox-text-gray, #9AAABC);
  background-color: var(--heartox-gray2, #F2F5F8);
  font-style: normal;
  font-weight: 700;
  font-size: 50px !important;
  line-height: normal;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  color: var(--heartox-base, #102A43) !important;
  padding-left: 40px;
  padding-right: 40px;
}
.donate-form__amount__box input:focus, .donate-form__amount__box input:focus-visible, .donate-form__amount__box input:active {
  outline: none;
  border: 2px dashed var(--heartox-text-gray, #9AAABC);
}
.donate-form__amount__buttons {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  gap: 10px;
}
.donate-form__amount__btn {
  padding: 5px 20px;
  outline: 0;
  border: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
  border-radius: 25px;
  background-color: var(--heartox-gray2, #F2F5F8);
  transition: all 400ms ease;
}
.donate-form__amount__btn:hover, .donate-form__amount__btn.active {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.donate-form__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.donate-form__payment__method {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
}
.donate-form__payment__item input[type=radio] {
  display: none;
}
.donate-form__payment__item label {
  position: relative;
  cursor: pointer;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.625;
  text-transform: capitalize;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.donate-form__payment__item label::before {
  content: "";
  position: relative;
  top: 6px;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  border-radius: 50%;
  background-color: var(--heartox-gray2, #F2F5F8);
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.donate-form__payment__item label::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--heartox-base, #102A43);
  top: 22px;
  left: 8px;
  opacity: 0;
  margin: -8px 20px;
  margin-left: 0;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.donate-form__payment__item input[type=radio]:checked + label::after {
  opacity: 1;
}
.donate-form__amount + .donate-form__payment, .donate-form__payment + .donate-form__info {
  margin-top: 40px;
}
.donate-form .form-one__group {
  grid-gap: 20px 18px;
}
.donate-form .form-one__group input[type=text],
.donate-form .form-one__group input[type=email],
.donate-form .form-one__group textarea {
  border-radius: 40px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
}
.donate-form .form-one__group input[type=text]::placeholder,
.donate-form .form-one__group input[type=email]::placeholder,
.donate-form .form-one__group textarea::placeholder {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
}
.donate-form .form-one__group textarea {
  border-radius: 10px;
  height: 211px;
}
.donate-form__total-donation {
  margin: 0;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
}
.donate-form__info__top {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.donate-form__info__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.donate-form__info__check-box input[type=checkbox] {
  display: none;
}
.donate-form__info__check-box label {
  cursor: pointer;
  position: relative;
  display: inline-block;
  padding-left: 34px;
  font-size: 16px;
  color: var(--heartox-base, #102A43);
  font-weight: 600;
  line-height: 1.625;
  text-transform: capitalize;
}
.donate-form__info__check-box label span {
  position: relative;
  z-index: 1;
}
.donate-form__info__check-box label span::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  color: var(--heartox-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 12px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.donate-form__info__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 1px;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  border: none;
  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;
}
.donate-form__info__check-box input[type=checkbox]:checked + label span {
  background-color: var(--heartox-base, #102A43);
}
.donate-form__info__check-box input[type=checkbox]:checked + label span::before {
  opacity: 1;
}

.donate-page .donation-details-two__inner {
  padding: 0;
}
.donate-page .donate-form__amount {
  border: 1px solid var(--heartox-gray, #CBD4DE);
  box-shadow: 0px 4px 60px rgba(2, 2, 2, 0.1);
  border-radius: 10px;
  padding: 30px 40px 37px;
}

/*--------------------------------------------------------------
# Volunteer Form
--------------------------------------------------------------*/
.become-volunteer__thumb {
  margin-bottom: 32px;
}
.become-volunteer__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.become-volunteer__contact {
  margin-top: 40px;
  padding-top: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px 50px;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
}
.become-volunteer__contact__item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
@media (max-width: 375px) {
  .become-volunteer__contact__item {
    gap: 18px;
  }
}
.become-volunteer__contact__item:hover .become-volunteer__contact__icon {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.become-volunteer__contact__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  transition: all 500ms ease;
}
.become-volunteer__contact__title {
  margin-bottom: 0;
  font-size: 12px;
  color: var(--heartox-text, #66788A);
  font-weight: 700;
  line-height: 1.357;
}
.become-volunteer__contact__link {
  font-size: 16px;
  color: var(--heartox-base, #102A43);
  font-weight: 700;
  line-height: 1.25;
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.become-volunteer__contact__link:hover {
  background-size: 100% 1px;
}
.become-volunteer__contact__link:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.become-volunteer__form .form-one__group {
  grid-gap: 20px;
}
.become-volunteer__form input[type=text],
.become-volunteer__form input[type=email],
.become-volunteer__form input[type=tel],
.become-volunteer__form textarea {
  border: none;
  outline: none;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 40px;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
}
.become-volunteer__form input[type=text]::placeholder,
.become-volunteer__form input[type=email]::placeholder,
.become-volunteer__form input[type=tel]::placeholder,
.become-volunteer__form textarea::placeholder {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
}
.become-volunteer__form textarea {
  height: 259px;
  border-radius: 10px;
}
.become-volunteer__form .heartox-btn {
  padding: 13px 38px;
}

.charity-cause {
  position: relative;
  padding-bottom: 344px;
}
@media (min-width: 992px) {
  .charity-cause {
    padding-bottom: 300px;
  }
}
.charity-cause__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -2;
}
.charity-cause__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.8);
}
.charity-cause__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url(../images/shapes/welcome-shape-1-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.charity-cause .sec-title {
  padding-bottom: 0;
}
.charity-cause__list {
  margin-bottom: 0;
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .charity-cause__list {
    flex-wrap: wrap;
  }
}
.charity-cause__list li {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  width: auto;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .charity-cause__list li {
    flex: 48%;
    width: 50%;
  }
}
.charity-cause__list__item {
  background: linear-gradient(180deg, #1B3F63 0%, #E9AD45 115%);
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 240px;
}
@media (max-width: 992px) {
  .charity-cause__list__item {
    height: 210px;
  }
}
.charity-cause__list__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, #1B3F63 0%, #E9AD45 115%);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out;
}
.charity-cause__list__item__icon {
  padding: 30px 30px 25px;
  border-bottom: 1px solid rgba(var(--heartox-white-rgb, 255, 255, 255), 0.4);
  font-size: 50px;
  color: var(--heartox-white, #fff);
  line-height: 0;
  transition: all 0.4s ease-in-out;
}
.charity-cause__list__item__icon i {
  display: block;
}
.charity-cause__list__item__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  text-align: center;
  color: var(--heartox-white, #fff);
  margin: 0;
  padding: 22px;
}
.charity-cause__list__item__content {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
.charity-cause__list__item:hover::after {
  visibility: visible;
  opacity: 1;
}
.charity-cause__list__item:hover .charity-cause__list__item__icon i {
  animation: heartBeat 1s linear infinite;
}

.charity-cause-donate__inner {
  padding: 50px;
  border-radius: 10px;
  background-color: var(--heartox-primary, #1B3F63);
  position: relative;
  z-index: 1;
  margin-top: -224px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .charity-cause-donate__inner {
    padding: 30px;
  }
}
.charity-cause-donate__title .sec-title {
  padding-bottom: 0;
}
.charity-cause-donate__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .charity-cause-donate__top {
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 30px;
  }
}
.charity-cause-donate__btn {
  text-align: end;
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .charity-cause-donate__btn {
    text-align: left;
  }
}
.charity-cause-donate__btn .heartox-btn {
  padding: 13px 38px;
  text-align: end;
}
@media (max-width: 992px) {
  .charity-cause-donate__btn .heartox-btn {
    text-align: left;
  }
}
.charity-cause-donate__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-white, #fff);
  margin-bottom: 10px;
  text-align: end;
}
@media (max-width: 992px) {
  .charity-cause-donate__text {
    text-align: left;
  }
}
.charity-cause-donate .date {
  display: block;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 150%;
  color: var(--heartox-white, #fff);
  text-align: end;
}
@media (max-width: 992px) {
  .charity-cause-donate .date {
    text-align: left;
  }
}
.charity-cause-donate__shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.charity-cause-donate__shape svg {
  width: 393px;
  height: 315px;
  fill: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.15);
}
.charity-cause-donate__shape-two {
  position: absolute;
  bottom: -1px;
  left: -1px;
  z-index: -1;
}
.charity-cause-donate__shape-two svg {
  width: 393px;
  height: 315px;
  fill: var(--heartox-secondary, #E9AD45);
}
.charity-cause-donate__box {
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  padding: 63px 20px 25px 25px;
}
.charity-cause-donate .progress-box__bar + .progress-box {
  margin-top: 18px;
}
.charity-cause-donate .progress-box__bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.charity-cause-donate .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.charity-cause-donate .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.charity-cause-donate .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-white, #fff);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.charity-cause-donate .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 13px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .charity-cause-donate .progress-box__number {
    font-size: 15px;
  }
}
.charity-cause-donate .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.charity-cause-donate .progress-box {
  position: relative;
}
.charity-cause-donate .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.charity-cause-donate .progress-box__text {
  color: var(--heartox-white, #fff);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.charity-cause-donate .progress-box__text span {
  color: var(--heartox-gray, #CBD4DE);
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.event-card {
  position: relative;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.event-card::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
  transform: translateY(-100%);
  transition: all 0.4s ease-in-out;
}
.event-card__image {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}
.event-card__image img {
  transform: scale(1);
  object-fit: cover;
  width: 100%;
  transition: all 1200ms ease-in-out;
}
.event-card__content {
  padding: 30px;
  position: relative;
}
.event-card__date {
  position: absolute;
  right: 30px;
  top: -63px;
  z-index: 1;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-white, #fff);
  flex-direction: column;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  text-align: center;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
}
.event-card__category {
  margin-bottom: 20px;
  display: flex;
}
.event-card__category a {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  color: var(--heartox-base, #102A43);
  padding: 7px 22px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
}
.event-card__category a:hover {
  background-color: var(--heartox-primary, #1B3F63);
  color: var(--heartox-white, #fff);
}
.event-card__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.event-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.event-card__title a:hover {
  background-size: 100% 1px;
}
.event-card__meta {
  margin-bottom: 22px;
}
.event-card__meta li {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.event-card__meta li i {
  color: var(--heartox-base, #102A43);
  font-size: 17px;
  transition: all 0.4s ease-in-out;
}
.event-card__meta li a {
  color: inherit;
}
.event-card__meta li + li {
  margin-top: 12px;
}
.event-card .heartox-btn {
  color: var(--heartox-base, #102A43);
  padding: 12.5px 38px;
}
.event-card .heartox-btn::before {
  background-color: var(--heartox-white, #fff);
}
.event-card .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.event-card .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.event-card:hover {
  background-color: transparent;
}
.event-card:hover::after {
  transform: translateY(0%);
}
.event-card:hover .event-card__title a {
  color: var(--heartox-white, #fff);
}
.event-card:hover .event-card__meta li {
  color: var(--heartox-text-gray, #9AAABC);
}
.event-card:hover .event-card__meta li i {
  color: var(--heartox-secondary, #E9AD45);
}
.event-card:hover .event-card__image img {
  transform: scale(1.1);
}

.event-list-card {
  position: relative;
  z-index: 1;
  border-radius: 13px;
  overflow: hidden;
}
.event-list-card__inner {
  display: flex;
  justify-content: start;
}
@media (max-width: 767px) {
  .event-list-card__inner {
    flex-direction: column;
  }
}
.event-list-card__content {
  padding: 48px 40px 58px 50px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .event-list-card__content {
    padding: 24px 25px;
  }
}
@media (max-width: 500px) {
  .event-list-card__content {
    padding: 24px 25px;
  }
}
.event-list-card__content--one {
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-radius: 14px 0 0 14px;
  margin-right: 0px;
  background-color: var(--heartox-white, #fff);
  flex: 52%;
  width: 52%;
}
@media (max-width: 991px) and (min-width: 768px) {
  .event-list-card__content--one {
    border-radius: 14px 0 0 0px;
  }
}
@media (max-width: 767px) {
  .event-list-card__content--one {
    flex: 100%;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .event-list-card__content--one {
    border-radius: 14px 14px 0 0px;
  }
}
.event-list-card__content--two {
  flex: 48%;
  width: 48%;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 0 14px 14px 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .event-list-card__content--two {
    border-radius: 0px;
  }
}
@media (max-width: 767px) {
  .event-list-card__content--two {
    flex: 100%;
    width: 100%;
  }
}
.event-list-card__content--two::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
  transform: translateY(-100%);
  transition: all 0.4s ease-in-out;
}
.event-list-card__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 167%;
  color: var(--heartox-base, #102A43);
  margin-bottom: 13px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 500px) {
  .event-list-card__title {
    font-size: 20px;
  }
}
.event-list-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.event-list-card__title a:hover {
  background-size: 100% 1px;
}
.event-list-card__meta {
  margin-bottom: 25px;
}
.event-list-card__meta li {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
.event-list-card__meta li i {
  color: var(--heartox-base, #102A43);
  font-size: 17px;
  transition: all 0.4s ease-in-out;
}
.event-list-card__meta li a {
  color: inherit;
}
.event-list-card__meta li + li {
  margin-top: 12px;
}
.event-list-card .heartox-btn {
  color: var(--heartox-base, #102A43);
  padding: 12.5px 38px;
}
.event-list-card .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.event-list-card .heartox-btn::after {
  background-color: var(--heartox-base, #102A43);
}
.event-list-card .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.event-list-card__image {
  margin-left: -50px;
}
.event-list-card__image img {
  object-fit: cover;
  width: 100%;
  height: 307px;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .event-list-card__image img {
    height: 255px;
  }
}
.event-list-card__category a {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 162%;
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
  border-radius: 40px;
  padding: 9px 30px;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media (max-width: 991px) {
  .event-list-card__category a {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
}
.event-list-card__category a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.event-list-card__date__inner {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.event-list-card__date {
  text-align: center;
  padding: 15px 40px;
  border-radius: 40px;
  font-style: normal;
  font-weight: 700;
  display: inline-block;
  font-size: 29px;
  line-height: 133%;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-white, #fff);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 500px) {
  .event-list-card__date {
    padding: 15px 30px;
    font-size: 25px;
  }
}
.event-list-card__speaker__title {
  margin: 0;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.event-list-card__speaker__image {
  display: flex;
  justify-content: center;
}
.event-list-card__speaker__image img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
}
.event-list-card__speaker__image img:not(:last-child) {
  margin-right: -15px;
}
.event-list-card:hover .event-list-card__content--two::after {
  transform: translateY(0%);
}
.event-list-card:hover .event-list-card__speaker__title {
  color: var(--heartox-white, #fff);
}

.events-two {
  position: relative;
  z-index: 1;
}
.events-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}

/**** Event Four ****/
.events-four {
  position: relative;
  padding: 210px 0 165px;
}
@media (max-width: 991px) {
  .events-four {
    padding-bottom: 120px;
  }
}
@media (max-width: 767px) {
  .events-four {
    padding-bottom: 80px;
  }
}
.events-four .container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}
.events-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -1;
}
.events-four__inner {
  position: relative;
  z-index: 1;
}
.events-four__carousel {
  height: 100%;
  position: relative;
}
.events-four__carousel-two {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transform: rotate(-5deg);
}

/*--------------------------------------------------------------
# Events Details
--------------------------------------------------------------*/
.events-details__image {
  margin-bottom: 40px;
}
.events-details__image img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.events-details__content__item + .events-details__content__item {
  margin-top: 30px;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  padding-top: 30px;
}
.events-details__content__btn .heartox-btn {
  padding: 13px 38px;
}
.events-details__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.events-details__text {
  margin: 0;
}
.events-details__text + .events-details__list {
  margin-top: 20px;
}
.events-details__list {
  margin-bottom: 30px;
}
.events-details__list li {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  color: var(--heartox-base, #102A43);
}
.events-details__list li i {
  color: var(--heartox-secondary, #E9AD45);
  font-size: 18px;
  margin-right: 6px;
}
.events-details__list li + li {
  margin-top: 12px;
}

.event-details__info {
  position: relative;
  z-index: 1;
}
.event-details__info__item {
  padding: 40px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.1);
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
}
.event-details__info__item--1 {
  background-color: var(--heartox-base, #102A43);
}
.event-details__info__item + .event-details__info__item {
  margin-top: 30px;
}
.event-details__info__title {
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  border-bottom: 1px solid var(--heartox-base, #102A43);
  padding-bottom: 15px;
  margin-bottom: 27px;
}
.event-details__info__list {
  margin: 0;
}
.event-details__info__list__title {
  display: block;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #132238;
  margin-bottom: 10px;
}
.event-details__info__list__text {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--heartox-base, #102A43);
  display: block;
  margin: 0;
}
.event-details__info__list li + li {
  border-top: 1px solid var(--heartox-secondary, #E9AD45);
  padding-top: 26px;
  margin-top: 25px;
}
.event-details__info .social-links {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 21px;
}
.event-details__info .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background-color: var(--heartox-gray2, #F2F5F8);
  color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
.event-details__info .social-links a:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.event-details__info .event__title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  margin-bottom: 17px;
}
.event-details__info .speakers-list {
  display: flex;
  align-items: center;
  justify-content: start;
}
.event-details__info .speakers-list img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
}
.event-details__info .speakers-list img + img {
  margin-left: -15px;
}
.event-details__info__map {
  border-radius: 15px;
  background-color: var(--heartox-gray, #CBD4DE);
}
.event-details__info__map .google-map iframe {
  height: 329px;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
/***** Testimonials Card *****/
.testimonials-card {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-white, #fff);
  filter: drop-shadow(0px 4px 40px rgba(0, 0, 0, 0.1));
}
.testimonials-card::after {
  top: 40px;
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 199px;
  background: var(--heartox-primary, #1B3F63);
  border-radius: 10px;
  z-index: -1;
}
.testimonials-card__top {
  padding: 40px 30px 30px 40px;
}
.testimonials-card__rating {
  display: inline-block;
  padding: 17px 33px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-radius: 100px;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.testimonials-card__rating i {
  color: var(--heartox-secondary, #E9AD45);
  line-height: 0;
}
.testimonials-card__text {
  margin: 0;
  color: var(--heartox-text, #66788A);
}
.testimonials-card__bottom {
  padding: 30px 40px;
  background: var(--heartox-primary, #1B3F63);
  border-radius: 10px 0px 10px 10px;
  display: flex;
  align-items: center;
  gap: 11px;
  position: relative;
  z-index: 1;
  margin-left: -1px;
  margin-right: -1px;
  transition: all 0.4s ease-in-out;
}
.testimonials-card__bottom::before {
  position: absolute;
  width: 69px;
  height: 32px;
  content: "";
  background: var(--heartox-primary, #1B3F63);
  top: -25px;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  right: 0px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.testimonials-card__author {
  max-width: 45px;
  width: 100%;
  height: 45px;
  border-radius: 50%;
  border: 3px solid rgba(var(--heartox-white-rgb, 255, 255, 255), 0.17);
  overflow: hidden;
}
.testimonials-card__author-name {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin: 0;
}
.testimonials-card__author-position {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--heartox-gray, #CBD4DE);
  margin: 0;
}
.testimonials-card__quite {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
.testimonials-card__quite svg path {
  fill: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.75);
}
.testimonials-card:hover .testimonials-card__bottom {
  background-color: var(--heartox-secondary, #E9AD45);
}
.testimonials-card:hover .testimonials-card__bottom::before {
  background-color: var(--heartox-secondary, #E9AD45);
}
.testimonials-card:hover .testimonials-card__author-position {
  color: var(--heartox-white, #fff);
}
.testimonials-card:hover::after {
  animation: movebounceThree 3s ease-in-out infinite;
}

/***** Testimonials One *****/
.testimonials-one {
  position: relative;
}
.testimonials-one__right {
  margin-right: 90px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 88px 40px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .testimonials-one__right {
    margin-right: 0;
  }
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .testimonials-one__right {
    padding: 88px 30px;
  }
}
.testimonials-one .testimonials-one__rating__number {
  margin: 0;
  text-align: center;
  display: block;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.testimonials-one__rating {
  border-radius: 100px;
  letter-spacing: 1px;
  text-align: center;
}
.testimonials-one__rating i {
  color: var(--heartox-secondary, #E9AD45);
  line-height: 0;
}
.testimonials-one__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-base, #102A43);
  text-align: center;
}
.testimonials-one__rating-text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--heartox-base, #102A43);
  text-align: center;
  text-transform: capitalize;
}
.testimonials-one__rating-bottom {
  position: absolute;
  display: block;
  bottom: 0;
  left: 15px;
  right: 15px;
  height: 10px;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 20px 20px 0 0;
}
.testimonials-one__carouse {
  position: relative;
  z-index: 1;
}
.testimonials-one .owl-dots {
  position: absolute;
  top: 0;
  right: -52.5%;
  height: 98%;
  width: 6px;
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
}
@media (max-width: 1199px) {
  .testimonials-one .owl-dots {
    display: none;
  }
}
.testimonials-one .owl-dots .owl-dot span {
  width: 6px;
  border-radius: 10px;
  height: 90px;
  background-color: var(--heartox-gray2, #F2F5F8) !important;
  margin: 0;
}
.testimonials-one .owl-dots .owl-dot:hover span {
  background-color: var(--heartox-primary, #1B3F63) !important;
}
.testimonials-one .owl-dots .owl-dot.active span {
  height: 199px;
  border-radius: 10px;
  background-color: var(--heartox-primary, #1B3F63) !important;
}

.testimonials-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonials-two__left {
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 118px 40px;
  position: relative;
  z-index: 1;
}
.testimonials-two__left__rating__number {
  margin: 0;
  text-align: center;
  display: block;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 60px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.testimonials-two__left__rating {
  border-radius: 100px;
  letter-spacing: 1px;
  text-align: center;
}
.testimonials-two__left__rating i {
  color: var(--heartox-secondary, #E9AD45);
  line-height: 0;
}
.testimonials-two__left__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-base, #102A43);
  text-align: center;
}
.testimonials-two__left__rating-text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 125%;
  color: var(--heartox-base, #102A43);
  text-align: center;
  text-transform: capitalize;
}
.testimonials-two__item {
  position: relative;
  z-index: 1;
  margin-top: 126px;
  margin-bottom: 44px;
  padding-top: 1px;
}
.testimonials-two__item__top {
  position: absolute;
  left: 0;
  display: inline-flex;
  padding: 27px 45px;
  background-color: var(--heartox-base, #102A43);
  align-items: center;
  gap: 25px;
  border-radius: 10px 10px 0 0;
  justify-content: start;
  z-index: -1;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 575px) {
  .testimonials-two__item__top {
    padding: 20px 25px;
  }
}
.testimonials-two__item__user {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--heartox-white, #fff);
  overflow: hidden;
}
.testimonials-two__item__user img {
  object-fit: cover;
  width: 100%;
}
.testimonials-two__item__name {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 87%;
  text-transform: capitalize;
  color: var(--heartox-gray2, #F2F5F8);
  margin-bottom: 2px;
}
@media (max-width: 575px) {
  .testimonials-two__item__name {
    font-size: 20px;
  }
}
.testimonials-two__item__dec {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 156%;
  text-transform: capitalize;
  color: var(--heartox-text-gray, #9AAABC);
}
.testimonials-two__item__content {
  position: relative;
  z-index: 1;
  padding: 50px;
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .testimonials-two__item__content {
    padding: 30px;
  }
}
.testimonials-two__item__content::after {
  content: "";
  position: absolute;
  bottom: -42.999px;
  right: 50px;
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  width: 108px;
  height: 43px;
  background-color: var(--heartox-gray, #CBD4DE);
}
.testimonials-two__item__star {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 40px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  letter-spacing: 2px;
}
@media (max-width: 575px) {
  .testimonials-two__item__star {
    padding: 10px 15px;
  }
}
.testimonials-two__item__star i {
  line-height: normal;
  font-size: 20px;
  color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 575px) {
  .testimonials-two__item__star i {
    font-size: 14px;
  }
}
.testimonials-two__item__title {
  margin-top: -10px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  line-height: 200%;
  color: var(--heartox-secondary, #E9AD45);
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .testimonials-two__item__title {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonials-two__item__title {
    font-size: 16px;
  }
}
.testimonials-two__item__text {
  margin: 0;
  font-size: 20px;
  line-height: 200%;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .testimonials-two__item__text {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .testimonials-two__item__text {
    font-size: 15px;
  }
}
.testimonials-two__item__quite {
  position: absolute;
  bottom: 50px;
  right: 50px;
}
@media (max-width: 575px) {
  .testimonials-two__item__quite {
    right: 20px;
    bottom: 20px;
  }
}
.testimonials-two__item__quite svg path {
  transition: all 0.5s ease-in-out;
}
.testimonials-two__item:hover .testimonials-two__item__quite svg path {
  fill: var(--heartox-secondary, #E9AD45);
}
.testimonials-two__item:hover .testimonials-two__item__content {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border: 1px solid transparent;
}
.testimonials-two__carousel-box {
  position: relative;
  z-index: 1;
}
.testimonials-two__carousel {
  margin-right: -830px;
}
.testimonials-two__carousel .slick-slide + .slick-slide {
  margin-left: 30px;
}
.testimonials-two__carousel .slick-current.slick-active .testimonials-two__item__top {
  margin-top: -126px;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 575px) {
  .testimonials-two__carousel .slick-current.slick-active .testimonials-two__item__top {
    margin-top: -100px;
  }
}
@media (max-width: 992px) {
  .testimonials-two__carousel {
    margin-right: 0px;
  }
}
.testimonials-two__thumb-carousel {
  position: absolute;
  right: 135px;
  top: 32px;
  width: 200px;
  height: auto;
  z-index: 2;
  background-color: var(--heartox-white, #fff);
}
@media (max-width: 992px) {
  .testimonials-two__thumb-carousel {
    display: none;
  }
}
.testimonials-two__thumb-carousel__item img {
  object-fit: cover;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
}
.testimonials-two__slick-button {
  right: -138px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  outline: 0;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  transition: all 500ms ease;
  z-index: 1;
  width: 38px;
  color: var(--heartox-base, #102A43);
  border-radius: 50%;
  background-color: var(--heartox-gray2, #F2F5F8);
  height: 38px;
  line-height: normal;
}
.testimonials-two__slick-button:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.testimonials-two__slick-button--prev {
  right: -85px;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.testimonials-two .slick-current + .slick-active .testimonials-two__thumb-carousel__item img {
  border: 3px solid var(--heartox-primary, #1B3F63) !important;
}

/***** Testimonials Three *****/
.testimonials-three {
  position: relative;
  z-index: 1;
  background-color: var(--heartox-base, #102A43);
}
.testimonials-three__thumb {
  display: flex;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .testimonials-three__thumb {
    flex-direction: column;
    gap: 30px;
  }
  .testimonials-three__thumb .inner + .inner {
    margin-top: 30px;
  }
}
.testimonials-three__thumb img {
  object-fit: cover;
  width: 100%;
}
.testimonials-three__thumb .inner {
  position: relative;
  z-index: 1;
}
.testimonials-three__thumb .inner:hover .testimonials-three__thumb__link {
  transform-origin: top center;
  transform: scale(1, 1);
}
.testimonials-three__thumb__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 173, 69, 0.87);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.testimonials-three__thumb__link .img-popup {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heartox-black, #132238);
}
.testimonials-three__thumb .testimonials-three__thumb__item:hover .testimonials-three__thumb__link {
  transform-origin: top center;
  transform: scale(1, 1);
}
.testimonials-three__inner {
  position: relative;
  z-index: 1;
}
.testimonials-three__item {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.testimonials-three__item__auth {
  border-radius: 100px;
  padding: 25px;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
  margin-right: auto;
}
.testimonials-three__item__auth__image {
  max-width: 80px;
  height: 80px;
  border-radius: 50%;
}
.testimonials-three__item__auth__image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--heartox-white, #fff);
}
.testimonials-three__item__auth__title {
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: 86.667%;
  text-transform: capitalize;
  margin: 0;
}
.testimonials-three__item__auth__dec {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 156.213%;
  text-transform: capitalize;
  margin: 0;
}
.testimonials-three__text {
  color: var(--heartox-text-gray, #9AAABC);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  text-align: center;
}
@media (max-width: 575px) {
  .testimonials-three__text {
    font-size: 18px;
  }
}
.testimonials-three__quite {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonials-three__thumb-carousel {
  width: 275px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 90px;
  margin-top: -50px;
  height: 95px;
}
@media (max-width: 1199px) {
  .testimonials-three__thumb-carousel {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
.testimonials-three__thumb-carousel__item img {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 4.5px solid var(--heartox-white, #fff);
}
.testimonials-three__thumb-carousel .slick-slide + .slick-slide {
  margin-left: -10px;
}
.testimonials-three__thumb-carousel .slick-current + .slick-active .testimonials-three__thumb-carousel__item img {
  border: 4.5px solid var(--heartox-secondary, #E9AD45) !important;
}
.testimonials-three__auth-carousel {
  width: 360px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -75px;
}
@media (max-width: 1199px) {
  .testimonials-three__auth-carousel {
    margin-bottom: 0;
  }
}
.testimonials-three__slick-button {
  left: 51%;
  bottom: -60px;
  transform: translateX(-50%);
  position: absolute;
  outline: 0;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  transition: all 500ms ease;
  z-index: 1;
  width: 38px;
  color: var(--heartox-base, #102A43);
  border-radius: 50%;
  background-color: var(--heartox-gray2, #F2F5F8);
  height: 38px;
  line-height: normal;
}
@media (max-width: 767px) {
  .testimonials-three__slick-button {
    display: none !important;
  }
}
.testimonials-three__slick-button:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.testimonials-three__slick-button--prev {
  left: 45%;
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.testimonials-three__carousel {
  margin-bottom: 165px;
}
@media (max-width: 1199px) {
  .testimonials-three__carousel {
    margin-bottom: 100px;
  }
}
@media (max-width: 1199px) {
  .testimonials-three__carousel {
    margin-bottom: 40px;
  }
}

/***** Testimonials Four *****/
.testimonials-four {
  position: relative;
}
.testimonials-four__top {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .testimonials-four__top {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.testimonials-four__top .sec-title {
  padding-bottom: 0;
}
.testimonials-four__top__content {
  display: flex;
  align-items: center;
}
.testimonials-four__box {
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
  padding: 25px 28px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .testimonials-four__box {
    gap: 10px;
  }
}
.testimonials-four__box .star {
  color: var(--heartox-secondary, #E9AD45);
  font-size: 17px;
}
.testimonials-four__box__title {
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-style: normal;
  font-weight: 800;
  line-height: 187.5%;
  text-transform: capitalize;
  margin: 0;
}
.testimonials-four__box__text {
  color: var(--heartox-base, #102A43);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 125%;
  margin: 0;
}
.testimonials-four__box__count {
  color: var(--heartox-base, #102A43);
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 101.786%;
  margin: 0;
}
.testimonials-four__box__count span {
  color: inherit;
}
.testimonials-four__inner .container-fluid {
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 1350px) {
  .testimonials-four__inner .container-fluid {
    margin-left: auto;
    margin-right: auto;
  }
}
.testimonials-four__carousel {
  margin-left: 150px;
}
@media (max-width: 1350px) {
  .testimonials-four__carousel {
    margin-left: 0px;
  }
}
.testimonials-four__item {
  position: relative;
  border-radius: 10px;
}
.testimonials-four__item__top {
  overflow: hidden;
  padding: 35px 50px;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px 10px 0 0;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 1199px) and (min-width: 767px), (max-width: 575px) {
  .testimonials-four__item__top {
    padding: 20px 30px;
  }
}
.testimonials-four__item__top::after {
  content: "";
  width: 80%;
  height: 80%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-gray, #CBD4DE);
  clip-path: polygon(100% 0, 0% 100%, 0 0);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.testimonials-four__item__author {
  max-width: 160px;
  width: 100%;
  border-radius: 50%;
  height: 160px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.testimonials-four__item__author img {
  object-fit: cover;
  width: 100%;
  border-radius: 50%;
  border: 10px solid var(--heartox-white, #fff);
}
.testimonials-four__item__author .quite {
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-base, #102A43);
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}
.testimonials-four__item__author .quite::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.2);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease-in-out;
}
.testimonials-four__item__name {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.5s ease-in-out;
}
.testimonials-four__item__deg {
  color: var(--heartox-text, #66788A);
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 156.213%;
  transition: all 0.5s ease-in-out;
  margin: 0;
}
.testimonials-four__item__content {
  position: relative;
  z-index: 1;
  padding: 0px 35px 40px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-top: none;
  border-radius: 0 0 10px 10px;
}
.testimonials-four__item__star {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.testimonials-four__item__star__inner {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--heartox-base, #102A43);
  border-radius: 50px;
  padding: 20px 33px;
  letter-spacing: 4px;
  margin-top: -30px;
  transition: all 0.4s ease;
  background-color: var(--heartox-white, #fff);
}
.testimonials-four__item__text {
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  margin-bottom: -10px;
}
.testimonials-four__item:hover .testimonials-four__item__top {
  background-color: var(--heartox-base, #102A43);
}
.testimonials-four__item:hover .testimonials-four__item__top::after {
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.11);
}
.testimonials-four__item:hover .testimonials-four__item__name {
  color: var(--heartox-white, #fff);
}
.testimonials-four__item:hover .testimonials-four__item__deg {
  color: var(--heartox-text-gray, #9AAABC);
}
.testimonials-four__item:hover .quite::after {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.testimonials-four__item:hover .testimonials-four__item__star__inner {
  color: var(--heartox-secondary, #E9AD45);
}
.testimonials-four__custome-dots {
  flex: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  gap: 10px;
}
.testimonials-four__custome-dots button {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 50%;
  color: var(--heartox-base, #102A43);
  transition: all 500ms ease;
  border: 1px solid var(--heartox-base, #102A43);
}
.testimonials-four__custome-dots button:last-child {
  transform: rotate(-120deg);
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-secondary, #E9AD45);
}
.testimonials-four__custome-dots button:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-secondary, #E9AD45);
}

/***** Donation List Four *****/
.donation-list-four {
  position: relative;
}
.donation-list-four__inner {
  margin-top: 30px;
  background-color: var(--heartox-base, #102A43);
  padding: 1px 60px 50px;
  border-radius: 10px 0 10px 10px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) {
  .donation-list-four__inner {
    padding: 1px 20px 30px;
    border-radius: 10px;
  }
}
.donation-list-four__inner::after {
  content: "";
  width: 410px;
  height: 30px;
  border-radius: 0 10px 0 0;
  background-color: var(--heartox-base, #102A43);
  position: absolute;
  top: -29.55px;
  right: -0.555px;
  clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 1199px) {
  .donation-list-four__inner::after {
    display: none;
  }
}
.donation-list-four__item {
  display: flex;
  justify-content: start;
  background-color: var(--heartox-white, #fff);
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .donation-list-four__item {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.donation-list-four__content {
  flex: 58.444%;
  width: 57%;
  padding: 40px 50px 0 50px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .donation-list-four__content {
    padding: 30px 14px 0 20px;
  }
}
@media (max-width: 991px) {
  .donation-list-four__content {
    flex: 100%;
    width: 100%;
  }
}
.donation-list-four__thumb {
  width: 45%;
  flex: 45%;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .donation-list-four__thumb {
    width: 50%;
    flex: 50%;
  }
}
@media (max-width: 991px) {
  .donation-list-four__thumb {
    width: 100%;
    flex: 100%;
  }
}
.donation-list-four__thumb img {
  object-fit: cover;
  width: 100%;
}
.donation-list-four__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
  text-transform: capitalize;
  margin-bottom: 10px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .donation-list-four__title {
    font-size: 25px;
  }
}
.donation-list-four__text {
  margin-bottom: 35px;
  font-size: 18px;
}
.donation-list-four__list {
  margin-bottom: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 10px 10px 0 0;
  padding: 45px 40px 50px;
}
@media (max-width: 1199px) {
  .donation-list-four__list {
    padding: 20px;
  }
}
.donation-list-four__list li {
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--heartox-white, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.donation-list-four__list li i {
  font-size: 18px;
}
.donation-list-four__list li + li {
  margin-top: 12px;
}
.donation-list-four .tab-buttons {
  margin-bottom: 50px;
  margin-top: -30px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media (max-width: 767px) {
  .donation-list-four .tab-buttons {
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .donation-list-four .tab-buttons {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.donation-list-four .tab-buttons button {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .donation-list-four .tab-buttons .heartox-btn {
    padding: 9px 15px;
    font-size: 14px;
  }
}
.donation-list-four .tab-buttons .heartox-btn::before {
  background-color: var(--heartox-base, #102A43);
}
.donation-list-four .tab-buttons .heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.donation-list-four .tab-buttons .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.donation-list-four .tab-buttons .heartox-btn.active-btn {
  color: var(--heartox-white, #fff);
}
.donation-list-four .tab-buttons .heartox-btn.active-btn::before {
  background-color: var(--heartox-secondary, #E9AD45);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
}
.cta-one__content {
  padding: 50px 55px;
  position: relative;
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 575px) {
  .cta-one__content {
    padding: 40px;
  }
}
@media (max-width: 450px) {
  .cta-one__content {
    padding: 30px 10px;
  }
}
.cta-one__content:hover .cta-one__top::after {
  transform: translateX(0);
}
.cta-one__top {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
  padding: 20px 40px 20px 50px;
  background-color: var(--heartox-primary, #1B3F63);
  border-radius: 0 100px 100px 0;
  margin-bottom: 22px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 575px) {
  .cta-one__top {
    padding: 10px 20px 10px 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.cta-one__top::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: -1;
  transition: all 500ms ease;
  transform: translateX(-100%);
}
.cta-one__top__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--heartox-white, #fff);
}
.cta-one__top__icon {
  font-size: 54px;
  color: var(--heartox-white, #fff);
  line-height: 1;
}
.cta-one__text {
  margin: 0;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 17px;
}
.cta-one__list {
  margin-bottom: 30px;
}
.cta-one__list__item {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  gap: 15px;
}
.cta-one__list li + li {
  margin-top: 8px;
}
.cta-one__list__icon {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  line-height: normal;
  color: var(--heartox-base, #102A43);
  border-radius: 50%;
  background-color: var(--heartox-secondary, #E9AD45);
  transition: all 500ms ease;
  transition: all 0.4s ease-in-out;
}
.cta-one__btn .heartox-btn {
  padding: 7px 22px;
  font-size: 14px;
  color: var(--heartox-base, #102A43);
}
.cta-one__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.cta-one__btn .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.cta-one__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.cta-three {
  position: relative;
  z-index: 1;
}
.cta-three__inner {
  padding: 60px;
  border-radius: 10px;
  background-color: var(--heartox-secondary, #E9AD45);
  position: relative;
  z-index: 1;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .cta-three__inner {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cta-three__form {
    margin-left: 50px;
  }
}
.cta-three__form__box {
  display: flex;
  align-items: center;
}
@media (max-width: 575px) {
  .cta-three__form__box {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}
.cta-three__form__box input[type=email] {
  width: 67%;
  height: 56px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px) {
  .cta-three__form__box input[type=email] {
    width: 100%;
  }
}
.cta-three__form__box input[type=email]::placeholder {
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 129%;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
}
.cta-three__form__box button::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.cta-three__title {
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 133%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin: 0;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .cta-three__title br {
    display: none;
  }
}
.cta-three__shape-one {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.cta-three__shape-two {
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: -1;
}

.cta-one-footer {
  position: relative;
}
.cta-one-footer__inner {
  border-radius: 10px;
  background-color: var(--heartox-primary, #1B3F63);
  padding: 73px 85px 80px;
  display: flex;
  position: relative;
  z-index: 1;
  margin-bottom: -1px;
}
@media (max-width: 575px) {
  .cta-one-footer__inner {
    padding: 30px 40px;
  }
}
.cta-one-footer__inner::after {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  z-index: -2;
  background: linear-gradient(90.87deg, #102A43 40.62%, #1B3F63 99.72%);
}
.cta-one-footer__content {
  flex: 50%;
  width: 50%;
}
.cta-one-footer__title {
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 50px;
  color: var(--heartox-white, #fff);
  margin-bottom: 0px;
}
.cta-one-footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 425px;
  width: 100%;
  margin-bottom: 20px;
}
.cta-one-footer__btn {
  position: relative;
  z-index: 1;
}
.cta-one-footer__btn .heartox-btn::after {
  background-color: var(--heartox-white, #fff);
}
.cta-one-footer__btn .heartox-btn:hover {
  color: var(--heartox-text-dark, #0B1F33);
}
.cta-one-footer__shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .cta-one-footer__shape {
    display: none;
  }
}
.cta-one-footer__image-two {
  position: absolute;
  bottom: 15px;
  right: 50px;
}
.cta-one-footer__image-two img {
  animation: movebounce 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cta-one-footer__image-two {
    display: none;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  background-color: var(--heartox-black, #132238);
  margin: 0 0 30px;
}
.gallery-page__card img {
  transform: scale(1);
  width: 100%;
  object-fit: cover;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-page__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(16, 42, 67, 0.91);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-page__card__hover .img-popup {
  position: relative;
  width: 70px;
  height: 70px;
  background-color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--heartox-black, #132238);
}
.gallery-page__card__hover .img-popup i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.gallery-page__card__hover .img-popup:hover {
  background-color: var(--heartox-primary, #1B3F63);
}
.gallery-page__card__hover .img-popup:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
}
.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-page .heartox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 20px;
  margin-bottom: 30px;
}

.gallery-one {
  position: relative;
}
.gallery-one .container-fluid {
  max-width: 1785px;
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-one__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  opacity: 1;
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
}
.gallery-one__card__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.gallery-one__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: transparent;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 1199px), (max-width: 430px) {
  .gallery-one__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
.gallery-one__card__hover .img-popup:hover {
  color: var(--heartox-base, #102A43);
}
.gallery-one__card__hover__box {
  display: block;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.9);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}
.gallery-one__card__hover__box--1 {
  left: 0;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--2 {
  left: 25%;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--3 {
  left: 50%;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--4 {
  left: 75%;
  transition-delay: 0s;
}
.gallery-one__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
.gallery-one__card__icon::after, .gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media (min-width: 768px) and (max-width: 1199px), (max-width: 430px) {
  .gallery-one__card__icon {
    width: 20px;
    height: 20px;
  }
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.gallery-one__card:hover .gallery-one__card__hover .img-popup {
  opacity: 1;
  transform: scale(1);
}
.gallery-one__card:hover .gallery-one__card__hover__box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
/**** Blog Sidebar *****/
.sidebar__single {
  background-color: var(--heartox-white, #fff);
  padding: 30px 20px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.1);
  border-radius: 10px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.sidebar__single--search {
  width: 100%;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  background: var(--heartox-gray2, #F2F5F8);
  box-shadow: none;
}
@media (min-width: 1200px) {
  .sidebar__single {
    padding: 40px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  margin: 0;
  margin-top: -5px;
  margin-bottom: 29px;
  padding-bottom: 24px;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid var(--heartox-base, #102A43);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
  padding-left: 55px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.sidebar__search input[type=search]::placeholder,
.sidebar__search input[type=text]::placeholder {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 500;
  line-height: 162.5%;
  text-shadow: 0 0 0.1px currentColor;
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--heartox-text, #66788A);
  transition: all 0.4s ease-in-out;
}
.sidebar__search button[type=submit]:hover {
  color: var(--heartox-base, #102A43);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  border-bottom: 1px solid var(--heartox-secondary, #E9AD45);
  margin-bottom: 16px;
  padding-bottom: 17px;
}
.sidebar__posts__item:hover .sidebar__posts__image::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sidebar__posts__item:hover .sidebar__posts__image img {
  transform: scale(1.3) rotate(-15deg);
}
.sidebar__posts__image {
  margin-right: 20px;
  overflow: hidden;
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  position: relative;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__image::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0%;
  left: auto;
  right: 0;
  background-color: rgba(var(--heartox-black-rgb, 19, 34, 56), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__title {
  margin-bottom: 0;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.sidebar__posts__title a {
  color: inherit;
  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__posts__title a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sidebar__posts__meta a {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  transition: all 500ms ease;
}
.sidebar__posts__meta a:hover {
  color: var(--heartox-base, #102A43);
}
.sidebar__posts__meta a i {
  color: var(--heartox-secondary, #E9AD45);
  margin-right: 10px;
}
.sidebar__categories {
  margin-bottom: -4px;
}
.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--heartox-secondary, #E9AD45);
}
.sidebar__categories li:first-child a {
  padding-top: 0;
}
.sidebar__categories li:last-child a {
  padding-bottom: 0 !important;
}
.sidebar__categories li a {
  display: flex;
  align-items: center;
  padding: 12px 0 12px 0px;
  transition: all 500ms ease;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-shadow: 0 0 0 0.1 currentColor;
}
.sidebar__categories li a i {
  margin-right: 8px;
  font-size: 14px;
  color: var(--heartox-base, #102A43);
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a:hover {
  padding-left: 20px;
  color: var(--heartox-secondary, #E9AD45);
}
.sidebar__categories li a:hover i {
  color: var(--heartox-secondary, #E9AD45);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background: var(--heartox-gray2, #F2F5F8);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 11.5px 16px;
  color: var(--heartox-text, #66788A);
  border-radius: 40px;
  line-height: normal;
  font-size: 14px;
  font-weight: 600;
}
.sidebar__tags a:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E9AD45);
}
.sidebar__comments {
  margin-bottom: -4px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 21px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--heartox-gray2, #F2F5F8);
  font-size: 22px;
  color: var(--heartox-text, #66788A);
  margin-right: 14px;
  border-radius: 50%;
  transition: all 500ms ease-in-out;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.sidebar__comments__title {
  color: var(--heartox-text, #66788A);
  line-height: 185.714%;
  margin-bottom: 0px;
  width: 100%;
  font-size: 14px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-weight: 500;
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--heartox-base, #102A43);
}

/**** Service Sidebar *****/
.service-sidebar__single + .service-sidebar__single {
  margin-top: 30px;
}
.service-sidebar__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--heartox-white, #fff);
  font-size: 25px;
  padding: 32px 50px;
}
@media (min-width: 768px) {
  .service-sidebar__title {
    font-size: 30px;
  }
}
.service-sidebar__nav {
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-top: 0;
  margin-bottom: 0;
  padding-left: 50px;
  padding-right: 50px;
  padding-top: 7px;
  padding-bottom: 10px;
}
.service-sidebar__nav li:not(:last-of-type) {
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
.service-sidebar__nav li a {
  font-size: 16px;
  color: var(--heartox-text, #66788A);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 10.5px 0;
}
@media (min-width: 992px) {
  .service-sidebar__nav li a {
    font-size: 18px;
  }
}
.service-sidebar__nav li a::after {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 6px;
  opacity: 0;
}
.service-sidebar__nav li.current a, .service-sidebar__nav li:hover a {
  padding: 10.5px 35px;
  background-color: var(--heartox-gray, #CBD4DE);
  color: var(--heartox-black, #132238);
  text-shadow: 0 0 1px currentColor;
}
.service-sidebar__nav li.current a::after, .service-sidebar__nav li:hover a::after {
  color: var(--heartox-base, #102A43);
  opacity: 1;
}
.service-sidebar__nav li.current:first-child {
  margin-top: 25px;
}
.service-sidebar__nav li.current:last-child {
  margin-bottom: 20px;
}
.service-sidebar__discount {
  padding: 50px;
  padding-bottom: 30px;
  text-align: center;
  background-size: cover;
}
.service-sidebar__discount__image {
  width: 175px;
  height: 175px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 15px;
  background-color: var(--heartox-black, #132238);
  transition: all 500ms ease;
}
.service-sidebar__discount__image img {
  width: 100%;
  border-radius: 50%;
}
.service-sidebar__discount__image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 2;
}
.service-sidebar__discount__content__shape {
  display: block;
  width: auto !important;
  margin-left: auto;
  margin-right: auto;
}
.service-sidebar__discount__tagline {
  margin: 0;
  font-size: 30px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  color: var(--heartox-base, #102A43);
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .service-sidebar__discount__tagline {
    font-size: 36px;
  }
}
.service-sidebar__discount__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--heartox-black, #132238);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .service-sidebar__discount__title {
    font-size: 24px;
  }
}
.service-sidebar__discount__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-sidebar__discount__title a:hover {
  background-size: 100% 1px;
}
.service-sidebar__discount__title a:hover {
  color: var(--heartox-base, #102A43);
}
.service-sidebar__discount__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  margin-top: 10px;
  padding-bottom: 21px;
  max-width: 270px;
  margin-left: auto;
  margin-right: auto;
}
.service-sidebar__discount__link {
  font-size: 10px;
  padding: 10.75px 29.25px;
}
.service-sidebar__contact {
  padding-top: 60px;
  padding-bottom: 50px;
  background-size: cover;
}
.service-sidebar__contact__icon {
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  width: 85px;
  height: 85px;
  box-shadow: 0 0 0 11px rgba(var(--heartox-white-rgb, 255, 255, 255), 0.1);
  background-color: var(--heartox-black, #132238);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
  margin-bottom: 22px;
}
.service-sidebar__contact__icon i {
  color: var(--heartox-white, #fff);
  font-size: 28px;
  transition: color 500ms ease, transform 500ms ease;
  transform: scale(1);
}
.service-sidebar__contact__icon:hover {
  background-color: var(--heartox-white, #fff);
  box-shadow: 0 0 0 11px rgba(var(--heartox-black-rgb, 19, 34, 56), 0.1);
}
.service-sidebar__contact__icon:hover i {
  transform: scale(0.9);
  color: var(--heartox-black, #132238);
}
.service-sidebar__contact__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--heartox-white, #fff);
  max-width: 205px;
  margin-left: auto;
  margin-right: auto;
  font-size: 25px;
  margin-bottom: 23px;
  line-height: 1.2em;
}
@media (min-width: 992px) {
  .service-sidebar__contact__title {
    font-size: 30px;
  }
}
.service-sidebar__contact__number {
  color: var(--heartox-white, #fff);
  font-size: 20px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 0;
}
.service-sidebar__contact__number span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--heartox-letter-space, 0.1em);
}
.service-sidebar__contact__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-sidebar__contact__number a:hover {
  background-size: 100% 1px;
}

/**** Donations Sidebar One *****/
.sidebar-donation__single {
  margin-top: 16px;
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
}
@media (max-width: 390px) {
  .sidebar-donation__single {
    padding: 25px 30px 30px;
  }
}
.sidebar-donation__single:not(:first-child) {
  padding: 35px 40px 40px;
}
@media (max-width: 991px) {
  .sidebar-donation__single:not(:first-child) {
    margin-top: 0;
  }
}
.sidebar-donation__single + .sidebar-donation__single {
  margin-top: 30px;
}
.sidebar-donation__posts__top-title {
  margin: 0;
  margin-top: -5px;
  margin-bottom: 29px;
  padding-bottom: 24px;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid var(--heartox-base, #102A43);
}
.sidebar-donation__posts__list {
  margin: 0;
}
.sidebar-donation__posts__item {
  display: flex;
  align-items: center;
}
.sidebar-donation__posts__item:not(:last-of-type) {
  border-bottom: 1px solid var(--heartox-secondary, #E9AD45);
  margin-bottom: 16px;
  padding-bottom: 17px;
}
.sidebar-donation__posts__item:hover .sidebar-donation__posts__image::after {
  width: 100%;
  right: auto;
  left: 0;
}
.sidebar-donation__posts__item:hover .sidebar-donation__posts__image img {
  transform: scale(1.3) rotate(-15deg);
}
.sidebar-donation__posts__image {
  margin-right: 20px;
  overflow: hidden;
  max-width: 70px;
  width: 100%;
  height: 70px;
  border-radius: 10px;
  position: relative;
}
.sidebar-donation__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.sidebar-donation__posts__image::after {
  content: "";
  width: 0%;
  height: 100%;
  top: 0%;
  left: auto;
  right: 0;
  background-color: rgba(var(--heartox-black-rgb, 19, 34, 56), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.sidebar-donation__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.sidebar-donation__posts__meta a {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  display: inline-flex;
  align-items: center;
  transition: all 500ms ease;
}
.sidebar-donation__posts__meta a:hover {
  color: var(--heartox-base, #102A43);
}
.sidebar-donation__posts__meta a i {
  color: var(--heartox-secondary, #E9AD45);
  margin-right: 10px;
}
.sidebar-donation__posts__title {
  margin-bottom: 0;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
}
.sidebar-donation__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar-donation__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar-donation__posts__title a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.sidebar-donation__social__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  margin-bottom: 15px;
}
.sidebar-donation__social .social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sidebar-donation__social .social-links a {
  width: 30px;
  border-radius: 50%;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-gray, #CBD4DE);
  transition: all 0.4s ease-in-out;
}
.sidebar-donation__social .social-links a:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}

/**** Donations Sidebar One *****/
.organizer-card {
  position: relative;
  padding: 46px 31px 30px;
  background-color: var(--heartox-white, #fff);
  border-radius: 10px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
}
@media (max-width: 390px) {
  .organizer-card {
    padding: 46px 20px 20px;
  }
}
.organizer-card__category {
  margin: 0;
  padding: 4px 32px;
  position: absolute;
  top: -16px;
  left: 39px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 20px;
  transition: all 500ms ease;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 188%;
}
.organizer-card__category:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.organizer-card__info {
  margin: 0;
}
.organizer-card__info li + li {
  margin-top: 14px;
}
.organizer-card__info li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: var(--heartox-text, #66788A);
  font-weight: 700;
  line-height: 1.625;
}
.organizer-card__info li:nth-child(1) {
  gap: 18px;
}
.organizer-card__info li :not(:first-child):hover .organizer-card__info__icon {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.organizer-card__info li:hover .organizer-card__info__icon {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E9AD45);
}
.organizer-card__info__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-gray, #CBD4DE);
  border-radius: 50%;
  transition: all 500ms ease;
}
.organizer-card__image {
  position: relative;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  z-index: 1;
}
.organizer-card__image img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.organizer-card__image::before {
  content: "";
  width: 81px;
  height: calc(100% - 15px);
  background-color: var(--heartox-base, #102A43);
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 390px) {
  .organizer-card__image::before {
    width: 75px;
    left: -20px;
  }
}
.organizer-card__designation {
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.organizer-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.3;
}
.organizer-card:hover .organizer-card__category {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}

/**** Donations Sidebar Two *****/
.sidebar-donation-two__single {
  padding: 35px 40px 40px;
  margin-top: 16px;
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
}
@media (max-width: 390px) {
  .sidebar-donation-two__single {
    padding: 25px 30px 30px;
  }
}
.sidebar-donation-two__single + .sidebar-donation-two__single {
  margin-top: 30px;
}
.sidebar-donation-two__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 108%;
  text-transform: capitalize;
  border-bottom: 1px solid var(--heartox-primary, #1B3F63);
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.sidebar-donation-two__categories {
  position: relative;
  margin: 0;
}
.sidebar-donation-two__categories li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 14px;
  color: var(--heartox-text, #66788A);
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1.428;
  transition: all 500ms ease;
}
.sidebar-donation-two__categories li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--heartox-secondary, #E9AD45);
}
.sidebar-donation-two__categories li a {
  color: inherit;
  transition: all 0.4s ease-in-out;
}
.sidebar-donation-two__categories li a i {
  position: relative;
  font-size: 12px;
  color: var(--heartox-base, #102A43);
  overflow: hidden;
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
.sidebar-donation-two__categories li a:hover {
  color: var(--heartox-secondary, #E9AD45);
  padding-left: 10px;
}
.sidebar-donation-two__categories li a:hover i {
  color: var(--heartox-secondary, #E9AD45);
}
.sidebar-donation-two__donation-wrapper .sidebar-donation-two__title {
  margin-bottom: 68px;
}
.sidebar-donation-two__donation-card .donation-card {
  border-radius: 0px;
  border: 1px solid transparent;
}
.sidebar-donation-two__donation-card .donation-card:hover {
  box-shadow: none;
}
.sidebar-donation-two__donation-card .donation-card__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 146%;
  color: var(--heartox-base, #102A43);
  margin-bottom: 10px;
}
.sidebar-donation-two__donation-card .progress-box__bar + .progress-box__content {
  margin-top: 14px;
  margin-bottom: 20px;
}
.sidebar-donation-two__donation-card .donation-card + .donation-card {
  padding-top: 58px;
  margin-top: 30px;
  border-top: 1px solid var(--heartox-secondary, #E9AD45);
}
.sidebar-donation-two__donation-card .heartox-btn {
  color: var(--heartox-base, #102A43);
  background-color: var(--heartox-gray2, #F2F5F8);
  padding: 5px 20px;
}
.sidebar-donation-two__donation-card .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.sidebar-donation-two__donation-card .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.sidebar-donation-two__contact {
  position: relative;
  background-color: var(--heartox-base, #102A43);
  box-shadow: none;
  padding: 47px 30px 50px;
}
.sidebar-donation-two__contact__content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.sidebar-donation-two__contact__title {
  margin-bottom: 0;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-size: 33px;
  color: var(--heartox-white, #fff);
  font-weight: 700;
  line-height: 1.25;
}
.sidebar-donation-two__contact__text {
  margin-bottom: 22px;
  font-size: 20px;
  color: var(--heartox-white, #fff);
  font-weight: 700;
  line-height: 1.5;
}
.sidebar-donation-two__contact .heartox-btn {
  padding: 13px 38px;
}
.sidebar-donation-two__contact .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.sidebar-donation-two__contact__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sidebar-donation-two__contact__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 4px;
  bottom: -41px;
}

.donate-page__sidebar .donate-page__sidebar__item + .donate-page__sidebar__item {
  margin-top: 36px;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details .blog-card-list:hover .blog-card-list__image img {
  transform: scale(1);
  filter: grayscale(0%);
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid var(--heartox-gray, #CBD4DE);
  border-bottom: 1px solid var(--heartox-gray, #CBD4DE);
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: -2px;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
@media (min-width: 768px) {
  .blog-details__tags__title {
    font-size: 20px;
  }
}
.blog-details__tags .sidebar__tags a {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  padding: 9px 20px;
  color: var(--heartox-white, #fff);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.blog-details__tags .sidebar__tags a:hover {
  color: var(--heartox-white, #fff);
}
.blog-details__tags .sidebar__tags2 a {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.blog-details__tags .sidebar__tags2 a:hover {
  color: var(--heartox-base, #102A43);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 54px;
}
.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
}
.comments-one__list {
  margin: 0;
  margin-top: 45px;
}
.comments-one__card {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .comments-one__card {
    flex-direction: column;
    gap: 18px;
  }
}
.comments-one__card__image {
  position: relative;
  margin-right: 28px;
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 700;
  margin-top: 5px;
  margin-bottom: 13px;
}
.comments-one__card__text {
  margin: 0;
  font-size: 15.5px;
  font-weight: 500;
  margin-bottom: 20px;
}
.comments-one__card__btn .heartox-btn {
  color: var(--heartox-base, #102A43);
  padding: 10px 22px;
  line-height: normal;
}
.comments-one__card__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.comments-one__card__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.comments-one__card__btn .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.comments-one__card__content {
  position: relative;
}
@media (min-width: 1200px) {
  .comments-one__card__content {
    margin-right: 45px;
  }
}

.comments-form {
  margin-top: 40px;
}
.comments-form__title {
  margin: 0;
  text-transform: capitalize;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: normal;
}
.comments-form__form {
  margin-top: 30px;
}
.comments-form input[type=text],
.comments-form input[type=email],
.comments-form textarea {
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
  font-weight: 600;
  border-radius: 40px;
  background-color: var(--heartox-gray2, #F2F5F8);
}
.comments-form .form-one textarea {
  border-radius: 10px;
}
.comments-form .form-one__group {
  grid-gap: 20px;
}
.comments-form .heartox-btn {
  padding: 13px 37px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
  /** Product Item**/
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  margin-top: -5px;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  margin-bottom: 23px;
}
.product__sidebar__search {
  position: relative;
  margin-bottom: 30px;
}
.product__sidebar__search input[type=search],
.product__sidebar__search input[type=text] {
  outline: none;
  border-radius: 6px;
  width: 100%;
  height: 60px;
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  padding-left: 55px;
  padding-right: 30px;
  transition: all 500ms ease;
  border: none;
}
.product__sidebar__search input[type=search]:focus,
.product__sidebar__search input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.product__sidebar__search input[type=search]::placeholder,
.product__sidebar__search input[type=text]::placeholder {
  color: var(--heartox-white, #fff);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
.product__sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--heartox-white, #fff);
}
.product__price-ranger {
  background-color: var(--heartox-white, #fff);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.1);
  border-radius: 6px;
}
.product__price-ranger #slider-range {
  margin: 15px 0 23px 0px;
  background: var(--heartox-gray2, #F2F5F8);
  border: none;
  height: 8px;
  border-radius: 6px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--heartox-base, #102A43);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -3px;
  background: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 14px;
  width: 14px !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: flex;
  align-items: center;
  justify-content: space-between;
  margin: 18px 0 0 0px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--heartox-text, #66788A);
  width: 45px;
  border: none;
  outline: none;
  padding: 0;
  text-align: center;
  background-color: transparent;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 700;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block button[type=submit] {
  position: relative;
  display: block;
  float: right;
  text-align: center;
  border: none;
  margin: 0;
  cursor: pointer;
  padding: 0px 16px;
  height: 40px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185.714%;
  text-transform: capitalize;
  z-index: 1;
  color: var(--heartox-base, #102A43);
  background: var(--heartox-gray2, #F2F5F8);
}
.product__price-ranger .ranger-min-max-block button[type=submit]::before {
  background: var(--heartox-gray2, #F2F5F8);
}
.product__price-ranger .ranger-min-max-block button[type=submit]:hover {
  color: var(--heartox-white, #fff);
}
.product__categories {
  margin-bottom: -4px;
  background-color: var(--heartox-white, #fff);
  padding: 30px 30px 25px 30px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.1);
  border-radius: 6px;
}
.product__categories__title {
  margin: 0;
  margin-top: -5px;
  padding-bottom: 15px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--heartox-base, #102A43);
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.product__categories ul {
  margin-bottom: 0;
}
.product__categories ul li:not(:last-of-type) {
  border-bottom: 1px solid rgba(var(--heartox-text-rgb, 102, 120, 138), 0.15);
}
.product__categories ul li:first-child a {
  padding-top: 0;
}
.product__categories ul li:last-child a {
  padding-bottom: 0 !important;
}
.product__categories ul li a {
  display: flex;
  align-items: center;
  padding: 10px 0 14.44px 0px;
  transition: all 500ms ease;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.product__categories ul li a i {
  font-size: 14px;
  margin-right: 8px;
  color: var(--heartox-base, #102A43);
  transition: all 500ms ease;
}
.product__categories ul li a:hover {
  padding-left: 20px;
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-secondary, #E9AD45);
}
.product__categories ul li a:hover i {
  color: var(--heartox-secondary, #E9AD45);
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .product__info-top {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-top: 40px;
  }
}
.product__showing-text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
  color: var(--heartox-base, #102A43);
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 15px;
  }
}
.product__showing-sort {
  margin: 0;
  font-size: 16px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 260px !important;
}
@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 260px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  border-radius: 10px;
  position: relative;
  height: 60px;
  outline: none !important;
  border: 0;
  background-color: var(--heartox-gray2, #F2F5F8) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--heartox-text, #66788A) !important;
  line-height: 60px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  font-size: 16px;
  font-weight: 700;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "icomoon" !important;
  content: "\e921";
  font-weight: 500;
  font-size: 14px;
  color: var(--heartox-base, #102A43);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid rgba(var(--heartox-border-color-rgb, 229, 227, 224), 0.4);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 30px;
  color: var(--heartox-white, #fff);
  background: var(--heartox-base, #102A43);
  -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 {
  background: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
  border-color: var(--heartox-border-color, #e5e3e0);
}
.product__item {
  position: relative;
  background-color: var(--heartox-white, #fff);
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  transition: all 500ms ease;
  border-radius: 10px;
}
.product__item:hover {
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--heartox-base, #102A43);
}
.product__item__img {
  background-color: var(--heartox-white, #fff);
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.product__item__img__item {
  max-width: 230px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.product__item__img__item img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  color: var(--heartox-text, #66788A);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--heartox-secondary, #E9AD45);
  color: var(--heartox-white, #fff);
}
.product__item__btn 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 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 a + a {
  margin-top: 12px;
}
.product__item:hover .product__item__img img {
  transform: scale(1.05);
}
.product__item:hover .product__item__btn 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 {
  position: relative;
  text-align: center;
  padding: 20px 20px 40px 20px;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  color: var(--heartox-secondary, #E9AD45);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.product__item__title {
  margin: 0;
  margin-bottom: 10px;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
  text-shadow: 0 0 0.1px currentColor;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 130%;
}
.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__title a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--heartox-text, #66788A);
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 20px;
}
.product__item__price del {
  margin-left: 7px;
}
.product__item__link {
  color: var(--heartox-text, #66788A);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 185.714%;
  padding: 8px 27px;
  text-transform: none;
  color: var(--heartox-white, #fff);
}
.product__item__link::after {
  background: var(--heartox-secondary, #E9AD45);
}
.product__item__link:hover {
  color: var(--heartox-white, #fff);
}

@media (min-width: 992px) {
  .product-one__carousel .owl-nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
}
.product-details__img {
  background-color: var(--heartox-white, #fff);
  position: relative;
  border: 1px solid var(--heartox-gray, #CBD4DE);
  border-radius: 10px;
  max-width: 570px;
  height: auto;
}
.product-details__img img {
  object-fit: cover;
  width: 100%;
  height: auto;
}
.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}
.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--heartox-text, #66788A);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--heartox-base, #102A43);
}
.product-details__content {
  position: relative;
  margin-top: -10px;
}
@media (max-width: 991px) {
  .product-details__content {
    margin-top: 50px;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
  margin-bottom: 0;
  padding-bottom: 15px;
}
.product-details__title {
  margin-top: 5px;
  font-size: 25px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
  font-weight: 700;
  text-transform: capitalize;
}
@media (min-width: 768px) {
  .product-details__title {
    font-size: 30px;
  }
}
.product-details__price {
  margin: 0 0 0 17px;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  font-size: 17px;
  color: var(--heartox-secondary, #E9AD45);
}
.product-details__review a {
  display: inline-block;
  margin-left: 20px;
  transition: all 500ms ease;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product-details__review a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--heartox-gray, #CBD4DE);
  margin: 32px 0 20px 0;
}
.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
.product-details__excerpt-text1 {
  margin: 0 0 17px;
  max-width: 514px;
}
.product-details__excerpt-text2 {
  margin-bottom: 37px;
}
@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}
.product-details__excerpt-text2 span {
  display: block;
  margin-top: -2px;
  font-weight: 700;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
}
.product-details__quantity-title {
  margin: 0;
  margin-right: 35px;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.product-details__quantity .quantity-box {
  position: relative;
  width: auto;
  height: 46px;
  display: flex;
}
.product-details__quantity .quantity-box input {
  width: 45px;
  height: 46px;
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  appearance: textfield;
  color: var(--heartox-base, #102A43);
  padding-left: 15px;
  outline: none;
  font-size: 18px;
  font-weight: 700;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 45px;
  height: auto;
  color: var(--heartox-text, #66788A);
  font-size: 13px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button:hover, .product-details__quantity .quantity-box button:focus, .product-details__quantity .quantity-box button:active {
  background: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-radius: 10px 0 0 10px;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  border-left: 1px solid var(--heartox-border-color, #e5e3e0);
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
.product-details__quantity .quantity-box button.add {
  border-radius: 0 10px 10px 0;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  border-right: 1px solid var(--heartox-border-color, #e5e3e0);
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--heartox-white, #fff);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0px 0;
}
.product-details__buttons a {
  color: var(--heartox-white, #fff);
  padding: 13px 40px;
  text-transform: none;
}
.product-details__buttons a:first-child {
  background-color: var(--heartox-gray, #CBD4DE);
}
.product-details__buttons a:hover {
  color: var(--heartox-white, #fff);
}
.product-details__buttons a:last-child {
  color: var(--heartox-white, #fff);
}
.product-details__buttons a:last-child:hover {
  color: var(--heartox-white, #fff);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 38px;
  margin-top: 40px;
}
.product-details__socials__title {
  display: flex;
  margin-bottom: 0;
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials__item {
  display: flex;
  gap: 15px;
}
.product-details__socials__item a {
  display: inline;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--heartox-gray2, #F2F5F8);
  font-size: 12px;
  color: var(--heartox-base, #102A43);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials__item a:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 40px 0 0;
}
@media (min-width: 768px) {
  .product-details__description {
    margin: 50px 0 0;
  }
}
.product-details__description__title {
  margin-bottom: 22px;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.product-details__description__text {
  margin: 0;
}
.product-details__description__lists {
  margin-bottom: 25px;
  margin-top: 25px;
  padding: 0;
}
.product-details__description__lists li {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  display: block;
  position: relative;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: var(--heartox-base, #102A43);
}
.product-details__description__lists li i {
  color: var(--heartox-secondary, #E9AD45);
  margin-right: 5px;
}
.product-details__description__lists li + li {
  margin-top: 13px;
}
.product-details__comment {
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  margin: 30px 0 0;
  padding: 30px 0 0;
  position: relative;
}
@media (min-width: 768px) {
  .product-details__comment {
    margin: 44px 0 0;
    padding: 43px 0 0;
  }
}
.product-details__review-title {
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
.product-details__comment-box {
  position: relative;
  padding: 11px 0 52px 200px;
  margin-bottom: 45px;
  min-height: 166px;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.product-details__comment-box__thumb {
  width: 168px;
  height: 168px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}
.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-details__comment-box__meta {
  margin: 0 0 20px;
  color: var(--heartox-base, #102A43);
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
}
.product-details__comment-box__date {
  margin-left: 20px;
  display: inline-block;
  text-transform: inherit;
  letter-spacing: 0;
  color: var(--heartox-base, #102A43);
  font-size: 16px;
  font-weight: 600;
  line-height: 187.5%;
}
.product-details__comment-box__text {
  margin: 0;
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}
.product-details__form {
  position: relative;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  margin-bottom: 18px;
  color: var(--heartox-base, #102A43);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 25px;
  color: var(--heartox-primary, #1B3F63);
  margin: 0 0 40px;
}
.product-details__form-ratings i {
  color: var(--heartox-secondary, #E9AD45);
  font-size: 400;
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--heartox-text, #66788A);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  margin: 0 17px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 130%;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form .form-one__control input,
.product-details__form__form .form-one__control textarea {
  background: var(--heartox-gray2, #F2F5F8);
  border-color: transparent;
  border-radius: 30px;
  color: var(--heartox-text, #66788A);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
}
.product-details__form__form .form-one__control input::placeholder,
.product-details__form__form .form-one__control textarea::placeholder {
  color: var(--heartox-text, #66788A);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
}
.product-details__form__form .form-one__control textarea {
  border-radius: 10px;
}
.product-details__form__form .form-one__control button {
  padding-top: 13px;
  padding-bottom: 13px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  padding: 0 0 24px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0) !important;
  box-shadow: none;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
  padding: 30px 0;
  letter-spacing: 0;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 600;
  line-height: 235%;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 109px;
  height: 107px;
  background-color: var(--heartox-white, #fff);
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  margin-right: 40px;
  border-radius: 10px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  margin: 0;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 235%;
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.cart-page__table__remove {
  display: block;
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.cart-page__table__remove:hover {
  color: var(--heartox-secondary, #E9AD45);
}
.cart-page__coupone-form {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .cart-page__coupone-form {
    display: block;
  }
}
.cart-page__coupone-form input[type=text] {
  height: 56px;
  width: 303px;
  border: none;
  border-radius: 40px;
  background-color: var(--heartox-gray2, #F2F5F8);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--heartox-text, #66788A);
  display: block;
  font-weight: 600;
  margin-right: 10px;
}
@media (max-width: 1199px) {
  .cart-page__coupone-form input[type=text] {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__cart-total {
  position: relative;
  text-align: right;
  margin: -8px 0 24px;
  max-width: 400px;
  width: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}
.cart-page__cart-total li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  color: var(--heartox-base, #102A43);
  font-weight: 700;
  margin: 0 0 0px;
}
.cart-page__cart-total li:last-child {
  margin-top: 10px;
  padding-top: 15px;
  position: relative;
}
.cart-page__cart-total li:last-child::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 0%;
  right: 0;
  background: var(--heartox-border-color, #e5e3e0);
}
.cart-page__cart-total-amount {
  color: var(--heartox-text, #66788A);
  text-transform: inherit;
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 235%;
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 991px) {
  .cart-page__buttons {
    justify-content: flex-start;
  }
}
.cart-page__buttons .heartox-btn {
  padding: 11px 40px;
}
.cart-page__buttons .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.cart-page__buttons .heartox-btn--base {
  color: var(--heartox-white, #fff);
}
.cart-page__buttons .heartox-btn--base:hover {
  color: var(--heartox-white, #fff);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__notice {
  max-width: 570px;
  margin: 0 0 35px;
  padding: 35px 50px;
  background: var(--heartox-gray2, #F2F5F8);
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  border-radius: 10px;
}
.checkout-page__notice a {
  color: var(--heartox-secondary, #E9AD45);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.checkout-page__notice a:hover {
  background-size: 100% 1px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  margin: 0 0 34px;
  color: var(--heartox-base, #102A43);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 28px;
  }
}
.checkout-page__shipping-address {
  position: relative;
}
@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}
.checkout-page__shipping-address__title {
  margin: 0 0 34px;
  color: var(--heartox-base, #102A43);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 28px;
  }
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel],
.checkout-page__input-box textarea {
  height: 60px;
  border-radius: 40px;
  width: 100%;
  border: none;
  background-color: var(--heartox-gray2, #F2F5F8);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  display: block;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.checkout-page__input-box input[type=text]::placeholder,
.checkout-page__input-box input[type=email]::placeholder,
.checkout-page__input-box input[type=tel]::placeholder,
.checkout-page__input-box textarea::placeholder {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.checkout-page__input-box textarea {
  padding-top: 20px;
  border-radius: 10px;
  height: 176px;
}
.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: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--heartox-base, #102A43);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--heartox-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 10px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 50%;
  border: none;
  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__details {
  margin-top: 25px;
  margin-bottom: 60px;
}
.checkout-page__details__title {
  color: var(--heartox-base, #102A43);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 30px;
  text-shadow: 0 0 0.1px currentColor;
}
.checkout-page__details__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__details__check-box label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  color: var(--heartox-text, #66788A);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
}
.checkout-page__details__check-box label span {
  position: absolute;
  top: 2px;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  transition: all 300ms ease;
}
.checkout-page__details__check-box label span::before {
  content: "\f00c";
  color: var(--heartox-white, #fff);
  position: absolute;
  top: 4px;
  left: 6px;
  line-height: 15px;
  display: inline-block;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  font-weight: 700;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__details__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
}
.checkout-page__your-order__title {
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
}
@media (max-width: 767px) {
  .checkout-page__your-order__title {
    font-size: 28px;
  }
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 235%;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
  border-bottom: 1px solid var(--heartox-border-color, #e5e3e0);
  font-weight: bold;
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 235%;
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  color: var(--heartox-base, #102A43);
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table .pro__price {
  color: var(--heartox-text, #66788A);
  font-size: 20px;
  font-weight: 600;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--heartox-border-color, #e5e3e0);
}
.checkout-page__order-table tbody tr:last-child td.pro__price {
  color: var(--heartox-base, #102A43);
  font-weight: 700;
}
.checkout-page__payment {
  background-color: var(--heartox-gray2, #F2F5F8);
  padding: 40px 45px 17px;
  min-height: 295px;
  margin-bottom: 30px;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  font-size: 20px;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  cursor: pointer;
  font-weight: 700;
}
.checkout-page__payment__title::before {
  content: "";
  width: 22px;
  height: 22px;
  background-color: var(--heartox-white, #fff);
  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;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title img {
  margin-left: 15px;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: var(--heartox-secondary, #E9AD45);
  border-color: var(--heartox-base, #102A43);
  content: "\f00c";
  color: var(--heartox-white, #fff);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
}
.checkout-page__payment-btn {
  padding: 13px 38px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
}
.login-page__inner {
  border: 1px solid var(--heartox-gray, #CBD4DE);
  background: var(--heartox-white, #fff);
  padding: 40px 30px;
  box-shadow: 0px 6px 60px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
@media (min-width: 768px) {
  .login-page__inner {
    padding: 57px 40px 57px;
  }
}
.login-page__info {
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  padding: 35px 50px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .login-page__info {
    margin-bottom: 30px;
    padding: 15px 30px;
  }
  .login-page__info p {
    font-size: 16px;
  }
}
.login-page__info p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: normal;
  color: var(--heartox-white, #fff);
  text-transform: capitalize;
}
.login-page__info p span {
  font-weight: 700;
}
.login-page__info p a {
  line-height: normal;
  font-weight: 700;
  display: inline-block;
  color: var(--heartox-secondary, #E9AD45);
  transition: all 500ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__info p a:hover {
  background-size: 100% 1px;
}
.login-page__wrap {
  position: relative;
}
.login-page__wrap__title {
  margin-top: -5px;
  margin-bottom: 30px;
  color: var(--heartox-base, #102A43);
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.login-page__wrap .form__border {
  display: none;
}
@media (min-width: 992px) {
  .login-page__wrap .form__border {
    display: block;
  }
}
.login-page__wrap .form__border::after {
  display: none;
  position: absolute;
  top: 0;
  right: -47px;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--heartox-gray, #CBD4DE);
}
@media (min-width: 992px) {
  .login-page__wrap .form__border::after {
    display: block;
  }
}
@media (max-width: 992px) {
  .login-page .register-page__wrap {
    margin-top: 50px;
  }
}
.login-page__form {
  position: relative;
  display: block;
}
.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 40px;
  background-color: var(--heartox-gray2, #F2F5F8);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--heartox-text, #66788A);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  display: block;
}
.login-page__form-input-box input[type=email]::placeholder,
.login-page__form-input-box input[type=password]::placeholder {
  color: var(--heartox-text, #66788A);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.login-page__checked-box {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 26px;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .login-page__checked-box {
    display: block;
  }
}
.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  text-transform: none;
  color: var(--heartox-base, #102A43);
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.login-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 5px;
  display: block;
  border-bottom: 2px solid var(--heartox-base, #102A43);
  border-right: 2px solid var(--heartox-base, #102A43);
  content: "";
  width: 7px;
  height: 10px;
  pointer-events: none;
  transform-origin: 66% 66%;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.login-page__checked-box input[type=checkbox] {
  display: none;
}
.login-page__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background: transparent;
  cursor: pointer;
  transition: all 300ms ease;
  border: 1px solid var(--heartox-gray, #CBD4DE);
}
.login-page__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.login-page__form-btn-box .heartox-btn {
  padding: 10px 39px;
}
.login-page__form-forgot-password {
  position: relative;
  display: block;
  margin-left: 0px;
  flex: 0 0 100%;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .login-page__form-forgot-password {
    margin-left: 20px;
    flex: 0 0 auto;
    margin-top: 0;
  }
}
.login-page__form-forgot-password a {
  color: var(--heartox-base, #102A43);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}
.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
  color: var(--heartox-primary, #1B3F63);
}

.gutter-x-94 {
  --bs-gutter-x: 94px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  z-index: 1;
  text-align: center;
  overflow: hidden;
}
.error-404__image {
  margin-bottom: 55px;
}
.error-404__image img {
  animation: movebounce 3s ease-in-out infinite;
}
@media (max-width: 767px) {
  .error-404__image img {
    object-fit: cover;
    width: 100%;
  }
}
.error-404__title {
  margin: 0 0 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 65%;
  font-size: 35px;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 40px;
  }
}
.error-404__text {
  margin: 0 0 20px;
}
.error-404__search {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  width: 100%;
  max-width: 490px;
}
.error-404__search input[type=text] {
  border: none;
  outline: none;
  display: block;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 40px;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  width: 100%;
  max-width: 550px;
  padding-left: 50px;
  height: 60px;
}
.error-404__search__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--heartox-text, #66788A);
}
@media (min-width: 768px) {
  .error-404__search__btn {
    font-size: 22px;
  }
}
.error-404__btns .heartox-btn {
  padding-top: 13px;
  padding-bottom: 13px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  z-index: 1;
}
.faq-page .faq-top {
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 10px;
  text-align: center;
  padding: 65px 0 70px;
  margin-bottom: 60px;
}
.faq-page .faq-top__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 118%;
  color: var(--heartox-white, #fff);
  margin-bottom: 20px;
}
.faq-page .faq-top__form {
  position: relative;
  width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.faq-page .faq-top__form input[type=search],
.faq-page .faq-top__form input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
  padding-left: 55px;
  padding-right: 20px;
  transition: all 500ms ease;
  border: none;
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
}
.faq-page .faq-top__form input[type=search]:focus,
.faq-page .faq-top__form input[type=text]:focus {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.faq-page .faq-top__form input[type=search]::placeholder,
.faq-page .faq-top__form input[type=text]::placeholder {
  color: var(--heartox-text, #66788A);
  font-size: 16px;
  font-weight: 400;
  line-height: 162.5%;
  text-shadow: 0 0 0.1px currentColor;
}
.faq-page .faq-top__form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--heartox-text, #66788A);
  transition: all 0.4s ease-in-out;
}
.faq-page .faq-top__form button[type=submit]:hover {
  color: var(--heartox-base, #102A43);
}
@media (min-width: 992px) {
  .faq-page .faq-inner .tab-box-buttons {
    margin-left: -30px;
  }
}
@media (min-width: 992px) {
  .faq-page .faq-inner .tabs-content {
    margin-right: 50px;
  }
}
.faq-page .faq-inner .faq-inner__tab-buttons__item + .faq-inner__tab-buttons__item {
  margin-top: 20px;
}
.faq-page .faq-inner__tab-buttons__title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  line-height: 25px;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  padding: 24.5px 30px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 20px;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .faq-page .faq-inner__tab-buttons__title {
    font-size: 16px;
    padding: 15px 20px;
  }
}
.faq-page .faq-inner__tab-buttons__title .icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--heartox-white, #fff);
  top: 50%;
  right: 30px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .faq-page .faq-inner__tab-buttons__title .icon {
    display: none;
  }
}
.faq-page .faq-inner__tab-buttons__title .icon::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--heartox-primary, #1B3F63);
  transition: all 0.4s ease-in-out;
}
.faq-page .faq-inner__tab-buttons__title:hover {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.faq-page .faq-inner__tab-buttons__title:hover .icon {
  background-color: var(--heartox-secondary, #E9AD45);
}
.faq-page .faq-inner__tab-buttons__title:hover .icon::after {
  background-color: var(--heartox-white, #fff);
}
.faq-page .faq-inner .active-btn .faq-inner__tab-buttons__title {
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
}
.faq-page .faq-inner .active-btn .faq-inner__tab-buttons__title .icon {
  background-color: var(--heartox-secondary, #E9AD45);
}
.faq-page .faq-inner .active-btn .faq-inner__tab-buttons__title .icon::after {
  background-color: var(--heartox-white, #fff);
}
.faq-page .faq-inner .tabs-content__item {
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
}
.faq-page .faq-inner .tabs-content__item__box {
  padding: 40px;
}
.faq-page .faq-inner .tabs-content__item__title {
  margin-top: -13px;
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 167%;
  padding-bottom: 2px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--heartox-white, #fff);
}
@media (max-width: 767px) {
  .faq-page .faq-inner .tabs-content__item__title {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .faq-page .faq-inner .tabs-content__item__title {
    font-size: 20px;
  }
}
.faq-page .faq-inner .tabs-content__item__text {
  margin-bottom: -7px;
}
.faq-page .faq-inner .tabs-content__item__thumb img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.faq-page .faq-inner .tabs-content__item__hover {
  background-color: var(--heartox-base, #102A43);
  border-radius: 10px;
  padding: 1px 30px 22px;
  position: absolute;
  bottom: 0;
  left: 32%;
  transform: translateX(-20%);
  max-width: 345px;
  text-align: center;
}
.faq-page .faq-inner .tabs-content__item__hover__title {
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 175%;
  margin-bottom: 10px;
  color: var(--heartox-white, #fff);
}
.faq-page .faq-inner .tabs-content__item__hover__text {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: var(--heartox-secondary, #E9AD45);
  margin-top: -6px;
  margin-bottom: 0;
  display: flex;
  gap: 2px;
}
.faq-page .faq-inner .tabs-content__item__hover__text a {
  color: var(--heartox-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.faq-page .faq-inner .tabs-content__item__hover__text a:hover {
  background-size: 100% 1px;
}
.faq-page .faq-inner .tabs-content__item__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-secondary, #E9AD45);
  margin-top: -35px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 6px;
}
.faq-page .faq-inner .tabs-content__item__icon img {
  object-fit: cover;
  width: auto;
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-page {
  position: relative;
  z-index: 1;
}
.package-page__inner__filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}
.package-page__inner__filter .heartox-btn {
  padding: 13px 38px;
  background-color: var(--heartox-gray2, #F2F5F8);
  color: var(--heartox-base, #102A43);
}
.package-page__inner__filter .heartox-btn::before {
  background-color: var(--heartox-gray2, #F2F5F8);
}
.package-page__inner__filter .heartox-btn::after {
  background-color: var(--heartox-base, #102A43);
}
.package-page__inner__filter .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.package-page__inner__filter .heartox-btn.active-btn {
  color: var(--heartox-white, #fff);
}
.package-page__inner__filter .heartox-btn.active-btn::before {
  background-color: var(--heartox-base, #102A43);
}

.package-card {
  background-color: var(--heartox-base, #102A43);
  border-radius: 15px;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}
.package-card__head {
  padding: 40px 30px 25px;
  border-bottom: 1px solid var(--heartox-primary, #1B3F63);
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 1;
}
.package-card__head::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  transition: all 0.4s ease-in-out;
  transform: translateY(-100%);
  z-index: -1;
}
.package-card__head__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.package-card__head__box .title {
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.11);
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 75%;
  color: var(--heartox-white, #fff);
  text-align: center;
  border-radius: 40px;
  padding: 15px 30px;
  transition: all 0.4s ease-in-out;
}
.package-card__head__content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.package-card__head__price {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 75%;
  text-align: center;
  color: var(--heartox-secondary, #E9AD45);
  margin: 0;
  transition: all 0.4s ease-in-out;
}
.package-card__head__price .sup {
  font-size: 16px;
  transition: all 0.4s ease-in-out;
}
.package-card__head__price .sup2 {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: var(--heartox-text-gray, #9AAABC);
  transition: all 0.4s ease-in-out;
}
.package-card__content {
  padding: 30px;
  border: 1px solid var(--heartox-base, #102A43);
  border-top: 1px solid transparent !important;
  transition: all 0.4s ease-in-out;
  border-radius: 0 0 15px 15px;
}
.package-card__content__list {
  padding-left: 30px;
  margin-bottom: 35px;
}
.package-card__content__list__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--heartox-text-gray, #9AAABC);
  transition: all 0.4s ease-in-out;
}
.package-card__content__list__item + .package-card__content__list__item {
  margin-top: 19px;
}
.package-card__content__list__icon {
  width: 17px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  line-height: normal;
  color: var(--heartox-white, #fff);
  border-radius: 50%;
  background-color: var(--heartox-primary, #1B3F63);
  transition: all 500ms ease;
  transition: all 0.4s ease-in-out;
}
.package-card__content__link__btn {
  width: 100%;
  padding: 13px 38px;
}
.package-card__content__link .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.package-card.active, .package-card:hover {
  background-color: transparent;
}
.package-card.active .package-card__content, .package-card:hover .package-card__content {
  border: 1px solid var(--heartox-border-color, #e5e3e0);
}
.package-card.active .package-card__head, .package-card:hover .package-card__head {
  border-color: var(--heartox-secondary, #E9AD45);
}
.package-card.active .package-card__head::after, .package-card:hover .package-card__head::after {
  transform: translateY(0%);
}
.package-card.active .package-card__content__list__icon, .package-card:hover .package-card__content__list__icon {
  background-color: var(--heartox-base, #102A43);
}
.package-card.active .package-card__content__list__item, .package-card:hover .package-card__content__list__item {
  color: var(--heartox-text, #66788A);
}
.package-card.active .package-card__head__price,
.package-card.active .sup,
.package-card.active .sup2, .package-card:hover .package-card__head__price,
.package-card:hover .sup,
.package-card:hover .sup2 {
  color: var(--heartox-white, #fff);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes movebounce {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounceThree {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes movebounceTwo {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes scaleOne {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.7);
  }
}
@keyframes scaleTwo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes phone-icon-animate {
  0%, 100% {
    transform: rotate(0) scale(1) skew(1deg);
  }
  10% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  20%, 40% {
    transform: rotate(25deg) scale(1) skew(1deg);
  }
  30% {
    transform: rotate(-25deg) scale(1) skew(1deg);
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
  }
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  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(--heartox-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(--heartox-white, #fff);
}

.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: var(--heartox-black, #132238);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--heartox-black2, #000);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  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 {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--heartox-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--heartox-base, #102A43);
}

.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(--heartox-white-rgb, 255, 255, 255), 0.1);
}

.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(--heartox-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--heartox-white, #fff);
  font-size: 12px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--heartox-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--heartox-base, #102A43);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--heartox-base, #102A43);
  border: none;
  outline: none;
  color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-black, #132238);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--heartox-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--heartox-base, #102A43);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--heartox-white, #fff);
  font-size: 14px;
  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(--heartox-base, #102A43);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--heartox-white, #fff);
}

.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.9;
  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%;
  background-color: var(--heartox-white, #fff);
  font-size: 15px;
  color: var(--heartox-text, #66788A);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .heartox-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 22px;
}
.search-popup__form .heartox-btn i {
  margin: 0;
}
.search-popup__form .heartox-btn::after {
  background-color: var(--heartox-black, #132238);
}
.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;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  padding-top: 200px;
  background-color: var(--heartox-text, #66788A);
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 100px;
    padding-bottom: 90px;
  }
}
.page-header__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 63, 99, 0.6);
}
.page-header .container {
  position: relative;
  text-align: center;
}
.page-header__title {
  margin: 0 0 15px;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 94%;
  color: var(--heartox-white, #fff);
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 50px;
  }
}

.heartox-breadcrumb {
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
  padding: 5px 20px;
  background-color: var(--heartox-base, #102A43);
  border-radius: 50px;
}
.heartox-breadcrumb ul {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.heartox-breadcrumb li {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  text-transform: capitalize;
  color: var(--heartox-secondary, #E9AD45);
}
.heartox-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: 0;
  margin-left: 7px;
  margin-right: 7px;
}
.heartox-breadcrumb li span {
  color: inherit;
  display: inline-flex;
}
.heartox-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.heartox-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.heartox-breadcrumb li a:hover {
  color: var(--heartox-white, #fff);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 440px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--heartox-gray, #CBD4DE);
}

.contact-map {
  position: relative;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .contact-map {
    padding-bottom: 80px;
  }
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
  max-width: 1654px;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
}
.client-carousel__top {
  position: relative;
  z-index: 1;
}
.client-carousel__custome-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.client-carousel__custome-dots button {
  border: none;
  outline: none;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--heartox-base, #102A43);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  border-radius: 50%;
  color: var(--heartox-white, #fff);
  transition: all 500ms ease;
}
.client-carousel__custome-dots button:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E9AD45);
}
.client-carousel__custome-dots::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--heartox-border-color, #e5e3e0);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -2;
  left: 0;
}
.client-carousel__custome-dots::before {
  content: "";
  width: 50px;
  height: 5px;
  background-color: var(--heartox-white, #fff);
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  position: relative;
  background-color: transparent;
  height: 40px;
}
.client-carousel__one__item img {
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
  cursor: pointer;
}
.client-carousel__one__item:hover .client-carousel__one__hover-image {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  visibility: visible;
  opacity: 1;
}
.client-carousel__one__item:hover .client-carousel__one__image {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}
.client-carousel__one__hover-image {
  transition: all 500ms ease;
  display: block;
  position: absolute;
  z-index: 1;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
}
.client-carousel__one__image {
  transition: 500ms;
  max-width: 122px;
  width: auto;
  transition: all 500ms ease;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
/***** Hero Slider One *****/
.main-slider-one__carousel.owl-carousel:not(.owl-loaded) {
  display: block;
}
.main-slider-one__carousel.owl-carousel:not(.owl-loaded) > .item:not(:first-child) {
  display: none;
}
.main-slider-one {
  position: relative;
}
.main-slider-one__item {
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 3;
  padding-top: 228px;
  padding-bottom: 228px;
}
@media (max-width: 1199px) {
  .main-slider-one__item {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media (max-width: 992px) {
  .main-slider-one__item {
    padding-top: 130px;
    padding-bottom: 130px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
}
.main-slider-one__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 80%;
  height: 100%;
  content: "";
  background: linear-gradient(93.4deg, #102A43 20.55%, rgba(0, 0, 0, 0.01) 89.01%);
}
.main-slider-one__shape {
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateX(500px);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-one__shape img {
  max-width: 100%;
  animation: shapeMove 3s linear 0s infinite;
}
@media (max-width: 1350px) {
  .main-slider-one__shape {
    display: none;
  }
}
.main-slider-one__shape-two {
  position: absolute;
  left: 10%;
  top: 50px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateX(-500px);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-one__shape-two img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .main-slider-one__shape-two {
    display: none;
  }
}
.main-slider-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.main-slider-one__sub-title {
  margin: 0 0 15px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: normal;
  color: var(--heartox-secondary, #E9AD45);
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-400px);
}
.main-slider-one__title {
  display: inline-block;
  overflow: hidden;
  margin: 0 0 7px;
  opacity: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
}
@media (max-width: 1199px) {
  .main-slider-one__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 50px;
  }
}
.main-slider-one__title::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-one__text {
  max-width: 750px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-white, #fff);
  opacity: 0.7;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--heartox-text-gray, #9AAABC);
  margin-bottom: 35px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  opacity: 0;
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform-origin: bottom;
  transition: all 1500ms ease;
  gap: 15px;
}
@media (max-width: 450px) {
  .main-slider-one__btn {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.main-slider-one__btn__happy {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
}
.main-slider-one__btn__happy__img {
  display: flex;
  align-items: center;
}
.main-slider-one__btn__happy__img img {
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--heartox-white, #fff);
  margin-left: -15px;
}
.main-slider-one__btn__happy__img img:first-child {
  margin-left: 0;
}
.main-slider-one__btn__happy__img a {
  margin-left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--heartox-primary, #1B3F63);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--heartox-white, #fff);
  border: 2px solid var(--heartox-white, #fff);
}
.main-slider-one__btn__happy__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 125%;
  text-transform: capitalize;
  color: var(--heartox-base, #102A43);
  margin-bottom: 0;
}
.main-slider-one .active .main-slider-one__bg {
  transform: scale(1.1);
}
.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1400ms;
}
.main-slider-one .active .main-slider-one__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.main-slider-one .active .main-slider-one__shape {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1900ms;
  filter: blur(0px);
}
.main-slider-one .active .main-slider-one__shape-two {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2000ms;
  filter: blur(0px);
}

/***** Hero Slider Two *****/
.main-slider-two {
  position: relative;
}
.main-slider-two__item {
  padding: 155px 0 107px;
  position: relative;
  margin-bottom: 38px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    padding: 130px 0 100px;
    margin-bottom: 0;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding: 100px 0 80px;
    margin-bottom: 0;
  }
}
.main-slider-two__item::after {
  content: "";
  position: absolute;
  width: 670px;
  height: 100%;
  background-color: var(--heartox-secondary, #E9AD45);
  top: -1px;
  right: 0;
  z-index: -2;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-two__item::after {
    display: none;
  }
}
.main-slider-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 75%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}
@media (max-width: 1199px) {
  .main-slider-two__bg {
    width: 100%;
  }
}
.main-slider-two__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.main-slider-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translateX(-50%);
  gap: 8px;
}
@media (max-width: 1600px) {
  .main-slider-two__carousel .owl-dots {
    display: none;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 100px;
  background-color: var(--heartox-primary, #1B3F63);
  border: none;
  position: relative;
  padding: 0;
  border: none;
  outline: none;
  margin: 0;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot span {
  display: none;
}
.main-slider-two__carousel .owl-dots .owl-dot:hover, .main-slider-two__carousel .owl-dots .owl-dot.active {
  background-color: var(--heartox-base, #102A43);
}
.main-slider-two__subtitle {
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: normal;
  color: var(--heartox-base, #102A43);
  padding: 9px 35px;
  border-radius: 40px;
  border: 1px solid var(--heartox-text-gray, #9AAABC);
  display: inline-block;
  margin-bottom: 15px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-400px);
}
.main-slider-two__title {
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 112%;
  margin-bottom: 1px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  overflow: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 60px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__title {
    font-size: 50px;
  }
}
.main-slider-two__title::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-two__text {
  margin-bottom: 30px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  opacity: 0;
}
.main-slider-two__btn {
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-two__shape {
  position: absolute;
  bottom: 0;
  left: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateX(-500px);
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-two__shape {
    display: none;
  }
}
.main-slider-two__thumb {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 43%;
}
@media (max-width: 1550px) {
  .main-slider-two__thumb {
    bottom: auto;
    top: 0;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__thumb {
    display: none;
  }
}
.main-slider-two__thumb__item {
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(400px);
  opacity: 0;
}
.main-slider-two__thumb__item img {
  width: auto !important;
  object-fit: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 270.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,270.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2710 5388 c-1398 -200 -2367 -1079 -2655 -2406 -51 -233 -81 -2897 -34 -2954 21 -24 449 -28 2979 -28 2530 0 2958 4 2979 28 47 57 17 2721 -34 2954 -262 1209 -1174 2120 -2363 2360 -185 38 -731 66 -872 46z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 270.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,270.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2710 5388 c-1398 -200 -2367 -1079 -2655 -2406 -51 -233 -81 -2897 -34 -2954 21 -24 449 -28 2979 -28 2530 0 2958 4 2979 28 47 57 17 2721 -34 2954 -262 1209 -1174 2120 -2363 2360 -185 38 -731 66 -872 46z"/> </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: 992px) {
  .main-slider-two__thumb__item img {
    display: none;
  }
}
.main-slider-two__thumb__shape {
  position: absolute;
  bottom: -35px;
  right: 50px;
  z-index: -1;
  text-align: right;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  opacity: 0;
}
@media (max-width: 1550px) {
  .main-slider-two__thumb__shape {
    display: none;
  }
}
.main-slider-two__thumb__shape img {
  object-fit: cover;
  width: auto;
  animation: scaleOne 3s ease-in-out infinite;
}
.main-slider-two .active .main-slider-two__subtitle {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1400ms;
}
.main-slider-two .active .main-slider-two__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}
.main-slider-two .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__shape {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1900ms;
}
.main-slider-two .active .main-slider-two__item::after,
.main-slider-two .active .main-slider-two__thumb__shape {
  opacity: 1;
  transition-delay: 1900ms;
}
.main-slider-two .active .main-slider-two__thumb__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}

/***** Hero Slider Three *****/
.main-slider-three {
  position: relative;
}
.main-slider-three__item {
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 3;
  padding-top: 163px;
  padding-bottom: 163px;
}
@media (max-width: 1199px) {
  .main-slider-three__item {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media (max-width: 992px) {
  .main-slider-three__item {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.main-slider-three__shape {
  position: absolute;
  left: 0;
  top: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateX(-500px);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-three__shape img {
  max-width: 100%;
  animation: shapeMove 3s linear 0s infinite;
}
@media (max-width: 1350px) {
  .main-slider-three__shape {
    display: none;
  }
}
.main-slider-three__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.main-slider-three__sub-title {
  margin: 0 0 7px;
  display: inline-block;
  border-radius: 40px;
  padding: 9px 35px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid var(--heartox-primary, #1B3F63);
  line-height: normal;
  color: var(--heartox-secondary, #E9AD45);
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-400px);
}
.main-slider-three__title {
  display: inline-block;
  overflow: hidden;
  margin: 0 0 3px;
  opacity: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 80px;
  line-height: 112%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
}
.main-slider-three__title span {
  color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 70px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__title {
    font-size: 80px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 50px;
  }
}
.main-slider-three__title::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-three__text {
  max-width: 530px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-text-gray, #9AAABC);
  padding-bottom: 20px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  opacity: 0;
}
.main-slider-three__btn {
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-three__btn .heartox-btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}
.main-slider-three__thumb {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(400px);
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-three__thumb {
    width: 58%;
  }
}
@media (max-width: 992px) {
  .main-slider-three__thumb {
    display: none;
  }
}
.main-slider-three__thumb__item {
  position: relative;
  z-index: 1;
  margin-left: 25px;
}
.main-slider-three__thumb__item img {
  object-fit: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 238.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,238.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2234 2371 c-88 -21 -152 -67 -333 -234 -119 -110 -204 -164 -294 -186 -26 -6 -127 -18 -225 -26 -255 -21 -358 -59 -431 -160 -45 -63 -67 -130 -95 -295 -47 -275 -122 -357 -420 -459 -155 -54 -208 -83 -281 -157 -208 -209 -206 -508 5 -736 37 -40 70 -83 74 -96 l7 -22 527 0 c415 0 544 3 607 15 104 19 234 19 332 0 64 -12 187 -15 686 -15 l607 0 0 904 0 904 -54 55 c-29 30 -90 102 -135 160 -115 149 -175 212 -255 268 -106 75 -222 103 -322 80z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 238.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,238.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2234 2371 c-88 -21 -152 -67 -333 -234 -119 -110 -204 -164 -294 -186 -26 -6 -127 -18 -225 -26 -255 -21 -358 -59 -431 -160 -45 -63 -67 -130 -95 -295 -47 -275 -122 -357 -420 -459 -155 -54 -208 -83 -281 -157 -208 -209 -206 -508 5 -736 37 -40 70 -83 74 -96 l7 -22 527 0 c415 0 544 3 607 15 104 19 234 19 332 0 64 -12 187 -15 686 -15 l607 0 0 904 0 904 -54 55 c-29 30 -90 102 -135 160 -115 149 -175 212 -255 268 -106 75 -222 103 -322 80z"/> </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;
}
.main-slider-three__thumb__shape {
  position: absolute;
  bottom: 0;
  left: 0px;
  z-index: -1;
}
.main-slider-three__shape-one {
  position: absolute;
  top: 33%;
  right: 36%;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateY(-500px);
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-three__shape-one {
    display: none;
  }
}
.main-slider-three__shape-one img {
  width: auto !important;
}
.main-slider-three__shape-two {
  position: absolute;
  top: 7%;
  right: 22%;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateY(-500px);
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-three__shape-two {
    display: none;
  }
}
.main-slider-three__shape-two img {
  width: auto !important;
}
.main-slider-three__shape-three {
  position: absolute;
  top: 10%;
  right: 32%;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transition-delay: 0s, 0s;
  transform: translateY(-500px);
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-slider-three__shape-three {
    display: none;
  }
}
.main-slider-three__shape-three img {
  width: auto !important;
}
.main-slider-three .active .main-slider-three__bg {
  transform: scale(1.1);
}
.main-slider-three .active .main-slider-three__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-three .active .main-slider-three__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1400ms;
}
.main-slider-three .active .main-slider-three__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}
.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.main-slider-three .active .main-slider-three__shape {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1900ms;
  filter: blur(0px);
}
.main-slider-three .active .main-slider-three__shape-two {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 2000ms;
  filter: blur(0px);
}
.main-slider-three .active .main-slider-three__shape-two img {
  animation: movebounce 3s ease-in-out infinite;
}
.main-slider-three .active .main-slider-three__shape-one {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2000ms;
  filter: blur(0px);
}
.main-slider-three .active .main-slider-three__shape-one img {
  animation: movebounceTwo 3s ease-in-out infinite;
}
.main-slider-three .active .main-slider-three__shape-three {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2000ms;
  filter: blur(0px);
}
.main-slider-three .active .main-slider-three__shape-three img {
  animation: movebounceThree 3s ease-in-out infinite;
}
.main-slider-three .active .main-slider-three__thumb {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

/***** Hero Slider Four *****/
.main-slider-four {
  position: relative;
}
.main-slider-four__item {
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 3;
  padding-top: 106px;
  padding-bottom: 140px;
}
@media (max-width: 1199px) {
  .main-slider-four__item {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.main-slider-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
  z-index: -1;
}
.main-slider-four__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(var(--heartox-base-rgb, 16, 42, 67), 0.8);
}
.main-slider-four__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.main-slider-four__sub-title {
  margin: 0 0 7px;
  display: inline-block;
  border-radius: 40px;
  padding: 9px 35px;
  font-family: var(--heartox-special-font, "Caveat", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid var(--heartox-primary, #1B3F63);
  line-height: normal;
  color: var(--heartox-secondary, #E9AD45);
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-400px);
}
.main-slider-four__title {
  display: inline-block;
  overflow: hidden;
  margin: 0 0 7px;
  opacity: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 75px;
  line-height: 113%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
}
@media (max-width: 1199px) {
  .main-slider-four__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 50px;
  }
}
@media (max-width: 500px) {
  .main-slider-four__title {
    font-size: 38px;
  }
}
.main-slider-four__title::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 2px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-four__text {
  max-width: 680px;
  width: 100%;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 188%;
  color: var(--heartox-white, #fff);
  opacity: 0.6;
  margin-bottom: 30px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  opacity: 0;
}
.main-slider-four__btn {
  position: relative;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(200px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-four__btn .heartox-btn::after {
  background-color: var(--heartox-white, #fff);
}
.main-slider-four__btn .heartox-btn:hover {
  color: var(--heartox-text-dark, #0B1F33);
}
.main-slider-four__bg-shape {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 64px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
  background-image: url(../images/shapes/vector-1-3.png);
}
.main-slider-four__thumb__item {
  position: absolute;
  bottom: 20px;
  z-index: 2;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(400px);
  opacity: 0;
}
.main-slider-four__thumb__item img {
  object-fit: cover;
  width: auto !important;
}
.main-slider-four__thumb__line {
  position: absolute;
  bottom: 32%;
  z-index: 1;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
}
.main-slider-four__thumb__shape {
  position: absolute;
  bottom: 0;
  z-index: 1;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(400px);
  opacity: 0;
  right: 8%;
}
@media (max-width: 992px) {
  .main-slider-four__thumb {
    display: none;
  }
}
.main-slider-four__shape {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 992px) {
  .main-slider-four__shape {
    display: none;
  }
}
.main-slider-four .active .main-slider-four__bg {
  transform: scale(1.1);
}
.main-slider-four .active .main-slider-four__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-four .active .main-slider-four__text {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1400ms;
}
.main-slider-four .active .main-slider-four__title::after {
  transform: translateX(1%);
  transition-delay: 1500ms;
}
.main-slider-four .active .main-slider-four__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}
.main-slider-four .active .main-slider-four__thumb__item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1600ms;
}
.main-slider-four .active .main-slider-four__thumb__line {
  opacity: 1;
  transition-delay: 1200ms;
}
.main-slider-four .active .main-slider-four__thumb__shape {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.banner-one {
  position: relative;
  margin-top: 20px;
}
.banner-one__item {
  position: relative;
  z-index: 1;
  padding: 80px 90px;
}
@media (max-width: 1350px) and (min-width: 1200px), (max-width: 991px) and (min-width: 575px), (max-width: 450px) {
  .banner-one__item {
    padding: 60px 40px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .banner-one__item {
    padding: 60px 20px 60px 30px;
  }
}
.banner-one__item--style-1 .banner-one__item__bg::after {
  background: linear-gradient(90deg, #E9AD45 0%, rgba(16, 42, 67, 0) 100%);
}
.banner-one__item--style-2 .banner-one__item__bg::after {
  background: linear-gradient(90deg, rgba(27, 63, 99, 0.95) 23.3%, rgba(16, 42, 67, 0) 100%);
}
.banner-one__item--style-2 .banner-one__item__btn::after {
  background-color: var(--heartox-base, #102A43);
}
.banner-one__item__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  z-index: -3;
}
.banner-one__item__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.95) 20.33%, rgba(16, 42, 67, 0) 100%);
  z-index: -1;
}
.banner-one__item__bg::before {
  content: "";
  position: absolute;
  width: 319.67px;
  height: 278.72px;
  top: 30px;
  left: 45px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  transform: rotate(6.5deg);
  z-index: -2;
}
.banner-one__item__sub-title {
  margin: 0;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 129%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin-bottom: 10px;
}
.banner-one__item__main-title {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 112%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin: 0;
  margin-bottom: 34px;
}
.banner-one__item__btn {
  padding: 5px 20px;
}
.banner-one__item__btn::after {
  background-color: var(--heartox-primary, #1B3F63);
}

.feature-four {
  position: relative;
  z-index: 1;
}
.feature-four::after {
  content: "";
  width: 100%;
  top: 0;
  left: 0;
  bottom: 235px;
  position: absolute;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: -1;
}
.feature-four .container-fluid {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}
.feature-four__item {
  border-radius: 10px;
  background-color: var(--heartox-white, #fff);
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  padding: 30px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 500px) {
  .feature-four__item {
    padding: 15px;
  }
}
.feature-four__item__thumb {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  height: 212px;
  transition: all 0.4s ease-in-out;
}
.feature-four__item__thumb img {
  object-fit: cover;
  width: 100%;
}
.feature-four__item__link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--heartox-base, #102A43);
  color: var(--heartox-base, #102A43);
  font-size: 18px;
  background-color: var(--heartox-gray2, #F2F5F8);
  position: absolute;
  top: 20px;
  z-index: 1;
  right: 20px;
  transition: all 0.4s ease-in-out;
}
.feature-four__item__link:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}
.feature-four__item__author {
  display: flex;
  align-items: center;
  justify-content: start;
  position: relative;
  z-index: 1;
  overflow: hidden;
  gap: 20px;
  padding: 14px 20px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
}
.feature-four__item__author::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
  transform: translateX(-100%);
  transition: all 600ms ease-in-out;
}
.feature-four__item__icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  color: var(--heartox-white, #fff);
  font-size: 30px;
  transition: all 0.5s ease-in-out;
}
.feature-four__item__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 125%;
  color: var(--heartox-base, #102A43);
  text-transform: capitalize;
}
.feature-four__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.feature-four__item__title a:hover {
  background-size: 100% 1px;
}
.feature-four__item:hover .feature-four__item__author::after {
  transform: translateX(0%);
}
.feature-four__item:hover .feature-four__item__icon {
  background-color: var(--heartox-secondary, #E9AD45);
}
.feature-four__item:hover .feature-four__item__icon i {
  animation: scaleTwo 500ms linear;
}
.feature-four__item:hover .feature-four__item__title {
  color: var(--heartox-white, #fff);
}
.feature-four__item:hover .feature-four__item__thumb {
  height: 252px;
}
.feature-four__item:hover .feature-four__item__author {
  margin-top: -40px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .about-one__content {
    margin-right: 20px;
  }
}
.about-one__content .sec-title {
  padding-bottom: 10px;
}
.about-one__text {
  margin-bottom: 50px;
}
.about-one__help {
  margin-bottom: 30px;
}
.about-one__help__list {
  border: 1px solid var(--heartox-border-color, #e5e3e0);
  border-radius: 15px 15px 0 0;
  padding: 0px 30px 30px;
  display: flex;
  align-self: start;
  justify-content: space-between;
  gap: 64px;
  padding-top: 1px;
  position: relative;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-one__help__list {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
.about-one__help__list::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--heartox-border-color, #e5e3e0);
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 575px) {
  .about-one__help__list::after {
    display: none;
  }
}
.about-one__help__list__item {
  margin-top: -25px;
}
.about-one__help__list__item:hover .about-one__help__list__icon {
  background-color: transparent;
}
.about-one__help__list__item:hover .about-one__help__list__icon::after {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.about-one__help__list__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--heartox-white, #fff);
  position: relative;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  z-index: 1;
}
.about-one__help__list__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 50%;
  transform: translateY(-101%);
  opacity: 0;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  z-index: -1;
}
.about-one__help__list__title {
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  margin-bottom: 5px;
}
.about-one__help__list__text {
  margin-bottom: -7px;
}
.about-one__help__progress-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 0 0 10px 10px;
  padding: 55px 25px 17px;
}
.about-one__help__progress-box__bg {
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
  left: 0;
}
.about-one__help__progress-box__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-base, #102A43);
  opacity: 0.9;
}
.about-one__help .progress-box__bar + .progress-box {
  margin-top: 10px;
}
.about-one__help .progress-box__bar {
  position: relative;
  width: 100%;
  height: 6px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 15px;
}
.about-one__help .progress-box__bar__inner {
  position: relative;
  position: absolute;
  height: 100%;
  width: 0px;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: inherit;
  transition: all 800ms linear;
}
.about-one__help .progress-box__bar__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  border: 0;
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 11;
}
.about-one__help .progress-box__bar__inner::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: var(--heartox-gray2, #F2F5F8);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  z-index: 11;
}
.about-one__help .progress-box__number {
  padding: 5px 9px;
  position: relative;
  position: absolute;
  bottom: calc(100% + 10px);
  right: -23px;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  font-size: 12px;
  color: var(--heartox-white, #fff);
  font-weight: 600;
  line-height: 1.25;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 24px;
}
@media (max-width: 575px) {
  .about-one__help .progress-box__number {
    font-size: 15px;
  }
}
.about-one__help .progress-box__number::after {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  background-color: var(--heartox-secondary, #E9AD45);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21.000000 8.000000"><g transform="translate(0.000000,8.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M113 140 c23 -9 57 -37 74 -62 28 -40 33 -41 45 -11 7 19 36 47 65 63 50 27 45 28 -87 28 -99 0 -127 -6 -97 -18z"/> </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;
}
.about-one__help .progress-box__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.about-one__help .progress-box__text {
  color: var(--heartox-white, #fff);
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  display: flex;
  align-items: center;
  gap: 6px;
}
.about-one__help .progress-box__text span {
  color: var(--heartox-gray, #CBD4DE);
}
.about-one__btn .heartox-btn {
  padding: 13px 38px;
}
.about-one__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.about-one__thumb {
  position: relative;
  z-index: 1;
}
.about-one__thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 15px;
  position: absolute;
  bottom: -30px;
  right: -30px;
  background-color: transparent;
  border: 2px solid var(--heartox-secondary, #E9AD45);
  z-index: -1;
  animation: movebounce 3s ease-in-out infinite;
}
@media (min-width: 1200px) {
  .about-one__thumb {
    margin-left: 10px;
    margin-right: 30px;
  }
}
.about-one__thumb__item img {
  border-radius: 15px;
  object-fit: cover;
  width: 100%;
}
.about-one__thumb__bottom {
  position: absolute;
  bottom: -46px;
  left: 0;
  width: 100%;
}
.about-one__thumb__bottom__shape img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) {
  .about-one__thumb__bottom .about-one__thumb__bottom__shape img {
    object-fit: contain;
    width: 100%;
  }
}
.about-one__thumb__funfact {
  display: flex;
  align-items: center;
  gap: 17px;
  position: absolute;
  bottom: 50px;
  left: 33%;
  transform: translateX(-20%);
  z-index: 1;
}
.about-one__thumb__funfact__count {
  display: flex;
  align-items: center;
  justify-content: start;
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 68px;
  color: var(--heartox-white, #fff);
  transform: rotate(3.33deg);
}
.about-one__thumb__funfact__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: var(--heartox-secondary, #E9AD45);
  text-transform: capitalize;
  transform: rotate(4.18deg);
  margin: 0;
}
.about-one__thumb__item__icon {
  position: absolute;
  top: -50px;
  right: -70px;
  width: 180px;
  height: 180px;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleOne 6s ease-in-out infinite;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 510.000000 519.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,519.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2340 5096 c-62 -12 -110 -40 -95 -55 6 -6 28 -6 55 -1 25 5 99 9 165 9 101 1 124 -2 144 -18 46 -35 20 -41 -157 -34 -144 5 -172 4 -199 -11 -18 -9 -57 -16 -90 -17 -32 0 -80 -4 -108 -8 -96 -14 -18 -24 124 -16 243 15 300 14 355 -7 28 -10 58 -27 67 -39 12 -16 24 -20 50 -17 28 2 34 -1 37 -17 5 -45 -21 -52 -293 -79 -89 -9 -145 -19 -178 -34 -27 -12 -58 -20 -70 -17 -12 3 -54 -3 -94 -13 -59 -15 -76 -16 -95 -6 -23 13 -110 10 -131 -3 -7 -5 -30 -8 -52 -9 -72 -2 -199 -16 -223 -25 -13 -5 -50 -9 -82 -9 -41 0 -62 -4 -67 -14 -13 -23 -62 -31 -69 -12 -8 22 -37 20 -59 -4 -10 -11 -30 -20 -45 -20 -15 0 -33 -7 -40 -15 -7 -8 -21 -15 -31 -15 -18 0 -18 2 -4 24 9 13 24 27 33 30 9 3 44 22 77 41 33 19 69 39 80 45 74 39 120 70 120 82 0 25 -32 18 -77 -17 -26 -19 -53 -35 -60 -35 -7 0 -22 -7 -32 -15 -11 -8 -28 -15 -39 -15 -10 0 -39 -13 -64 -30 -24 -16 -48 -30 -52 -30 -5 0 -11 -7 -15 -15 -3 -8 -11 -15 -18 -15 -7 0 -36 -20 -63 -45 -28 -25 -67 -53 -87 -62 -21 -9 -38 -21 -38 -25 0 -18 -64 -47 -90 -41 -22 4 -28 1 -33 -16 -3 -12 -13 -21 -22 -21 -36 0 -74 -33 -150 -129 -44 -56 -88 -104 -98 -107 -9 -3 -36 -42 -58 -87 -22 -45 -47 -86 -55 -90 -8 -4 -14 -18 -14 -31 0 -28 -25 -92 -40 -101 -5 -3 -10 -13 -10 -22 0 -9 -19 -53 -41 -99 -34 -68 -41 -91 -36 -123 4 -35 -1 -60 -34 -176 -11 -37 -10 -44 20 -99 33 -63 40 -116 17 -135 -7 -6 -17 -41 -21 -78 -5 -49 -13 -72 -31 -91 -30 -33 -17 -52 28 -43 23 5 34 14 38 31 3 14 13 26 22 28 12 2 17 -9 22 -52 4 -31 5 -60 1 -65 -6 -11 -16 -108 -19 -204 -1 -37 -7 -72 -14 -79 -15 -15 -16 -90 -1 -105 14 -14 4 -46 -29 -84 -32 -39 -33 -84 -2 -133 20 -33 20 -37 6 -65 -20 -37 -20 -113 -1 -166 18 -52 19 -95 1 -95 -19 0 -26 -52 -17 -139 6 -65 10 -76 36 -97 23 -19 27 -26 17 -36 -6 -6 -12 -18 -12 -26 0 -12 3 -12 15 -2 12 10 23 2 67 -45 29 -32 56 -66 60 -76 10 -25 25 -24 38 2 9 16 6 28 -14 64 -36 60 -34 96 6 130 26 22 30 30 20 43 -22 30 -25 43 -14 54 8 8 14 4 22 -16 9 -23 13 -26 25 -16 19 16 45 6 45 -18 0 -23 65 -87 79 -78 7 4 11 -1 11 -13 0 -22 27 -41 47 -34 7 2 24 -4 37 -14 29 -21 36 -80 11 -89 -20 -8 -19 -43 1 -65 19 -21 11 -39 -18 -39 -15 0 -18 -4 -13 -17 25 -61 8 -86 -27 -40 -61 76 -68 83 -78 66 -6 -11 -18 -15 -35 -11 -18 3 -25 0 -25 -11 0 -22 18 -31 34 -18 10 9 20 2 41 -29 15 -22 32 -40 36 -40 5 0 9 -7 9 -16 0 -9 25 -41 55 -71 32 -32 55 -49 55 -40 0 8 -6 17 -13 20 -9 4 -9 7 0 17 10 11 14 10 19 -3 3 -9 12 -17 20 -17 8 0 14 -9 14 -20 0 -11 5 -20 10 -20 6 0 15 -11 20 -25 5 -14 16 -25 25 -25 27 0 59 -42 61 -82 3 -47 25 -75 121 -152 98 -78 162 -121 194 -129 13 -4 35 -16 49 -26 20 -16 22 -21 11 -35 -17 -20 -30 -20 -67 0 -98 52 -185 111 -259 177 -23 20 -45 37 -49 37 -3 0 -40 33 -82 74 -70 69 -75 77 -69 105 4 21 3 31 -5 31 -6 0 -23 14 -37 30 -27 33 -43 38 -43 15 0 -8 -4 -15 -9 -15 -14 0 -84 72 -122 125 -36 49 -83 82 -94 65 -3 -5 5 -21 19 -34 14 -13 26 -30 26 -39 0 -9 4 -19 10 -22 5 -3 20 -29 31 -56 12 -27 35 -59 50 -70 16 -11 29 -26 29 -32 0 -7 40 -55 90 -107 49 -52 100 -110 112 -127 13 -18 31 -33 41 -33 11 0 43 -20 71 -45 36 -31 62 -45 82 -45 46 0 56 -11 41 -43 -19 -42 -33 -38 -112 28 -27 22 -69 57 -94 78 -67 55 -128 117 -153 153 -12 17 -41 43 -65 57 -24 15 -43 33 -43 41 0 8 -13 25 -29 38 -16 13 -38 41 -49 63 -24 47 -87 111 -96 97 -3 -5 -4 -28 -2 -51 2 -31 17 -58 60 -116 31 -41 70 -84 86 -97 17 -12 30 -27 30 -32 1 -15 120 -144 146 -159 19 -11 89 -65 149 -115 11 -10 52 -38 90 -64 39 -25 80 -57 93 -71 12 -13 42 -30 65 -37 23 -8 49 -19 57 -26 28 -23 121 -74 134 -74 7 0 35 -12 61 -26 52 -27 87 -41 207 -80 43 -13 80 -29 83 -34 3 -6 24 -10 45 -10 22 0 59 -7 84 -15 24 -8 58 -17 76 -19 17 -2 37 -9 43 -15 6 -6 27 -11 47 -11 20 0 60 -6 90 -14 30 -7 93 -14 138 -15 48 -1 99 -8 119 -16 20 -8 55 -15 80 -15 30 0 45 -5 49 -15 8 -21 131 -20 220 1 53 12 73 13 90 4 13 -7 40 -10 65 -6 112 14 135 19 143 27 5 4 17 4 28 -2 11 -6 25 -6 36 -1 9 6 42 13 72 17 39 5 67 17 99 41 24 19 48 34 53 34 5 0 6 9 3 20 -8 26 20 28 34 3 9 -17 11 -16 33 5 14 12 32 22 41 22 14 0 159 68 217 101 8 5 24 13 35 18 11 5 37 21 58 35 21 14 40 26 43 26 3 0 12 7 21 15 8 8 19 12 25 9 7 -5 5 -11 -5 -19 -17 -12 -23 -35 -10 -35 12 0 113 64 113 72 0 4 15 15 33 24 17 9 64 49 102 88 69 70 114 106 147 118 22 9 87 98 88 119 0 9 12 25 27 35 29 21 105 85 113 96 29 39 75 88 82 88 4 0 8 -7 8 -15 0 -8 5 -15 10 -15 14 0 13 37 -2 42 -14 5 -4 38 12 38 5 0 10 -7 10 -15 0 -17 16 -20 25 -6 3 6 -2 14 -11 19 -14 8 -13 13 9 45 18 27 27 33 36 24 8 -8 14 -8 23 1 9 9 7 13 -5 18 -20 7 -23 34 -4 34 7 0 18 -5 24 -11 9 -9 14 -5 18 14 4 14 13 28 21 31 8 3 14 14 14 25 0 10 7 21 15 25 20 7 19 33 -2 44 -11 6 -14 16 -9 28 7 18 9 17 26 -6 18 -24 19 -24 25 -5 4 11 10 27 15 35 63 108 156 338 170 420 4 25 14 59 20 75 7 17 16 39 21 50 4 11 11 40 15 65 3 25 10 50 14 55 11 15 23 123 14 136 -5 8 -12 5 -23 -9 -9 -11 -25 -22 -36 -24 -18 -3 -20 3 -23 55 -2 39 2 68 13 90 14 26 17 63 16 197 0 91 -5 210 -11 265 -6 55 -15 150 -20 210 -5 61 -14 128 -19 150 -6 22 -11 77 -11 123 0 105 -27 204 -74 272 -20 29 -36 57 -36 62 0 18 -51 118 -61 118 -14 0 -11 -54 6 -76 8 -10 15 -29 15 -42 0 -25 20 -60 62 -110 29 -33 39 -94 18 -107 -13 -8 -13 -25 0 -25 6 0 10 7 10 15 0 21 17 19 22 -3 7 -24 -6 -59 -16 -44 -4 7 -11 12 -16 12 -16 0 -20 -33 -6 -54 7 -12 16 -42 19 -66 3 -25 9 -60 12 -77 5 -24 4 -33 -5 -33 -23 0 -85 75 -95 115 -8 33 -14 40 -35 40 -20 0 -26 6 -28 30 -2 17 -9 37 -16 45 -7 8 -16 22 -20 30 -3 8 -15 29 -25 45 -28 43 -61 109 -61 122 0 6 -13 41 -29 79 -16 38 -32 76 -35 84 -4 8 -15 29 -25 45 -11 17 -29 48 -41 70 -12 22 -35 56 -51 76 -16 20 -29 42 -29 47 0 6 -6 15 -13 19 -7 4 -27 26 -44 48 -38 50 -140 152 -209 211 -28 24 -104 97 -170 161 -122 121 -161 150 -296 216 -43 21 -80 43 -83 48 -4 5 -19 9 -35 9 -36 0 -93 25 -141 62 -20 16 -47 28 -58 28 -27 0 -83 28 -94 46 -4 8 -15 14 -24 14 -20 0 -65 48 -52 56 5 3 15 1 22 -4 16 -13 77 -21 77 -10 0 4 -10 8 -22 8 -12 0 -30 8 -40 17 -10 9 -27 17 -37 18 -11 1 -25 6 -33 12 -19 16 -122 43 -200 53 -38 5 -73 12 -79 16 -7 4 -96 10 -198 14 -102 4 -193 9 -201 12 -8 3 -40 0 -70 -6z m2594 -2885 c4 -5 3 -16 0 -25 -5 -12 -10 -14 -20 -6 -7 7 -10 18 -7 26 6 16 19 18 27 5z m-4556 -13 c-3 -7 -15 -15 -28 -16 -21 -3 -22 -2 -11 12 16 19 44 21 39 4z m58 -71 c4 -12 -5 -29 -25 -49 -37 -38 -27 -57 17 -34 29 15 32 15 42 -3 16 -31 12 -47 -25 -91 -30 -36 -35 -49 -35 -96 0 -43 -4 -55 -20 -64 -26 -14 -40 -5 -40 24 0 12 -7 31 -15 42 -8 10 -15 31 -15 47 0 23 4 27 26 27 24 0 26 3 20 28 -3 15 -9 60 -13 101 -6 69 -5 75 17 91 27 20 56 10 66 -23z m-116 -164 c0 -13 -4 -23 -9 -23 -12 0 -21 38 -14 57 8 20 23 -3 23 -34z m450 -615 c0 -5 -7 -8 -15 -8 -8 0 -15 7 -15 15 0 8 -7 15 -15 15 -15 0 -20 12 -9 23 7 7 54 -33 54 -45z m112 22 c13 -17 37 -46 55 -65 30 -31 52 -80 41 -91 -8 -7 -88 40 -88 53 0 7 -13 22 -30 35 -16 12 -30 27 -30 34 0 7 -6 14 -12 17 -9 3 -8 10 6 26 25 28 30 27 58 -9z m3278 -401 c0 -7 -11 -22 -25 -35 -28 -26 -31 -21 -12 19 12 27 37 37 37 16z m-2705 -196 c17 -8 46 -23 65 -33 34 -19 35 -19 8 -20 -15 0 -30 5 -33 10 -3 6 -14 10 -24 10 -10 0 -26 9 -36 20 -12 13 -31 20 -57 20 -21 0 -38 4 -38 9 0 12 78 1 115 -16z m-199 -92 c-5 -16 51 -61 77 -61 7 0 21 -7 31 -15 11 -8 30 -15 42 -15 12 0 24 -7 28 -15 3 -8 16 -15 30 -15 13 0 26 -7 30 -15 3 -10 19 -15 43 -15 21 0 48 -3 60 -6 19 -5 20 -9 10 -28 -7 -11 -13 -23 -14 -25 -1 -1 -16 4 -34 13 -18 9 -37 16 -43 16 -5 0 -37 13 -71 30 -33 16 -82 39 -108 52 -79 38 -97 49 -97 59 0 5 -6 9 -14 9 -24 0 -28 18 -9 38 21 22 46 17 39 -7z m408 8 c-7 -12 -41 -12 -49 0 -6 11 23 20 42 13 7 -2 10 -8 7 -13z m64 -27 c3 -9 -3 -13 -19 -10 -12 1 -24 9 -27 16 -3 9 3 13 19 10 12 -1 24 -9 27 -16z m-189 -21 c9 -6 10 -10 2 -16 -16 -9 -44 2 -36 15 8 12 16 12 34 1z m195 -147 c24 -9 19 -24 -8 -24 -26 0 -40 12 -29 24 8 8 17 8 37 0z m114 -41 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m172 -33 c0 -13 -20 -13 -40 0 -12 8 -9 10 13 10 15 0 27 -4 27 -10z"/> <path d="M1871 4931 c-22 -14 6 -24 46 -16 27 5 33 9 22 16 -18 11 -50 11 -68 0z"/> <path d="M3232 4928 c3 -7 13 -15 22 -16 12 -3 17 1 14 10 -3 7 -13 15 -22 16 -12 3 -17 -1 -14 -10z"/> <path d="M4125 4780 c-3 -6 1 -13 10 -16 19 -8 30 0 20 15 -8 14 -22 14 -30 1z"/> <path d="M4306 4301 c-3 -5 1 -11 9 -15 9 -3 15 0 15 9 0 16 -16 20 -24 6z"/> <path d="M4380 4241 c0 -5 12 -17 27 -27 44 -28 107 -96 149 -160 21 -32 42 -60 46 -62 5 -2 8 -12 8 -22 0 -11 6 -23 14 -27 8 -4 15 -17 18 -28 2 -11 8 -19 13 -18 16 3 17 20 2 34 -7 8 -17 27 -21 42 -3 15 -11 27 -16 27 -6 0 -10 7 -10 16 0 19 -45 100 -76 137 -42 50 -105 97 -130 97 -13 0 -24 -4 -24 -9z"/> <path d="M4675 3530 c-4 -6 -3 -16 3 -22 6 -6 12 -6 17 2 4 6 3 16 -3 22 -6 6 -12 6 -17 -2z"/> <path d="M4940 3451 c0 -26 16 -35 24 -15 10 25 7 34 -9 34 -8 0 -15 -9 -15 -19z"/> <path d="M4702 3431 c2 -7 7 -12 11 -12 12 1 9 15 -3 20 -7 2 -11 -2 -8 -8z"/> <path d="M4946 3379 c-3 -19 -1 -41 8 -58 7 -14 22 -61 31 -103 23 -97 29 -108 50 -87 15 15 15 23 0 100 -8 45 -23 94 -33 107 -9 14 -24 35 -33 49 l-16 24 -7 -32z"/> <path d="M147 3153 c-13 -12 -7 -43 8 -43 9 0 15 9 15 25 0 24 -10 32 -23 18z"/> <path d="M5030 3091 c0 -11 5 -23 10 -26 6 -4 10 5 10 19 0 14 -4 26 -10 26 -5 0 -10 -9 -10 -19z"/> <path d="M85 2948 c-3 -7 -6 -29 -7 -48 -2 -25 1 -35 12 -35 16 0 36 56 27 79 -8 19 -26 21 -32 4z"/> <path d="M194 2915 c-21 -32 -15 -59 14 -63 23 -3 62 22 62 40 0 11 -38 48 -50 48 -5 0 -17 -11 -26 -25z"/> <path d="M74 2799 c-8 -14 18 -31 30 -19 9 9 0 30 -14 30 -5 0 -12 -5 -16 -11z"/> <path d="M227 2663 c-14 -13 -6 -33 13 -33 13 0 20 7 20 20 0 19 -20 27 -33 13z"/> <path d="M541 1756 c-1 -38 2 -57 9 -50 5 5 6 29 1 59 l-9 50 -1 -59z"/> <path d="M671 1698 c-17 -6 -21 -12 -14 -19 13 -13 65 -16 69 -4 7 18 -29 33 -55 23z"/> <path d="M320 1536 c0 -8 7 -21 15 -30 8 -8 15 -19 15 -24 0 -16 48 -54 55 -43 7 12 -31 71 -46 71 -5 0 -9 9 -9 20 0 11 -7 20 -15 20 -8 0 -15 -6 -15 -14z"/> <path d="M444 1497 c-7 -20 3 -37 22 -37 18 0 18 24 -1 40 -12 10 -16 9 -21 -3z"/> <path d="M592 1438 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M622 1388 c6 -18 28 -21 28 -4 0 9 -7 16 -16 16 -9 0 -14 -5 -12 -12z"/> <path d="M110 1363 c0 -13 47 -53 53 -46 4 3 -4 16 -16 29 -22 24 -37 30 -37 17z"/> <path d="M270 1230 c0 -5 5 -12 10 -15 6 -3 10 -13 10 -21 0 -9 19 -41 43 -72 23 -31 50 -73 61 -92 26 -48 86 -110 107 -110 25 0 52 40 38 57 -6 7 -8 20 -5 29 6 16 8 16 24 1 61 -58 82 -75 98 -81 11 -4 -12 24 -50 63 -38 38 -72 69 -75 69 -11 -2 -59 21 -65 30 -3 5 -21 13 -39 16 -25 5 -42 19 -71 59 -35 48 -86 88 -86 67z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 510.000000 519.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,519.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2340 5096 c-62 -12 -110 -40 -95 -55 6 -6 28 -6 55 -1 25 5 99 9 165 9 101 1 124 -2 144 -18 46 -35 20 -41 -157 -34 -144 5 -172 4 -199 -11 -18 -9 -57 -16 -90 -17 -32 0 -80 -4 -108 -8 -96 -14 -18 -24 124 -16 243 15 300 14 355 -7 28 -10 58 -27 67 -39 12 -16 24 -20 50 -17 28 2 34 -1 37 -17 5 -45 -21 -52 -293 -79 -89 -9 -145 -19 -178 -34 -27 -12 -58 -20 -70 -17 -12 3 -54 -3 -94 -13 -59 -15 -76 -16 -95 -6 -23 13 -110 10 -131 -3 -7 -5 -30 -8 -52 -9 -72 -2 -199 -16 -223 -25 -13 -5 -50 -9 -82 -9 -41 0 -62 -4 -67 -14 -13 -23 -62 -31 -69 -12 -8 22 -37 20 -59 -4 -10 -11 -30 -20 -45 -20 -15 0 -33 -7 -40 -15 -7 -8 -21 -15 -31 -15 -18 0 -18 2 -4 24 9 13 24 27 33 30 9 3 44 22 77 41 33 19 69 39 80 45 74 39 120 70 120 82 0 25 -32 18 -77 -17 -26 -19 -53 -35 -60 -35 -7 0 -22 -7 -32 -15 -11 -8 -28 -15 -39 -15 -10 0 -39 -13 -64 -30 -24 -16 -48 -30 -52 -30 -5 0 -11 -7 -15 -15 -3 -8 -11 -15 -18 -15 -7 0 -36 -20 -63 -45 -28 -25 -67 -53 -87 -62 -21 -9 -38 -21 -38 -25 0 -18 -64 -47 -90 -41 -22 4 -28 1 -33 -16 -3 -12 -13 -21 -22 -21 -36 0 -74 -33 -150 -129 -44 -56 -88 -104 -98 -107 -9 -3 -36 -42 -58 -87 -22 -45 -47 -86 -55 -90 -8 -4 -14 -18 -14 -31 0 -28 -25 -92 -40 -101 -5 -3 -10 -13 -10 -22 0 -9 -19 -53 -41 -99 -34 -68 -41 -91 -36 -123 4 -35 -1 -60 -34 -176 -11 -37 -10 -44 20 -99 33 -63 40 -116 17 -135 -7 -6 -17 -41 -21 -78 -5 -49 -13 -72 -31 -91 -30 -33 -17 -52 28 -43 23 5 34 14 38 31 3 14 13 26 22 28 12 2 17 -9 22 -52 4 -31 5 -60 1 -65 -6 -11 -16 -108 -19 -204 -1 -37 -7 -72 -14 -79 -15 -15 -16 -90 -1 -105 14 -14 4 -46 -29 -84 -32 -39 -33 -84 -2 -133 20 -33 20 -37 6 -65 -20 -37 -20 -113 -1 -166 18 -52 19 -95 1 -95 -19 0 -26 -52 -17 -139 6 -65 10 -76 36 -97 23 -19 27 -26 17 -36 -6 -6 -12 -18 -12 -26 0 -12 3 -12 15 -2 12 10 23 2 67 -45 29 -32 56 -66 60 -76 10 -25 25 -24 38 2 9 16 6 28 -14 64 -36 60 -34 96 6 130 26 22 30 30 20 43 -22 30 -25 43 -14 54 8 8 14 4 22 -16 9 -23 13 -26 25 -16 19 16 45 6 45 -18 0 -23 65 -87 79 -78 7 4 11 -1 11 -13 0 -22 27 -41 47 -34 7 2 24 -4 37 -14 29 -21 36 -80 11 -89 -20 -8 -19 -43 1 -65 19 -21 11 -39 -18 -39 -15 0 -18 -4 -13 -17 25 -61 8 -86 -27 -40 -61 76 -68 83 -78 66 -6 -11 -18 -15 -35 -11 -18 3 -25 0 -25 -11 0 -22 18 -31 34 -18 10 9 20 2 41 -29 15 -22 32 -40 36 -40 5 0 9 -7 9 -16 0 -9 25 -41 55 -71 32 -32 55 -49 55 -40 0 8 -6 17 -13 20 -9 4 -9 7 0 17 10 11 14 10 19 -3 3 -9 12 -17 20 -17 8 0 14 -9 14 -20 0 -11 5 -20 10 -20 6 0 15 -11 20 -25 5 -14 16 -25 25 -25 27 0 59 -42 61 -82 3 -47 25 -75 121 -152 98 -78 162 -121 194 -129 13 -4 35 -16 49 -26 20 -16 22 -21 11 -35 -17 -20 -30 -20 -67 0 -98 52 -185 111 -259 177 -23 20 -45 37 -49 37 -3 0 -40 33 -82 74 -70 69 -75 77 -69 105 4 21 3 31 -5 31 -6 0 -23 14 -37 30 -27 33 -43 38 -43 15 0 -8 -4 -15 -9 -15 -14 0 -84 72 -122 125 -36 49 -83 82 -94 65 -3 -5 5 -21 19 -34 14 -13 26 -30 26 -39 0 -9 4 -19 10 -22 5 -3 20 -29 31 -56 12 -27 35 -59 50 -70 16 -11 29 -26 29 -32 0 -7 40 -55 90 -107 49 -52 100 -110 112 -127 13 -18 31 -33 41 -33 11 0 43 -20 71 -45 36 -31 62 -45 82 -45 46 0 56 -11 41 -43 -19 -42 -33 -38 -112 28 -27 22 -69 57 -94 78 -67 55 -128 117 -153 153 -12 17 -41 43 -65 57 -24 15 -43 33 -43 41 0 8 -13 25 -29 38 -16 13 -38 41 -49 63 -24 47 -87 111 -96 97 -3 -5 -4 -28 -2 -51 2 -31 17 -58 60 -116 31 -41 70 -84 86 -97 17 -12 30 -27 30 -32 1 -15 120 -144 146 -159 19 -11 89 -65 149 -115 11 -10 52 -38 90 -64 39 -25 80 -57 93 -71 12 -13 42 -30 65 -37 23 -8 49 -19 57 -26 28 -23 121 -74 134 -74 7 0 35 -12 61 -26 52 -27 87 -41 207 -80 43 -13 80 -29 83 -34 3 -6 24 -10 45 -10 22 0 59 -7 84 -15 24 -8 58 -17 76 -19 17 -2 37 -9 43 -15 6 -6 27 -11 47 -11 20 0 60 -6 90 -14 30 -7 93 -14 138 -15 48 -1 99 -8 119 -16 20 -8 55 -15 80 -15 30 0 45 -5 49 -15 8 -21 131 -20 220 1 53 12 73 13 90 4 13 -7 40 -10 65 -6 112 14 135 19 143 27 5 4 17 4 28 -2 11 -6 25 -6 36 -1 9 6 42 13 72 17 39 5 67 17 99 41 24 19 48 34 53 34 5 0 6 9 3 20 -8 26 20 28 34 3 9 -17 11 -16 33 5 14 12 32 22 41 22 14 0 159 68 217 101 8 5 24 13 35 18 11 5 37 21 58 35 21 14 40 26 43 26 3 0 12 7 21 15 8 8 19 12 25 9 7 -5 5 -11 -5 -19 -17 -12 -23 -35 -10 -35 12 0 113 64 113 72 0 4 15 15 33 24 17 9 64 49 102 88 69 70 114 106 147 118 22 9 87 98 88 119 0 9 12 25 27 35 29 21 105 85 113 96 29 39 75 88 82 88 4 0 8 -7 8 -15 0 -8 5 -15 10 -15 14 0 13 37 -2 42 -14 5 -4 38 12 38 5 0 10 -7 10 -15 0 -17 16 -20 25 -6 3 6 -2 14 -11 19 -14 8 -13 13 9 45 18 27 27 33 36 24 8 -8 14 -8 23 1 9 9 7 13 -5 18 -20 7 -23 34 -4 34 7 0 18 -5 24 -11 9 -9 14 -5 18 14 4 14 13 28 21 31 8 3 14 14 14 25 0 10 7 21 15 25 20 7 19 33 -2 44 -11 6 -14 16 -9 28 7 18 9 17 26 -6 18 -24 19 -24 25 -5 4 11 10 27 15 35 63 108 156 338 170 420 4 25 14 59 20 75 7 17 16 39 21 50 4 11 11 40 15 65 3 25 10 50 14 55 11 15 23 123 14 136 -5 8 -12 5 -23 -9 -9 -11 -25 -22 -36 -24 -18 -3 -20 3 -23 55 -2 39 2 68 13 90 14 26 17 63 16 197 0 91 -5 210 -11 265 -6 55 -15 150 -20 210 -5 61 -14 128 -19 150 -6 22 -11 77 -11 123 0 105 -27 204 -74 272 -20 29 -36 57 -36 62 0 18 -51 118 -61 118 -14 0 -11 -54 6 -76 8 -10 15 -29 15 -42 0 -25 20 -60 62 -110 29 -33 39 -94 18 -107 -13 -8 -13 -25 0 -25 6 0 10 7 10 15 0 21 17 19 22 -3 7 -24 -6 -59 -16 -44 -4 7 -11 12 -16 12 -16 0 -20 -33 -6 -54 7 -12 16 -42 19 -66 3 -25 9 -60 12 -77 5 -24 4 -33 -5 -33 -23 0 -85 75 -95 115 -8 33 -14 40 -35 40 -20 0 -26 6 -28 30 -2 17 -9 37 -16 45 -7 8 -16 22 -20 30 -3 8 -15 29 -25 45 -28 43 -61 109 -61 122 0 6 -13 41 -29 79 -16 38 -32 76 -35 84 -4 8 -15 29 -25 45 -11 17 -29 48 -41 70 -12 22 -35 56 -51 76 -16 20 -29 42 -29 47 0 6 -6 15 -13 19 -7 4 -27 26 -44 48 -38 50 -140 152 -209 211 -28 24 -104 97 -170 161 -122 121 -161 150 -296 216 -43 21 -80 43 -83 48 -4 5 -19 9 -35 9 -36 0 -93 25 -141 62 -20 16 -47 28 -58 28 -27 0 -83 28 -94 46 -4 8 -15 14 -24 14 -20 0 -65 48 -52 56 5 3 15 1 22 -4 16 -13 77 -21 77 -10 0 4 -10 8 -22 8 -12 0 -30 8 -40 17 -10 9 -27 17 -37 18 -11 1 -25 6 -33 12 -19 16 -122 43 -200 53 -38 5 -73 12 -79 16 -7 4 -96 10 -198 14 -102 4 -193 9 -201 12 -8 3 -40 0 -70 -6z m2594 -2885 c4 -5 3 -16 0 -25 -5 -12 -10 -14 -20 -6 -7 7 -10 18 -7 26 6 16 19 18 27 5z m-4556 -13 c-3 -7 -15 -15 -28 -16 -21 -3 -22 -2 -11 12 16 19 44 21 39 4z m58 -71 c4 -12 -5 -29 -25 -49 -37 -38 -27 -57 17 -34 29 15 32 15 42 -3 16 -31 12 -47 -25 -91 -30 -36 -35 -49 -35 -96 0 -43 -4 -55 -20 -64 -26 -14 -40 -5 -40 24 0 12 -7 31 -15 42 -8 10 -15 31 -15 47 0 23 4 27 26 27 24 0 26 3 20 28 -3 15 -9 60 -13 101 -6 69 -5 75 17 91 27 20 56 10 66 -23z m-116 -164 c0 -13 -4 -23 -9 -23 -12 0 -21 38 -14 57 8 20 23 -3 23 -34z m450 -615 c0 -5 -7 -8 -15 -8 -8 0 -15 7 -15 15 0 8 -7 15 -15 15 -15 0 -20 12 -9 23 7 7 54 -33 54 -45z m112 22 c13 -17 37 -46 55 -65 30 -31 52 -80 41 -91 -8 -7 -88 40 -88 53 0 7 -13 22 -30 35 -16 12 -30 27 -30 34 0 7 -6 14 -12 17 -9 3 -8 10 6 26 25 28 30 27 58 -9z m3278 -401 c0 -7 -11 -22 -25 -35 -28 -26 -31 -21 -12 19 12 27 37 37 37 16z m-2705 -196 c17 -8 46 -23 65 -33 34 -19 35 -19 8 -20 -15 0 -30 5 -33 10 -3 6 -14 10 -24 10 -10 0 -26 9 -36 20 -12 13 -31 20 -57 20 -21 0 -38 4 -38 9 0 12 78 1 115 -16z m-199 -92 c-5 -16 51 -61 77 -61 7 0 21 -7 31 -15 11 -8 30 -15 42 -15 12 0 24 -7 28 -15 3 -8 16 -15 30 -15 13 0 26 -7 30 -15 3 -10 19 -15 43 -15 21 0 48 -3 60 -6 19 -5 20 -9 10 -28 -7 -11 -13 -23 -14 -25 -1 -1 -16 4 -34 13 -18 9 -37 16 -43 16 -5 0 -37 13 -71 30 -33 16 -82 39 -108 52 -79 38 -97 49 -97 59 0 5 -6 9 -14 9 -24 0 -28 18 -9 38 21 22 46 17 39 -7z m408 8 c-7 -12 -41 -12 -49 0 -6 11 23 20 42 13 7 -2 10 -8 7 -13z m64 -27 c3 -9 -3 -13 -19 -10 -12 1 -24 9 -27 16 -3 9 3 13 19 10 12 -1 24 -9 27 -16z m-189 -21 c9 -6 10 -10 2 -16 -16 -9 -44 2 -36 15 8 12 16 12 34 1z m195 -147 c24 -9 19 -24 -8 -24 -26 0 -40 12 -29 24 8 8 17 8 37 0z m114 -41 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m172 -33 c0 -13 -20 -13 -40 0 -12 8 -9 10 13 10 15 0 27 -4 27 -10z"/> <path d="M1871 4931 c-22 -14 6 -24 46 -16 27 5 33 9 22 16 -18 11 -50 11 -68 0z"/> <path d="M3232 4928 c3 -7 13 -15 22 -16 12 -3 17 1 14 10 -3 7 -13 15 -22 16 -12 3 -17 -1 -14 -10z"/> <path d="M4125 4780 c-3 -6 1 -13 10 -16 19 -8 30 0 20 15 -8 14 -22 14 -30 1z"/> <path d="M4306 4301 c-3 -5 1 -11 9 -15 9 -3 15 0 15 9 0 16 -16 20 -24 6z"/> <path d="M4380 4241 c0 -5 12 -17 27 -27 44 -28 107 -96 149 -160 21 -32 42 -60 46 -62 5 -2 8 -12 8 -22 0 -11 6 -23 14 -27 8 -4 15 -17 18 -28 2 -11 8 -19 13 -18 16 3 17 20 2 34 -7 8 -17 27 -21 42 -3 15 -11 27 -16 27 -6 0 -10 7 -10 16 0 19 -45 100 -76 137 -42 50 -105 97 -130 97 -13 0 -24 -4 -24 -9z"/> <path d="M4675 3530 c-4 -6 -3 -16 3 -22 6 -6 12 -6 17 2 4 6 3 16 -3 22 -6 6 -12 6 -17 -2z"/> <path d="M4940 3451 c0 -26 16 -35 24 -15 10 25 7 34 -9 34 -8 0 -15 -9 -15 -19z"/> <path d="M4702 3431 c2 -7 7 -12 11 -12 12 1 9 15 -3 20 -7 2 -11 -2 -8 -8z"/> <path d="M4946 3379 c-3 -19 -1 -41 8 -58 7 -14 22 -61 31 -103 23 -97 29 -108 50 -87 15 15 15 23 0 100 -8 45 -23 94 -33 107 -9 14 -24 35 -33 49 l-16 24 -7 -32z"/> <path d="M147 3153 c-13 -12 -7 -43 8 -43 9 0 15 9 15 25 0 24 -10 32 -23 18z"/> <path d="M5030 3091 c0 -11 5 -23 10 -26 6 -4 10 5 10 19 0 14 -4 26 -10 26 -5 0 -10 -9 -10 -19z"/> <path d="M85 2948 c-3 -7 -6 -29 -7 -48 -2 -25 1 -35 12 -35 16 0 36 56 27 79 -8 19 -26 21 -32 4z"/> <path d="M194 2915 c-21 -32 -15 -59 14 -63 23 -3 62 22 62 40 0 11 -38 48 -50 48 -5 0 -17 -11 -26 -25z"/> <path d="M74 2799 c-8 -14 18 -31 30 -19 9 9 0 30 -14 30 -5 0 -12 -5 -16 -11z"/> <path d="M227 2663 c-14 -13 -6 -33 13 -33 13 0 20 7 20 20 0 19 -20 27 -33 13z"/> <path d="M541 1756 c-1 -38 2 -57 9 -50 5 5 6 29 1 59 l-9 50 -1 -59z"/> <path d="M671 1698 c-17 -6 -21 -12 -14 -19 13 -13 65 -16 69 -4 7 18 -29 33 -55 23z"/> <path d="M320 1536 c0 -8 7 -21 15 -30 8 -8 15 -19 15 -24 0 -16 48 -54 55 -43 7 12 -31 71 -46 71 -5 0 -9 9 -9 20 0 11 -7 20 -15 20 -8 0 -15 -6 -15 -14z"/> <path d="M444 1497 c-7 -20 3 -37 22 -37 18 0 18 24 -1 40 -12 10 -16 9 -21 -3z"/> <path d="M592 1438 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M622 1388 c6 -18 28 -21 28 -4 0 9 -7 16 -16 16 -9 0 -14 -5 -12 -12z"/> <path d="M110 1363 c0 -13 47 -53 53 -46 4 3 -4 16 -16 29 -22 24 -37 30 -37 17z"/> <path d="M270 1230 c0 -5 5 -12 10 -15 6 -3 10 -13 10 -21 0 -9 19 -41 43 -72 23 -31 50 -73 61 -92 26 -48 86 -110 107 -110 25 0 52 40 38 57 -6 7 -8 20 -5 29 6 16 8 16 24 1 61 -58 82 -75 98 -81 11 -4 -12 24 -50 63 -38 38 -72 69 -75 69 -11 -2 -59 21 -65 30 -3 5 -21 13 -39 16 -25 5 -42 19 -71 59 -35 48 -86 88 -86 67z"/> </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;
}
.about-one__thumb__item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Keep the complete HosmedAI mark visible instead of clipping it to the theme mask. */
.about-one__thumb__item__icon {
  top: -35px;
  right: -20px;
  overflow: hidden;
  border-radius: 50%;
  -webkit-mask: none;
  mask: none;
}

.about-one__thumb__item__icon a {
  display: block;
  width: 100%;
  height: 100%;
}

.about-two {
  padding-top: 100px;
  position: relative;
}
.about-two__content .sec-title {
  padding-bottom: 12px;
}
.about-two__text {
  margin-bottom: 22px;
}
.about-two__feature {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 30px;
  margin-right: -60px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .about-two__feature {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-two__feature__list {
  margin-bottom: 40px;
}
.about-two__feature__list li + li {
  margin-top: 20px;
}
.about-two__feature__list__item {
  display: flex;
  align-items: start;
  gap: 20px;
}
.about-two__feature__list__item__icon {
  max-width: 60px;
  width: 100%;
  height: 60px;
  background-color: var(--heartox-base, #102A43);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--heartox-white, #fff);
  font-size: 32px;
  transition: all 0.4s ease-in-out;
}
.about-two__feature__list__item:hover .about-two__feature__list__item__icon {
  background-color: var(--heartox-secondary, #E9AD45);
}
.about-two__feature__list__item:hover .about-two__feature__list__item__icon i {
  animation: scaleTwo 1s linear;
}
.about-two__feature__list__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 150%;
  color: var(--heartox-base, #102A43);
  margin-bottom: 2px;
}
.about-two__feature__list__text {
  margin: 0;
}
.about-two__feature__btn .heartox-btn {
  padding: 13px 38px;
}
.about-two__feature__left {
  flex: 50%;
  width: 50%;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .about-two__feature__left {
    flex: 100%;
    width: 100%;
  }
}
.about-two__content__right {
  flex: 50%;
  width: 50%;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .about-two__content__right {
    flex: 100%;
    width: 100%;
  }
}
.about-two__content__list {
  margin-bottom: 0;
  border-radius: 10px;
  background-color: var(--heartox-base, #102A43);
}
.about-two__content__list li + li {
  border-top: 1px solid var(--heartox-primary, #1B3F63);
}
.about-two__content__list li {
  padding: 30px 35px;
}
.about-two__content__list .star {
  color: var(--heartox-secondary, #E9AD45);
  font-size: 22px;
  letter-spacing: 1px;
  margin-top: -2px;
  margin-bottom: -10px;
}
.about-two__content__list .about-two__auth {
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-two__content__list .about-two__auth .about-two__auth__left {
  display: flex;
  align-items: center;
}
.about-two__content__list .about-two__auth .about-two__auth__left img {
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  border: 2px solid var(--heartox-base, #102A43);
}
.about-two__content__list .about-two__auth .about-two__auth__left img:not(:first-child) {
  margin-left: -10px;
}
.about-two__content__list .about-two__auth .about-two__auth__left a {
  margin-left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--heartox-white, #fff);
  border: 2px solid var(--heartox-base, #102A43);
}
.about-two__content__list .about-two__auth .about-two__auth__right {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: capitalize;
  margin: 0;
  color: var(--heartox-white, #fff);
}
.about-two__content__list .funfact {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: -7px;
  margin-bottom: -10px;
}
.about-two__content__list .funfact .funfact__item {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 68px;
  color: var(--heartox-secondary, #E9AD45);
  display: flex;
  align-items: center;
}
.about-two__content__list .funfact .funfact__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 33px;
  color: var(--heartox-white, #fff);
  margin: 0;
}
.about-two__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 992px) {
  .about-two__thumb {
    margin-left: 65px;
  }
}
.about-two__thumb__item {
  position: relative;
  z-index: 1;
}
.about-two__thumb__item img {
  border-radius: 10px 50% 50% 10px;
  object-fit: cover;
  width: 100%;
}
.about-two__thumb__item::after {
  content: "";
  left: 1px;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  top: -18px;
  position: absolute;
  background-color: transparent;
  border: 1px solid var(--heartox-secondary, #E9AD45);
  border-radius: 10px 50% 50% 10px;
  animation: movebounceTwo 3s ease-in-out infinite;
}
.about-two__thumb__icon {
  width: 167px;
  height: 167px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--heartox-white, #fff);
  position: absolute;
  top: 55px;
  left: -83px;
  z-index: 1;
  animation: scaleOne 3s ease-in-out infinite;
}

.about-three {
  position: relative;
}
.about-three__content .sec-title {
  padding-bottom: 10px;
}
.about-three__text {
  margin-bottom: 18px;
}
.about-three__thumb {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .about-three__thumb {
    margin-right: 20px;
  }
}
.about-three__thumb__item {
  position: relative;
  z-index: 1;
}
.about-three__thumb__item img {
  object-fit: cover;
  width: 100%;
}
.about-three__thumb__item::after {
  content: "";
  height: 100%;
  left: 100px;
  top: 0;
  background-color: var(--heartox-base, #102A43);
  position: absolute;
  right: 0;
  border-radius: 10px;
  z-index: -1;
}
.about-three__thumb__item-two {
  position: absolute;
  z-index: 1;
  margin-top: -210px;
  left: -54px;
}
@media (max-width: 991px) {
  .about-three__thumb__item-two {
    position: relative;
    left: 0;
  }
}
.about-three__thumb__icon {
  position: absolute;
  bottom: 0;
  right: -50px;
  width: 128px;
  height: 128px;
  background-color: var(--heartox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleOne 3s ease-in-out infinite;
  -webkit-mask: url('data:image/svg+xml;utf8, <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.000000 127.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,127.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M740 1254 c88 -19 129 -36 209 -89 74 -49 86 -61 121 -120 16 -26 18 -35 8 -27 -9 7 -18 9 -20 5 -3 -4 -3 -2 -1 5 4 17 -27 63 -37 57 -8 -5 -61 34 -85 61 -5 6 -62 31 -125 55 -100 38 -125 44 -190 43 -110 -1 -173 -12 -166 -30 3 -8 1 -14 -3 -14 -5 0 -18 -3 -28 -6 -16 -5 -16 -4 1 10 27 22 4 21 -55 -2 -55 -21 -96 -47 -87 -57 7 -7 89 32 99 47 4 7 9 7 12 1 4 -6 -17 -21 -45 -34 -29 -13 -69 -37 -91 -52 -21 -16 -41 -26 -43 -24 -3 3 11 15 31 27 19 12 33 26 29 31 -3 5 -19 -4 -35 -21 -16 -16 -28 -31 -27 -33 7 -9 -25 -36 -36 -30 -6 3 -8 3 -4 -2 9 -9 -11 -37 -21 -31 -4 3 -7 -4 -8 -14 -1 -11 -16 -40 -33 -65 -38 -55 -68 -122 -86 -190 -18 -65 -17 -103 1 -138 8 -15 10 -25 6 -23 -11 7 27 -181 46 -232 4 -10 2 -13 -5 -8 -7 4 -12 5 -12 3 0 -9 60 -79 60 -71 1 5 8 -4 16 -19 8 -15 19 -25 24 -22 9 6 36 -34 32 -48 -1 -5 2 -6 7 -3 5 4 19 -7 31 -24 30 -42 205 -129 223 -110 10 10 9 12 -6 7 -12 -5 -16 -3 -11 5 5 8 2 9 -10 5 -9 -4 -14 -3 -11 2 3 5 -3 12 -14 16 -11 3 -25 12 -31 20 -7 8 7 4 32 -10 94 -53 167 -72 273 -74 55 -1 125 3 155 9 71 13 172 60 166 77 -3 7 5 18 17 23 21 11 21 11 3 -4 -11 -9 -16 -16 -10 -16 5 0 32 20 59 44 28 24 54 43 58 44 5 0 12 4 15 8 4 4 1 4 -5 0 -7 -4 -13 -3 -13 1 0 14 85 94 93 88 4 -3 5 -2 2 2 -3 3 0 12 6 20 11 12 18 42 22 85 1 9 5 14 10 11 5 -3 6 4 2 17 -5 15 -4 20 4 16 7 -4 9 -1 5 8 -3 8 1 30 10 47 17 35 21 191 6 239 -5 15 -6 -1 -3 -40 5 -69 -20 -194 -57 -278 -11 -23 -17 -50 -14 -60 4 -12 3 -14 -4 -4 -7 10 -13 7 -26 -13 -9 -14 -14 -30 -11 -36 4 -5 3 -8 -2 -7 -11 4 -103 -84 -98 -92 3 -4 -4 -15 -14 -24 -25 -23 -131 -76 -150 -75 -9 0 2 8 24 17 58 24 138 73 131 79 -3 4 -15 -2 -26 -12 -11 -10 -23 -16 -25 -13 -3 3 21 30 55 60 33 30 60 59 60 63 0 4 -9 0 -20 -10 -18 -17 -20 -17 -14 -2 3 9 10 17 14 17 4 0 14 15 21 33 7 17 15 37 17 42 3 6 -3 3 -14 -5 -17 -14 -18 -13 -6 1 21 28 73 191 77 244 l4 50 -9 -45 c-5 -25 -14 -54 -19 -65 -6 -11 -20 -44 -32 -74 -13 -30 -25 -49 -27 -42 -3 8 -8 6 -18 -6 -8 -10 -2 8 12 40 38 86 58 215 45 292 -13 74 -13 88 0 55 6 -14 13 -52 16 -85 8 -86 16 -84 10 2 -3 40 -15 102 -27 138 -12 37 -20 69 -16 72 3 3 1 15 -5 27 -10 20 -9 20 5 2 9 -10 13 -23 10 -28 -3 -4 -2 -18 1 -29 6 -17 9 -19 16 -8 7 10 8 6 4 -11 -3 -14 1 -41 9 -60 8 -19 16 -28 16 -20 1 28 21 -19 30 -68 l8 -47 1 41 c2 75 -86 303 -111 288 -6 -4 -8 -3 -5 4 7 11 -54 90 -82 107 -9 5 -25 10 -37 10 -11 1 -45 18 -75 38 -55 36 -136 58 -208 56 -29 0 -23 -3 29 -15z m45 -60 c93 -36 109 -52 20 -21 -91 33 -129 40 -192 38 -30 -1 -55 3 -59 10 -14 23 154 3 231 -27z m-272 19 c-7 -2 -19 -2 -25 0 -7 3 -2 5 12 5 14 0 19 -2 13 -5z m57 -22 c0 -4 -24 -11 -52 -14 -29 -4 -64 -9 -78 -12 l-25 -6 25 12 c14 6 48 15 75 19 28 4 51 8 53 9 1 0 2 -3 2 -8z m129 -7 c8 -7 -54 -2 -79 6 -17 6 -9 7 25 3 28 -3 52 -7 54 -9z m306 -24 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-598 -7 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m480 -18 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m158 5 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-510 -10 c-22 -5 -71 -20 -109 -34 -73 -28 -93 -32 -61 -14 38 22 150 58 180 57 26 -1 25 -2 -10 -9z m140 -1 c5 -7 -8 -8 -41 -3 -64 9 -68 14 -11 14 25 0 49 -5 52 -11z m-335 -4 c0 -2 -10 -9 -22 -15 -22 -11 -22 -10 -4 4 21 17 26 19 26 11z m751 -57 c-11 -10 -12 -10 -7 0 4 6 2 12 -3 12 -6 0 -11 7 -11 16 0 9 -5 12 -12 8 -7 -5 -8 -3 -3 5 6 10 13 8 28 -8 18 -17 19 -23 8 -33z m-561 33 c-8 -5 -32 -12 -53 -15 -21 -4 -40 -13 -43 -21 -3 -8 -12 -11 -19 -9 -7 3 -24 0 -37 -6 -21 -11 -22 -11 -8 4 18 19 115 54 150 55 19 0 21 -2 10 -8z m-240 -5 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-102 -96 c-29 -33 -53 -60 -55 -60 -17 0 86 117 105 120 2 0 -21 -27 -50 -60z m152 20 c-6 -11 -15 -20 -20 -20 -4 0 -23 -16 -41 -35 -37 -39 -59 -47 -35 -13 15 20 93 88 103 88 2 0 -1 -9 -7 -20z m775 10 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-904 -47 c-32 -43 -74 -90 -66 -73 11 21 75 100 81 100 3 0 -4 -12 -15 -27z m887 -28 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m-25 -5 c3 -11 1 -18 -4 -14 -5 3 -9 12 -9 20 0 20 7 17 13 -6z m-957 -49 c-9 -16 -12 -31 -9 -35 4 -3 1 -6 -5 -6 -6 0 -9 -7 -6 -15 4 -8 1 -15 -6 -15 -6 0 -8 -6 -4 -12 5 -10 4 -10 -5 -2 -8 8 -6 23 11 62 13 28 26 52 31 52 4 0 1 -13 -7 -29z m109 9 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m888 -50 c20 -55 29 -172 18 -220 -7 -28 -9 -17 -10 55 -1 57 -8 116 -21 159 -21 75 -13 79 13 6z m-903 36 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m977 -23 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-1126 -94 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m56 -6 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-10 -35 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m-60 -10 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m-8 -45 c0 -25 -1 -26 -9 -8 -12 27 -12 35 0 35 6 0 10 -12 9 -27z m49 -48 l-1 -40 -7 45 c-6 39 -7 33 -9 -40 -2 -70 -4 -80 -12 -55 -10 29 -4 140 8 159 10 15 22 -25 21 -69z m10 -150 c0 -29 0 -29 -8 -5 -4 14 -8 45 -8 70 l0 45 9 -40 c4 -22 8 -53 7 -70z m34 -9 c2 -19 0 -32 -4 -30 -8 5 -12 64 -4 64 2 0 6 -15 8 -34z m-55 -8 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m10 -35 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m15 -25 c-8 -8 -9 -4 -5 13 4 13 8 18 11 10 2 -7 -1 -18 -6 -23z m978 18 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-960 -30 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m77 -85 c9 -20 18 -39 20 -43 2 -5 2 -8 -1 -8 -7 0 -51 74 -48 83 1 4 -2 7 -8 7 -5 0 -10 5 -10 11 0 20 29 -11 47 -50z m-12 -37 c9 -15 12 -23 6 -20 -11 7 -35 46 -28 46 3 0 12 -12 22 -26z m30 -44 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m36 -7 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m759 13 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-50 -31 c0 -6 -56 -35 -67 -35 -4 1 8 9 27 20 39 22 40 22 40 15z m-610 -72 c0 -3 -7 0 -15 7 -8 7 -15 10 -15 6 0 -3 -9 3 -20 14 -31 31 -23 34 15 4 19 -14 35 -29 35 -31z m259 21 c2 -2 -5 -4 -16 -4 -21 0 -93 27 -93 35 0 4 102 -24 109 -31z m268 9 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-268 -69 c10 -9 -35 -3 -49 6 -11 8 -7 9 15 4 17 -4 32 -8 34 -10z"/> <path d="M114 998 c-4 -7 -3 -8 4 -4 12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/> <path d="M1191 794 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1201 704 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1221 699 c0 -15 -4 -41 -7 -58 -4 -18 -2 -31 4 -31 13 0 19 47 11 85 -6 29 -7 29 -8 4z"/> <path d="M1151 604 c-1 -12 -8 -40 -16 -63 -8 -23 -11 -39 -6 -37 12 8 34 92 28 108 -3 7 -6 4 -6 -8z"/> <path d="M1211 574 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1176 499 c-43 -98 -47 -131 -8 -64 22 37 44 106 37 113 -3 3 -15 -19 -29 -49z"/> <path d="M1110 480 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M31 454 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1142 360 c-24 -31 -28 -45 -12 -35 10 6 44 65 37 65 -2 0 -13 -13 -25 -30z"/> <path d="M1164 248 c-4 -7 -3 -8 4 -4 7 4 12 9 12 12 0 8 -9 4 -16 -8z"/> <path d="M608 13 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8, <svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 130.000000 127.000000"  preserveAspectRatio="xMidYMid meet">  <g transform="translate(0.000000,127.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M740 1254 c88 -19 129 -36 209 -89 74 -49 86 -61 121 -120 16 -26 18 -35 8 -27 -9 7 -18 9 -20 5 -3 -4 -3 -2 -1 5 4 17 -27 63 -37 57 -8 -5 -61 34 -85 61 -5 6 -62 31 -125 55 -100 38 -125 44 -190 43 -110 -1 -173 -12 -166 -30 3 -8 1 -14 -3 -14 -5 0 -18 -3 -28 -6 -16 -5 -16 -4 1 10 27 22 4 21 -55 -2 -55 -21 -96 -47 -87 -57 7 -7 89 32 99 47 4 7 9 7 12 1 4 -6 -17 -21 -45 -34 -29 -13 -69 -37 -91 -52 -21 -16 -41 -26 -43 -24 -3 3 11 15 31 27 19 12 33 26 29 31 -3 5 -19 -4 -35 -21 -16 -16 -28 -31 -27 -33 7 -9 -25 -36 -36 -30 -6 3 -8 3 -4 -2 9 -9 -11 -37 -21 -31 -4 3 -7 -4 -8 -14 -1 -11 -16 -40 -33 -65 -38 -55 -68 -122 -86 -190 -18 -65 -17 -103 1 -138 8 -15 10 -25 6 -23 -11 7 27 -181 46 -232 4 -10 2 -13 -5 -8 -7 4 -12 5 -12 3 0 -9 60 -79 60 -71 1 5 8 -4 16 -19 8 -15 19 -25 24 -22 9 6 36 -34 32 -48 -1 -5 2 -6 7 -3 5 4 19 -7 31 -24 30 -42 205 -129 223 -110 10 10 9 12 -6 7 -12 -5 -16 -3 -11 5 5 8 2 9 -10 5 -9 -4 -14 -3 -11 2 3 5 -3 12 -14 16 -11 3 -25 12 -31 20 -7 8 7 4 32 -10 94 -53 167 -72 273 -74 55 -1 125 3 155 9 71 13 172 60 166 77 -3 7 5 18 17 23 21 11 21 11 3 -4 -11 -9 -16 -16 -10 -16 5 0 32 20 59 44 28 24 54 43 58 44 5 0 12 4 15 8 4 4 1 4 -5 0 -7 -4 -13 -3 -13 1 0 14 85 94 93 88 4 -3 5 -2 2 2 -3 3 0 12 6 20 11 12 18 42 22 85 1 9 5 14 10 11 5 -3 6 4 2 17 -5 15 -4 20 4 16 7 -4 9 -1 5 8 -3 8 1 30 10 47 17 35 21 191 6 239 -5 15 -6 -1 -3 -40 5 -69 -20 -194 -57 -278 -11 -23 -17 -50 -14 -60 4 -12 3 -14 -4 -4 -7 10 -13 7 -26 -13 -9 -14 -14 -30 -11 -36 4 -5 3 -8 -2 -7 -11 4 -103 -84 -98 -92 3 -4 -4 -15 -14 -24 -25 -23 -131 -76 -150 -75 -9 0 2 8 24 17 58 24 138 73 131 79 -3 4 -15 -2 -26 -12 -11 -10 -23 -16 -25 -13 -3 3 21 30 55 60 33 30 60 59 60 63 0 4 -9 0 -20 -10 -18 -17 -20 -17 -14 -2 3 9 10 17 14 17 4 0 14 15 21 33 7 17 15 37 17 42 3 6 -3 3 -14 -5 -17 -14 -18 -13 -6 1 21 28 73 191 77 244 l4 50 -9 -45 c-5 -25 -14 -54 -19 -65 -6 -11 -20 -44 -32 -74 -13 -30 -25 -49 -27 -42 -3 8 -8 6 -18 -6 -8 -10 -2 8 12 40 38 86 58 215 45 292 -13 74 -13 88 0 55 6 -14 13 -52 16 -85 8 -86 16 -84 10 2 -3 40 -15 102 -27 138 -12 37 -20 69 -16 72 3 3 1 15 -5 27 -10 20 -9 20 5 2 9 -10 13 -23 10 -28 -3 -4 -2 -18 1 -29 6 -17 9 -19 16 -8 7 10 8 6 4 -11 -3 -14 1 -41 9 -60 8 -19 16 -28 16 -20 1 28 21 -19 30 -68 l8 -47 1 41 c2 75 -86 303 -111 288 -6 -4 -8 -3 -5 4 7 11 -54 90 -82 107 -9 5 -25 10 -37 10 -11 1 -45 18 -75 38 -55 36 -136 58 -208 56 -29 0 -23 -3 29 -15z m45 -60 c93 -36 109 -52 20 -21 -91 33 -129 40 -192 38 -30 -1 -55 3 -59 10 -14 23 154 3 231 -27z m-272 19 c-7 -2 -19 -2 -25 0 -7 3 -2 5 12 5 14 0 19 -2 13 -5z m57 -22 c0 -4 -24 -11 -52 -14 -29 -4 -64 -9 -78 -12 l-25 -6 25 12 c14 6 48 15 75 19 28 4 51 8 53 9 1 0 2 -3 2 -8z m129 -7 c8 -7 -54 -2 -79 6 -17 6 -9 7 25 3 28 -3 52 -7 54 -9z m306 -24 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-598 -7 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m480 -18 c0 -8 -4 -12 -9 -9 -5 3 -6 10 -3 15 9 13 12 11 12 -6z m158 5 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-510 -10 c-22 -5 -71 -20 -109 -34 -73 -28 -93 -32 -61 -14 38 22 150 58 180 57 26 -1 25 -2 -10 -9z m140 -1 c5 -7 -8 -8 -41 -3 -64 9 -68 14 -11 14 25 0 49 -5 52 -11z m-335 -4 c0 -2 -10 -9 -22 -15 -22 -11 -22 -10 -4 4 21 17 26 19 26 11z m751 -57 c-11 -10 -12 -10 -7 0 4 6 2 12 -3 12 -6 0 -11 7 -11 16 0 9 -5 12 -12 8 -7 -5 -8 -3 -3 5 6 10 13 8 28 -8 18 -17 19 -23 8 -33z m-561 33 c-8 -5 -32 -12 -53 -15 -21 -4 -40 -13 -43 -21 -3 -8 -12 -11 -19 -9 -7 3 -24 0 -37 -6 -21 -11 -22 -11 -8 4 18 19 115 54 150 55 19 0 21 -2 10 -8z m-240 -5 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-102 -96 c-29 -33 -53 -60 -55 -60 -17 0 86 117 105 120 2 0 -21 -27 -50 -60z m152 20 c-6 -11 -15 -20 -20 -20 -4 0 -23 -16 -41 -35 -37 -39 -59 -47 -35 -13 15 20 93 88 103 88 2 0 -1 -9 -7 -20z m775 10 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m-904 -47 c-32 -43 -74 -90 -66 -73 11 21 75 100 81 100 3 0 -4 -12 -15 -27z m887 -28 c-3 -3 -9 2 -12 12 -6 14 -5 15 5 6 7 -7 10 -15 7 -18z m-25 -5 c3 -11 1 -18 -4 -14 -5 3 -9 12 -9 20 0 20 7 17 13 -6z m-957 -49 c-9 -16 -12 -31 -9 -35 4 -3 1 -6 -5 -6 -6 0 -9 -7 -6 -15 4 -8 1 -15 -6 -15 -6 0 -8 -6 -4 -12 5 -10 4 -10 -5 -2 -8 8 -6 23 11 62 13 28 26 52 31 52 4 0 1 -13 -7 -29z m109 9 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m888 -50 c20 -55 29 -172 18 -220 -7 -28 -9 -17 -10 55 -1 57 -8 116 -21 159 -21 75 -13 79 13 6z m-903 36 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m977 -23 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-1126 -94 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m56 -6 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m-10 -35 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m-60 -10 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m-8 -45 c0 -25 -1 -26 -9 -8 -12 27 -12 35 0 35 6 0 10 -12 9 -27z m49 -48 l-1 -40 -7 45 c-6 39 -7 33 -9 -40 -2 -70 -4 -80 -12 -55 -10 29 -4 140 8 159 10 15 22 -25 21 -69z m10 -150 c0 -29 0 -29 -8 -5 -4 14 -8 45 -8 70 l0 45 9 -40 c4 -22 8 -53 7 -70z m34 -9 c2 -19 0 -32 -4 -30 -8 5 -12 64 -4 64 2 0 6 -15 8 -34z m-55 -8 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z m10 -35 c-4 -3 -7 0 -7 7 0 7 3 10 7 7 3 -4 3 -10 0 -14z m15 -25 c-8 -8 -9 -4 -5 13 4 13 8 18 11 10 2 -7 -1 -18 -6 -23z m978 18 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-960 -30 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m77 -85 c9 -20 18 -39 20 -43 2 -5 2 -8 -1 -8 -7 0 -51 74 -48 83 1 4 -2 7 -8 7 -5 0 -10 5 -10 11 0 20 29 -11 47 -50z m-12 -37 c9 -15 12 -23 6 -20 -11 7 -35 46 -28 46 3 0 12 -12 22 -26z m30 -44 c3 -5 4 -10 1 -10 -3 0 -8 5 -11 10 -3 6 -4 10 -1 10 3 0 8 -4 11 -10z m36 -7 c13 -16 12 -17 -3 -4 -10 7 -18 15 -18 17 0 8 8 3 21 -13z m759 13 c0 -3 -5 -8 -12 -12 -7 -4 -8 -3 -4 4 7 12 16 16 16 8z m-50 -31 c0 -6 -56 -35 -67 -35 -4 1 8 9 27 20 39 22 40 22 40 15z m-610 -72 c0 -3 -7 0 -15 7 -8 7 -15 10 -15 6 0 -3 -9 3 -20 14 -31 31 -23 34 15 4 19 -14 35 -29 35 -31z m259 21 c2 -2 -5 -4 -16 -4 -21 0 -93 27 -93 35 0 4 102 -24 109 -31z m268 9 c-4 -3 -10 -3 -14 0 -3 4 0 7 7 7 7 0 10 -3 7 -7z m-268 -69 c10 -9 -35 -3 -49 6 -11 8 -7 9 15 4 17 -4 32 -8 34 -10z"/> <path d="M114 998 c-4 -7 -3 -8 4 -4 12 7 16 16 8 16 -3 0 -8 -5 -12 -12z"/> <path d="M1191 794 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1201 704 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1221 699 c0 -15 -4 -41 -7 -58 -4 -18 -2 -31 4 -31 13 0 19 47 11 85 -6 29 -7 29 -8 4z"/> <path d="M1151 604 c-1 -12 -8 -40 -16 -63 -8 -23 -11 -39 -6 -37 12 8 34 92 28 108 -3 7 -6 4 -6 -8z"/> <path d="M1211 574 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1176 499 c-43 -98 -47 -131 -8 -64 22 37 44 106 37 113 -3 3 -15 -19 -29 -49z"/> <path d="M1110 480 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/> <path d="M31 454 c0 -11 3 -14 6 -6 3 7 2 16 -1 19 -3 4 -6 -2 -5 -13z"/> <path d="M1142 360 c-24 -31 -28 -45 -12 -35 10 6 44 65 37 65 -2 0 -13 -13 -25 -30z"/> <path d="M1164 248 c-4 -7 -3 -8 4 -4 7 4 12 9 12 12 0 8 -9 4 -16 -8z"/> <path d="M608 13 c6 -2 18 -2 25 0 6 3 1 5 -13 5 -14 0 -19 -2 -12 -5z"/> </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;
}
.about-three__thumb__icon img {
  width: 63px;
  object-fit: cover;
}
.about-three__feature {
  border-radius: 10px;
  background-color: var(--heartox-gray2, #F2F5F8);
  position: relative;
  z-index: 1;
  margin-bottom: 27px;
}
.about-three__feature::after {
  content: "";
  height: 10px;
  border-radius: 100px 100px 0 0;
  background-color: var(--heartox-base, #102A43);
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 40px;
}
.about-three__feature__top {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 40px 30px;
  border-bottom: 1px solid var(--heartox-white, #fff);
}
@media (max-width: 500px) {
  .about-three__feature__top {
    padding: 20px;
  }
}
.about-three__feature__top .star {
  font-size: 22px;
  color: var(--heartox-secondary, #E9AD45);
}
@media (max-width: 500px) {
  .about-three__feature__top .star {
    font-size: 16px;
  }
}
.about-three__feature__right {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media (max-width: 500px) {
  .about-three__feature__right {
    flex-direction: column;
    justify-content: start;
    align-items: start;
  }
}
.about-three__feature__right a {
  margin-left: -12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--heartox-base, #102A43);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--heartox-white, #fff);
  border: 2px solid var(--heartox-white, #fff);
}
.about-three__feature__image {
  display: flex;
  align-items: center;
}
.about-three__feature__image img {
  max-width: 40px;
  width: 100%;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  border: 2px solid var(--heartox-white, #fff);
}
.about-three__feature__image img:not(:first-child) {
  margin-left: -10px;
}
.about-three__feature__title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  text-transform: capitalize;
  margin: 0;
}
.about-three__feature__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  padding: 20px 70px 40px 40px;
  color: var(--heartox-base, #102A43);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  margin: 0;
}
@media (max-width: 500px) {
  .about-three__feature__text {
    text-align: center;
    padding: 20px 20px 40px;
    font-size: 20px;
  }
}
.about-three__list {
  margin-bottom: 25px;
}
.about-three__list__item {
  color: var(--heartox-base, #102A43);
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  display: flex;
  align-items: center;
}
.about-three__list__item i {
  font-size: 16px;
  margin-right: 6px;
}
.about-three__list__item + .about-three__list__item {
  margin-top: 13px;
}

.about-four {
  position: relative;
}
@media (min-width: 1200px) {
  .about-four__thumb {
    margin-right: 30px;
  }
}
.about-four__thumb__item img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.about-four__thumb__item__inner {
  max-width: 380px;
  width: 100%;
  height: auto;
}
@media (max-width: 1199px) and (min-width: 992px) {
  .about-four__thumb__item__inner {
    max-width: 280px;
  }
}
@media (max-width: 767px) {
  .about-four__thumb__item__inner {
    max-width: 100%;
  }
}
.about-four__thumb__item__inner img {
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
.about-four__thumb__item-two {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .about-four__thumb__item-two {
    display: block;
  }
}
.about-four__content .sec-title {
  padding-bottom: 10px;
}
.about-four__text {
  margin-bottom: 35px;
}
.about-four__help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .about-four__help {
    gap: 15px;
  }
}
.about-four__help::after {
  content: "";
  position: absolute;
  top: -5px;
  right: 0;
  left: 62px;
  bottom: -5px;
  border-radius: 10px 100px 100px 10px;
  background-color: var(--heartox-base, #102A43);
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
.about-four__help__thumb {
  max-width: 128px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.about-four__help__thumb img {
  border-radius: 50%;
  object-fit: cover;
  width: 100%;
  border: 8px solid var(--heartox-white, #fff);
  transition: all 0.4s ease-in-out;
}
.about-four__help__content {
  padding-right: 45px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .about-four__help__content {
    padding-right: 25px;
  }
}
.about-four__help__title {
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  line-height: 200%;
  text-transform: capitalize;
  color: var(--heartox-white, #fff);
  margin-bottom: -5px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 575px) {
  .about-four__help__title {
    font-size: 20px;
  }
}
.about-four__help__text {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: var(--heartox-text-gray, #9AAABC);
  transition: all 0.4s ease-in-out;
  margin: 0;
}
@media (max-width: 575px) {
  .about-four__help__text {
    font-size: 14px;
  }
}
.about-four__help:hover::after {
  background-color: var(--heartox-secondary, #E9AD45);
}
.about-four__help:hover .about-four__help__title {
  color: var(--heartox-base, #102A43);
}
.about-four__help:hover .about-four__help__text {
  color: var(--heartox-text, #66788A);
}
.about-four__help:hover .about-four__help__thumb img {
  border-color: var(--heartox-base, #102A43);
}
.about-four__list {
  margin-bottom: 40px;
}
.about-four__list__item {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: normal;
  color: var(--heartox-text, #66788A);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-four__list__item i {
  color: var(--heartox-base, #102A43);
}
.about-four__list__item + .about-four__list__item {
  margin-top: 9px;
}
.about-four__funfact {
  width: 140px;
  justify-content: start;
  display: flex;
  align-items: center;
  gap: 14px;
  background-color: var(--heartox-secondary, #E9AD45);
  border-radius: 10px;
  padding: 46px;
  right: 0;
  top: 0;
  position: absolute;
  transform: rotate(-180deg);
  writing-mode: vertical-rl;
}
@media (max-width: 767px) {
  .about-four__funfact {
    margin-top: 20px;
    transform: rotate(0deg);
    writing-mode: horizontal-tb;
    position: relative;
    width: 100%;
  }
}
.about-four__funfact__count {
  font-style: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  color: var(--heartox-white, #fff);
  margin: 0;
  display: flex;
  align-items: center;
}
.about-four__funfact__text {
  font-family: var(--heartox-heading-font, "Nunito", serif);
  font-style: normal;
  font-weight: 700;
  font-size: 19.2px;
  line-height: 26px;
  color: var(--heartox-white, #fff);
  margin: 0;
}

/*--------------------------------------------------------------
# Helping Hand
--------------------------------------------------------------*/
.helping-hand-four {
  position: relative;
  z-index: 1;
}
.helping-hand-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  top: 0;
  bottom: 145px;
  width: 811px;
  opacity: 0.3;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  z-index: -1;
}
@media (max-width: 1199px) {
  .helping-hand-four__bg {
    bottom: 0px;
    width: 100%;
  }
}
.helping-hand-four::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 145px;
  z-index: -1;
  width: 70%;
  transform: rotate(180deg);
  background: linear-gradient(90deg, #F2F5F8 55.23%, rgba(242, 245, 248, 0) 75.64%);
}
@media (max-width: 1199px) {
  .helping-hand-four::after {
    bottom: 0px;
    width: 100%;
  }
}
.helping-hand-four__content .sec-title {
  padding-bottom: 20px;
}
.helping-hand-four__content .helping-hand-four__text {
  margin-bottom: 25px;
  max-width: 600px;
  width: 100%;
  font-size: 18px;
}
.helping-hand-four__feature {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .helping-hand-four__feature {
    justify-content: start;
    align-items: start;
    flex-direction: column;
  }
}
.helping-hand-four__feature__item {
  padding: 40px;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--heartox-base, #102A43);
  position: relative;
  z-index: 1;
}
.helping-hand-four__feature__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--heartox-secondary, #E9AD45);
  z-index: -1;
  transform: rotateX(90deg) rotateY(-40deg);
  transition: all 0.4s ease-in-out;
}
.helping-hand-four__feature__item:hover .feature__item__icon i {
  animation: scaleTwo 500ms linear;
}
.helping-hand-four__feature__item:hover .feature__item__text {
  color: var(--heartox-gray2, #F2F5F8);
}
.helping-hand-four__feature__item:hover::after {
  transform: rotateX(0deg) rotateY(0deg);
}
.helping-hand-four__feature .feature__item__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--heartox-white-rgb, 255, 255, 255), 0.34);
  color: var(--heartox-white, #fff);
  font-size: 40px;
  margin-bottom: 22px;
}
.helping-hand-four__feature .feature__item__title {
  color: var(--heartox-white, #fff);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.helping-hand-four__feature .feature__item__text {
  margin-bottom: -6px;
  color: var(--heartox-text-gray, #9AAABC);
  transition: all 0.4s ease-in-out;
}
.helping-hand-four__thumb {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 20% 0 0 0;
  width: 44%;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .helping-hand-four__thumb {
    position: relative;
    width: 100%;
    border-radius: 10px;
  }
  .helping-hand-four__thumb img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--heartox-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--heartox-black2-rgb, 0, 0, 0), 0.08);
}
body.boxed-wrapper .main-header--four::after {
  width: 480px;
}
body.boxed-wrapper .sticky-header--cloned.main-header--four::after {
  width: 675px;
}
body.boxed-wrapper .charity-cause-donate {
  position: relative;
  z-index: 2;
}
body.boxed-wrapper .charity-cause {
  z-index: 1;
}
body.boxed-wrapper .donate-now {
  z-index: 0;
}
body.boxed-wrapper .funfact-one__single {
  z-index: 2;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
/* Restored icon fonts for the local mirror. The original downloader changed
   the font URLs into empty .html files, which rendered icons as squares. */
@font-face {
  font-family: "icomoon";
  src: url("../vendors/heartox-icons/fonts/icomoon.woff") format("woff");
  font-style: normal;
  font-weight: normal;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("../vendors/fontawesome/webfonts/fa-solid-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  src: url("../vendors/fontawesome/webfonts/fa-regular-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  src: url("../vendors/fontawesome/webfonts/fa-brands-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

/*# sourceMappingURL=heartox.css.map */

/* Hosmed AI header and logo contrast */
.main-header,
.main-header--one,
.main-header--two,
.main-header--three,
.main-header--four {
  background-color: var(--heartox-white, #fff);
}

.main-header .topbar-one__info__item,
.main-header .topbar-one__text {
  color: var(--heartox-base, #102A43);
}

.main-header .topbar-one__social a {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #102A43);
}

.main-header__logo {
  width: 190px;
  min-width: 190px;
  height: 100px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--heartox-white, #fff);
}

.main-header__logo img {
  width: 180px !important;
  height: 100px !important;
  object-fit: cover;
  object-position: center 43%;
}

.main-header__inner__right a {
  color: var(--heartox-base, #102A43);
}

.main-header__inner__right a:hover {
  color: var(--heartox-secondary, #E9AD45);
}

.footer-widget__logo,
.mobile-nav__content .logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--heartox-white, #fff);
  border-radius: 8px;
}

.footer-widget__logo img,
.mobile-nav__content .logo-box img {
  width: 175px !important;
  height: 96px !important;
  object-fit: cover;
  object-position: center 43%;
}

/* End-to-end hospital journey */
.hospital-journey {
  width: min(1440px, calc(100% - 40px));
  margin: 80px auto;
  color: #fff;
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
}

.hospital-journey h2,
.hospital-journey strong,
.hospital-journey .heartox-btn,
.hospital-journey__figures {
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
}

.hospital-journey__inner {
  min-height: 760px;
  display: grid;
  grid-template-columns: 360px 1fr 250px;
  grid-template-rows: 1fr auto;
  gap: 40px;
  padding: 75px 70px 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(9, 42, 71, 0.98) 0%, rgba(9, 42, 71, 0.94) 55%, rgba(9, 42, 71, 0.76) 100%),
    url("../images/backgrounds/slider-2.png") center / cover no-repeat;
  box-shadow: 0 14px 35px rgba(16, 42, 67, 0.18);
}

.hospital-journey__inner::after {
  content: "";
  position: absolute;
  left: -150px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: var(--heartox-secondary, #e9ad45);
  z-index: 0;
}

.hospital-journey__intro,
.hospital-journey__process,
.hospital-journey__action,
.hospital-journey__progress {
  position: relative;
  z-index: 1;
}

.hospital-journey__eyebrow {
  margin: 0 0 28px;
  font: 700 21px/1.2 var(--heartox-special-font, "Caveat", cursive);
  color: #fff;
}

.hospital-journey__eyebrow i {
  margin-right: 10px;
}

.hospital-journey__intro h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 2.6vw, 48px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.5px;
}

.hospital-journey__intro h2 span,
.hospital-journey__action i {
  color: var(--heartox-secondary, #e9ad45);
}

.hospital-journey__accent {
  display: block;
  width: 120px;
  height: 2px;
  margin-top: 32px;
  background: var(--heartox-secondary, #e9ad45);
}

.hospital-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 70px;
  padding-top: 25px;
}

.hospital-journey__step {
  position: relative;
  text-align: center;
}

.hospital-journey__step:not(:nth-child(4n))::after {
  content: "→";
  position: absolute;
  top: 28px;
  right: -8px;
  color: var(--heartox-secondary, #e9ad45);
  font-size: 28px;
}

.hospital-journey__step span {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid rgba(77, 151, 205, 0.55);
  border-radius: 50%;
  color: var(--heartox-secondary, #e9ad45);
  font-size: 32px;
  background: rgba(4, 35, 62, 0.55);
}

.hospital-journey__step strong {
  color: #fff;
  font-size: 15px;
  line-height: 1.3;
}

.hospital-journey__promise {
  margin: 45px 0 0;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.hospital-journey__action {
  align-self: center;
  padding-left: 35px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  text-align: center;
}

.hospital-journey__action .heartox-btn {
  white-space: nowrap;
}

.hospital-journey__action p {
  margin: 25px 0 0;
  color: #fff;
  font-size: 17px;
}

.hospital-journey__progress {
  grid-column: 1 / -1;
  padding: 45px 110px 35px;
  border: 1px solid rgba(112, 171, 213, 0.38);
  border-radius: 16px;
  background: rgba(12, 48, 78, 0.58);
}

.hospital-journey__bar {
  height: 8px;
  position: relative;
  margin: 10px 25px 35px;
  border-radius: 10px;
  background: #edf4fa;
}

.hospital-journey__bar span {
  display: block;
  width: 35.66%;
  height: 100%;
  border-radius: inherit;
  background: var(--heartox-secondary, #e9ad45);
}

.hospital-journey__bar b {
  position: absolute;
  left: 35.66%;
  top: -58px;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 30px;
  color: #fff;
  background: var(--heartox-secondary, #e9ad45);
}

.hospital-journey__bar b::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 16px;
  height: 16px;
  transform: translate(-50%, 11px);
  border: 4px solid var(--heartox-secondary, #e9ad45);
  border-radius: 50%;
  background: #fff;
}

.hospital-journey__figures {
  display: flex;
  justify-content: space-between;
}

.hospital-journey__figures > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hospital-journey__figures > div > i {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heartox-secondary, #e9ad45);
  font-size: 28px;
  background: rgba(2, 33, 61, 0.8);
}

.hospital-journey__figures p,
.hospital-journey__figures span {
  margin: 0;
  display: block;
  color: #fff;
}

.hospital-journey__figures strong {
  font-size: 27px;
}

.hospital-journey__figures span {
  margin-top: 4px;
  font-size: 16px;
  color: #d5e0e9;
}

@media (max-width: 1199px) {
  .hospital-journey__inner {
    grid-template-columns: 300px 1fr;
    padding: 55px 40px 30px;
  }

  .hospital-journey__action {
    grid-column: 1 / -1;
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .hospital-journey {
    width: calc(100% - 24px);
    margin: 45px auto;
  }

  .hospital-journey__inner {
    display: block;
    padding: 38px 22px 24px;
  }

  .hospital-journey__process,
  .hospital-journey__action,
  .hospital-journey__progress {
    margin-top: 45px;
  }

  .hospital-journey__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 10px;
  }

  .hospital-journey__step::after {
    display: none;
  }

  .hospital-journey__progress {
    padding: 50px 18px 25px;
  }

  .hospital-journey__figures > div {
    gap: 8px;
  }

  .hospital-journey__figures > div > i {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hospital-journey__figures strong {
    font-size: 20px;
  }

  .hospital-journey__figures span {
    font-size: 13px;
  }
}

/* Mobile-only homepage refinements */
@media (max-width: 767px) {
  /* Keep the menu control visible against the white mobile header. */
  .main-header--one .main-header__inner {
    position: relative;
  }

  .main-header--one .main-header__right {
    display: flex !important;
    position: absolute;
    top: 50%;
    right: 14px;
    z-index: 20;
    transform: translateY(-50%);
  }

  .main-header--one .mobile-nav__btn {
    width: 42px;
    height: 42px;
    display: flex !important;
    justify-content: center;
    margin: 0;
    padding: 11px 9px;
    border-radius: 8px;
    background: var(--heartox-secondary, #e9ad45);
    box-shadow: 0 5px 14px rgba(16, 42, 67, 0.16);
  }

  .main-header--one .mobile-nav__btn span {
    height: 2px;
    border-radius: 4px;
    background: var(--heartox-base, #102a43);
  }

  /* Four statistics in one compact row. */
  .funfact-one {
    margin: 24px 0 35px;
    padding: 0 8px;
  }

  .funfact-one .container {
    padding: 0;
  }

  .funfact-one .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    margin: 0;
  }

  .funfact-one .row > div {
    width: auto;
    padding: 0;
  }

  .funfact-one__single {
    min-height: 116px;
    padding: 6px 3px 10px;
  }

  .funfact-one__icon__inner {
    width: 48px;
    height: 45px;
    margin: -5px auto 10px;
    font-size: 22px;
  }

  .funfact-one__icon::before {
    width: 44px;
    height: 49px;
    top: -8px;
  }

  .funfact-one__count {
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
  }

  .funfact-one__text {
    padding: 0 2px;
    font-size: 11px;
    line-height: 1.15;
  }

  /* Show two expertise cards at a time and allow touch scrolling. */
  .charity-cause {
    padding-bottom: 45px;
  }

  .charity-cause__list {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 10px;
    margin: 0 -2px;
    padding: 2px 2px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .charity-cause__list::-webkit-scrollbar {
    display: none;
  }

  .charity-cause__list li {
    width: calc(50% - 5px);
    flex: 0 0 calc(50% - 5px);
    scroll-snap-align: start;
  }

  .charity-cause__list__item {
    height: 168px;
  }

  .charity-cause__list__item__icon {
    padding: 20px 15px 17px;
    font-size: 36px;
  }

  .charity-cause__list__item__title {
    padding: 12px 7px;
    font-size: 14px;
    line-height: 1.3;
  }

  /* Compact journey card matching the supplied mobile layout. */
  .hospital-journey {
    width: calc(100% - 24px);
    margin: 35px auto 45px;
  }

  .hospital-journey__inner {
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 34px 20px 22px;
    border-radius: 24px;
    background:
      linear-gradient(90deg, rgba(7, 42, 72, 0.97), rgba(7, 42, 72, 0.9)),
      url("../images/backgrounds/slider-2.png") center / cover no-repeat;
  }

  .hospital-journey__inner::after {
    left: -78px;
    bottom: auto;
    top: 610px;
    width: 115px;
    height: 220px;
  }

  .hospital-journey__intro {
    order: 1;
  }

  .hospital-journey__process {
    display: contents;
  }

  .hospital-journey__steps {
    order: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px 4px;
    margin-top: 30px;
    padding: 28px 8px 18px;
    border: 1px solid rgba(112, 171, 213, 0.46);
    border-bottom: 0;
    border-radius: 20px 20px 0 0;
  }

  .hospital-journey__action {
    order: 3;
    margin: 0;
    padding: 14px 20px 24px;
    border: 1px solid rgba(112, 171, 213, 0.46);
    border-top: 0;
    border-radius: 0 0 20px 20px;
  }

  .hospital-journey__promise {
    order: 4;
    margin: 26px 18px 0;
    font-size: 16px;
    line-height: 1.4;
  }

  .hospital-journey__progress {
    order: 5;
    margin-top: 28px;
    padding: 48px 15px 22px;
    border-radius: 18px;
  }

  .hospital-journey__eyebrow {
    margin-bottom: 22px;
    font-size: 18px;
    white-space: nowrap;
  }

  .hospital-journey__intro h2 {
    max-width: 330px;
    font-size: clamp(29px, 8.8vw, 36px);
    line-height: 1.28;
    letter-spacing: -0.7px;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hospital-journey__intro h2 br {
    display: block !important;
  }

  .hospital-journey__accent {
    width: 105px;
    margin-top: 25px;
  }

  .hospital-journey__step span {
    width: 54px;
    height: 54px;
    margin-bottom: 9px;
    font-size: 21px;
  }

  .hospital-journey__step strong {
    font-size: 10px;
    line-height: 1.2;
  }

  .hospital-journey__step:not(:nth-child(4n))::after {
    display: block;
    top: 17px;
    right: -8px;
    font-size: 17px;
  }

  .hospital-journey__action .heartox-btn {
    width: min(100%, 250px);
    padding: 13px 18px;
    font-size: 15px;
  }

  .hospital-journey__action p {
    margin-top: 14px;
    font-size: 16px;
  }

  .hospital-journey__bar {
    margin: 5px 8px 32px;
  }

  .hospital-journey__bar b {
    top: -50px;
    padding: 6px 12px;
    font-size: 13px;
  }

  .hospital-journey__figures {
    gap: 8px;
  }

  .hospital-journey__figures > div {
    width: 50%;
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }

  .hospital-journey__figures > div + div {
    border-left: 1px solid rgba(112, 171, 213, 0.4);
  }

  .hospital-journey__figures > div > i {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .hospital-journey__figures strong {
    font-size: 22px;
  }

  .hospital-journey__figures span {
    font-size: 13px;
  }

  /* Use a consistent, compact rhythm between mobile sections. */
  .section-space,
  .section-space-two {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }

  .section-space-top {
    padding-top: 36px !important;
  }

  .section-space-bottom {
    padding-bottom: 36px !important;
  }

  .gutter-y-30,
  .gutter-y-40,
  .gutter-y-60 {
    --bs-gutter-y: 16px;
  }

  .sec-title {
    padding-bottom: 24px;
  }

  .heartox-owl__carousel--basic-nav.owl-carousel .owl-dots,
  .heartox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
    margin-top: 20px;
  }

  .testimonials-one__right {
    padding: 28px 18px;
  }

  .cta-one__content {
    padding: 24px 16px;
  }

  .cta-one__top {
    gap: 10px;
    margin-bottom: 14px;
    padding: 12px 18px;
  }

  .cta-one-footer__inner {
    padding: 25px 22px;
  }

  .blog-one__top {
    margin-bottom: 20px;
  }

  /* Keep the Integrated Capabilities panel contained below its image. */
  .about-one__thumb {
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(233, 173, 69, 0.7);
    border-radius: 16px;
    background: var(--heartox-base, #102a43);
  }

  .about-one__thumb::after,
  .about-one__thumb__bottom__shape,
  .about-one__thumb__item__icon {
    display: none;
  }

  .about-one__thumb__item img {
    height: 275px;
    border-radius: 15px 15px 0 0;
    object-fit: cover;
    object-position: center;
  }

  .about-one__thumb__bottom {
    width: 100%;
    position: relative;
    left: auto;
    bottom: auto;
  }

  .about-one__thumb__funfact {
    min-height: 76px;
    position: static;
    justify-content: center;
    gap: 12px;
    padding: 10px 16px 12px;
    transform: none;
  }

  .about-one__thumb__funfact__count {
    margin: 0;
    font-size: 36px;
    line-height: 1;
    transform: none;
  }

  .about-one__thumb__funfact__text {
    max-width: 145px;
    font-size: 17px;
    line-height: 1.25;
    transform: none;
  }
}

@media (max-width: 1199px) {
  .main-header__logo {
    width: 170px;
    min-width: 170px;
    height: 82px;
  }

  .main-header__logo img {
    width: 165px !important;
    height: 88px !important;
  }
}

@media (max-width: 767px) {
  .main-header--one .main-header__inner {
    min-height: 68px;
    padding: 5px 12px;
  }

  .main-header--one .main-header__logo {
    width: 125px;
    min-width: 125px;
    height: 58px;
  }

  .main-header--one .main-header__logo img {
    width: 122px !important;
    height: 62px !important;
    object-position: center 43%;
  }

  .main-header--one .mobile-nav__btn {
    width: 38px;
    height: 38px;
    padding: 10px 8px;
  }
}

/* Final mobile header presentation: floating compact pill. */
@media (max-width: 767px) {
  .main-header--one,
  .main-header--one.sticky-header--cloned {
    padding: 8px;
    background: var(--heartox-base, #102a43);
  }

  .main-header--one .main-header__inner,
  .main-header--one.sticky-header--cloned .main-header__inner {
    width: 100%;
    min-height: 64px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(4, 28, 50, 0.18);
  }

  .main-header--one .main-header__logo {
    width: 150px;
    min-width: 150px;
    height: 52px;
    justify-content: flex-start;
  }

  .main-header--one .main-header__logo img {
    width: 45px !important;
    height: 45px !important;
    object-position: center 39%;
    transform: scale(1.65);
  }

  .main-header--one .mobile-nav__btn,
  .main-header--one.sticky-header--cloned .mobile-nav__btn {
    width: 40px;
    height: 40px;
    padding: 11px 9px;
    background: var(--heartox-base, #102a43);
  }

  .main-header--one .mobile-nav__btn span,
  .main-header--one.sticky-header--cloned .mobile-nav__btn span {
    background: #fff;
  }
}

/* HosmedAI hospital-focused About page */
.hosmed-about {
  display: flex;
  flex-direction: column;
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
  background: #fff;
}

.hosmed-about h1,
.hosmed-about h2,
.hosmed-about h3,
.hosmed-about strong,
.hosmed-about .heartox-btn {
  font-family: var(--heartox-heading-font, "Nunito", sans-serif);
}

.hosmed-about h1,
.hosmed-about h2 {
  font-weight: 700;
}

.hosmed-about h3,
.hosmed-about strong,
.hosmed-about .heartox-btn {
  font-weight: 700;
}

.hosmed-about p,
.hosmed-about blockquote,
.hosmed-about span {
  font-family: var(--heartox-font, "Plus Jakarta Sans", sans-serif);
}

.hosmed-about .hosmed-about__eyebrow {
  font-family: var(--heartox-special-font, "Caveat", cursive);
}

.hosmed-about__hero { order: 1; }
.hosmed-about__story { order: 2; }
.hosmed-about__philosophy { order: 3; }
.hosmed-about__integration { order: 4; }
.hosmed-about__cta { order: 5; }

.hosmed-about .section-space {
  padding-top: 46px;
  padding-bottom: 46px;
}

.hosmed-about__hero {
  min-height: 420px;
  padding: 52px 0 105px;
  margin-bottom: 82px;
  position: relative;
  overflow: visible;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 39, 67, 0.99) 0%, rgba(8, 45, 78, 0.93) 42%, rgba(8, 48, 84, 0.2) 76%, rgba(8, 48, 84, 0.08) 100%),
    url("../images/backgrounds/slider-2.png") center / cover no-repeat;
}

.hosmed-about__hero::after {
  content: "";
  width: 380px;
  height: 380px;
  position: absolute;
  right: -120px;
  bottom: -240px;
  border: 70px solid rgba(233, 173, 69, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

.hosmed-about__hero::before {
  content: "";
  width: 240px;
  height: 240px;
  position: absolute;
  left: 44%;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(233, 173, 69, 0.7);
}

.hosmed-about__hero .container {
  position: relative;
  z-index: 1;
}

.hosmed-about__eyebrow {
  margin: 0 0 16px;
  color: var(--heartox-secondary, #e9ad45);
  font-family: var(--heartox-special-font, "Caveat", cursive);
  font-size: 26px;
  font-weight: 700;
  text-transform: capitalize;
}

.hosmed-about__hero h1 {
  max-width: 570px;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(42px, 3.6vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.7px;
  font-weight: 700;
}

.hosmed-about__hero-accent {
  width: 58px;
  height: 2px;
  display: block;
  margin: 0 0 18px;
  background: var(--heartox-secondary, #e9ad45);
}

.hosmed-about__hero > .container > p:last-child {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.7;
}

.hosmed-about__stats-wrap {
  position: absolute !important;
  right: 0;
  bottom: -60px;
  left: 0;
  z-index: 3 !important;
}

.hosmed-about__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
  padding: 18px 24px;
  border: 1px solid rgba(16, 42, 67, 0.08);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(16, 42, 67, 0.14);
}

.hosmed-about__stat {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
}

.hosmed-about__stat + .hosmed-about__stat {
  border-left: 1px solid #dfe5ea;
}

.hosmed-about__stat i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--heartox-secondary, #e9ad45);
  background: var(--heartox-base, #102a43);
  font-size: 20px;
}

.hosmed-about__stat p,
.hosmed-about__stat span {
  display: block;
  margin: 0;
}

.hosmed-about__stat strong {
  display: block;
  color: var(--heartox-base, #102a43);
  font-size: 24px;
  line-height: 1.15;
  white-space: nowrap;
}

.hosmed-about__stat span {
  margin-top: 6px;
  color: var(--heartox-text, #66788a);
  font-size: 13px;
  line-height: 1.25;
}

.hosmed-about__image {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 22px 55px rgba(16, 42, 67, 0.16);
}

.hosmed-about__image img {
  width: 100%;
  height: 350px;
  min-height: 0;
  display: block;
  object-fit: cover;
}

.hosmed-about__copy {
  padding-left: 45px;
}

.hosmed-about__copy h2,
.hosmed-about__heading h2,
.hosmed-about__philosophy h2,
.hosmed-about__cta h2 {
  color: var(--heartox-base, #102a43);
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
}

.hosmed-about__copy blockquote {
  margin: 20px 0;
  padding: 17px 22px;
  border-left: 5px solid var(--heartox-secondary, #e9ad45);
  border-radius: 0 14px 14px 0;
  color: var(--heartox-primary, #1b3f63);
  background: #f2f5f8;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.45;
}

.hosmed-about__copy > p:not(.hosmed-about__eyebrow) {
  font-size: 17px;
  line-height: 1.8;
}

.hosmed-about__integration {
  background: #f2f5f8;
}

.hosmed-about__heading {
  max-width: 850px;
  margin: 0 auto 30px;
  text-align: center;
}

.hosmed-about__heading > p:last-child {
  font-size: 17px;
  line-height: 1.7;
}

.hosmed-about__capabilities {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.hosmed-about__capabilities article {
  padding: 20px 15px;
  border: 1px solid #e0e7ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.07);
  transition: transform 350ms ease, box-shadow 350ms ease, border-color 350ms ease;
}

.hosmed-about__capabilities article:hover {
  transform: translateY(-7px);
  border-color: rgba(233, 173, 69, 0.65);
  box-shadow: 0 18px 34px rgba(16, 42, 67, 0.13);
}

.hosmed-about__capabilities article:hover i {
  transform: rotateY(180deg);
  color: #fff;
  background: var(--heartox-secondary, #e9ad45);
}

.hosmed-about__capabilities i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 14px;
  color: var(--heartox-secondary, #e9ad45);
  background: var(--heartox-base, #102a43);
  font-size: 22px;
  transition: transform 500ms ease, color 350ms ease, background-color 350ms ease;
}

.hosmed-about__capabilities h3 {
  color: var(--heartox-base, #102a43);
  font-size: 17px;
  line-height: 1.3;
}

.hosmed-about__capabilities p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.hosmed-about__philosophy-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 45px;
  padding: 36px 42px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(120deg, #102a43, #1b3f63);
}

.hosmed-about__philosophy-card h2 {
  margin: 0;
  color: #fff;
}

.hosmed-about__philosophy-card > p {
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  line-height: 1.8;
}

.hosmed-about__cta {
  padding: 28px 0;
  background: #fff;
}

.hosmed-about__cta-inner {
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 180px;
  align-items: center;
  gap: 45px;
  position: relative;
  overflow: hidden;
  padding: 28px 38px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(100deg, #f4b63d, #e9ad45 65%, #f5c55c);
  box-shadow: 0 10px 24px rgba(16, 42, 67, 0.12);
}

.hosmed-about__cta .hosmed-about__eyebrow {
  color: var(--heartox-base, #102a43);
}

.hosmed-about__cta h2 {
  max-width: 560px;
  margin: 0;
  font-size: 28px;
  line-height: 1.2;
}

.hosmed-about__cta-inner > div > p {
  margin: 9px 0 0;
  color: var(--heartox-base, #102a43);
  font-size: 13px;
  font-weight: 600;
}

.hosmed-about__cta .heartox-btn {
  flex: 0 0 auto;
  padding: 12px 22px;
  border-radius: 7px;
  color: #fff;
  background: var(--heartox-base, #102a43);
  white-space: nowrap;
}

.hosmed-about__cta .heartox-btn::before,
.hosmed-about__cta .heartox-btn::after {
  display: none;
}

.hosmed-about__cta-visual {
  width: 190px;
  height: 190px;
  display: grid;
  place-items: center;
  position: absolute;
  right: -18px;
  top: -22px;
  color: rgba(92, 62, 22, 0.45);
  font-size: 125px;
  transform: rotate(-14deg);
}

.hosmed-about__cta .heartox-btn,
.hosmed-about__cta-inner > div {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .hosmed-about__hero {
    margin-bottom: 125px;
  }

  .hosmed-about__stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
  }

  .hosmed-about__stat:nth-child(3) {
    border-left: 0;
  }

  .hosmed-about__copy {
    padding-left: 0;
  }

  .hosmed-about__capabilities {
    grid-template-columns: repeat(3, 1fr);
  }

  .hosmed-about__philosophy-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hosmed-about__philosophy-card > p {
    padding: 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 0;
  }

  .hosmed-about__cta-inner {
    grid-template-columns: 1fr auto;
  }

  .hosmed-about__cta-visual {
    display: none;
  }
}

@media (max-width: 767px) {
  .hosmed-about .section-space {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  .hosmed-about__hero {
    min-height: 0;
    padding: 48px 8px 145px;
    margin-bottom: 135px;
    background:
      linear-gradient(90deg, rgba(8, 39, 67, 0.98), rgba(8, 48, 84, 0.68)),
      url("../images/backgrounds/slider-2.png") 62% center / cover no-repeat;
  }

  .hosmed-about__hero h1 {
    max-width: 350px;
    font-size: 36px;
  }

  .hosmed-about__hero > .container > p:last-child {
    max-width: 340px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hosmed-about__hero::before {
    width: 130px;
    height: 130px;
    left: 55%;
    bottom: 20px;
  }

  .hosmed-about__stats-wrap {
    bottom: -118px;
    padding: 0 18px;
  }

  .hosmed-about__stats {
    gap: 0;
    row-gap: 13px;
    padding: 15px 8px;
    border-radius: 20px;
  }

  .hosmed-about__stat {
    gap: 9px;
    padding: 0 10px;
  }

  .hosmed-about__stat i {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 17px;
  }

  .hosmed-about__stat strong {
    font-size: 19px;
  }

  .hosmed-about__stat span {
    margin-top: 3px;
    font-size: 10px;
  }

  .hosmed-about__eyebrow {
    font-size: 21px;
  }

  .hosmed-about__image img {
    height: 275px;
    min-height: 0;
  }

  .hosmed-about__copy h2,
  .hosmed-about__heading h2,
  .hosmed-about__philosophy h2,
  .hosmed-about__cta h2 {
    font-size: 31px;
  }

  .hosmed-about__copy blockquote {
    margin: 22px 0;
    padding: 18px;
    font-size: 19px;
  }

  .hosmed-about__heading {
    margin-bottom: 28px;
  }

  .hosmed-about__capabilities {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hosmed-about__capabilities article {
    padding: 20px 14px;
  }

  .hosmed-about__capabilities i {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    font-size: 22px;
  }

  .hosmed-about__capabilities h3 {
    font-size: 15px;
  }

  .hosmed-about__capabilities p {
    font-size: 12px;
  }

  .hosmed-about__philosophy-card {
    padding: 25px 18px;
  }

  .hosmed-about__philosophy-card > p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hosmed-about__cta {
    padding: 20px 0;
  }

  .hosmed-about__cta-inner {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 25px 22px;
    border-radius: 14px;
  }

  .hosmed-about__cta h2 {
    font-size: 24px;
  }

  .hosmed-about__cta .heartox-btn {
    width: fit-content;
  }
}
