/*--------------------------------------------------------------
>>> 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: #727272;
  --heartox-text-rgb: 114, 114, 114;
  --heartox-text-dark: #002d5b;
  --heartox-text-dark-rgb: 13, 33, 25;
  --heartox-text-gray: #0276dc;
  --heartox-text-gray-rgb: 128, 170, 152;
  --heartox-base: #002d5b;
  --heartox-base-rgb: 26, 61, 46;
  --heartox-primary: #0276dc;
  --heartox-primary-rgb: 4, 123, 102;
  --heartox-secondary: #E2AA01;
  --heartox-secondary-rgb: 226, 170, 1;
  --heartox-gray: #D2D2D2;
  --heartox-gray-rgb: 210, 210, 210;
  --heartox-gray2: #EFEFEF;
  --heartox-gray2-rgb: 239, 239, 239;
  --heartox-white: #FFFFFF;
  --heartox-white-rgb: 255, 255, 255;
  --heartox-black: #212226;
  --heartox-black-rgb: 33, 34, 38;
  --heartox-black2: #000;
  --heartox-black2-rgb: 0, 0, 0;
  --heartox-border-color: #D2D2D2;
  --heartox-border-color-rgb: 210, 210, 210;
  --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, #E2AA01);
  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, #002d5b);
  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, #212226);
}
.heartox-btn:hover::before {
  top: 100%;
}
.heartox-btn:hover::after {
  bottom: -50%;
}
.heartox-btn--primary::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.heartox-btn--primary::before {
  background-color: var(--heartox-primary, #0276dc);
}
.heartox-btn--primary:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--base::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.heartox-btn--base::before {
  background-color: var(--heartox-base, #002d5b);
}
.heartox-btn--base:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--secondary::after {
  background-color: var(--heartox-base, #002d5b);
}
.heartox-btn--secondary::before {
  background-color: var(--heartox-secondary, #E2AA01);
}
.heartox-btn--secondary:hover {
  color: var(--heartox-white, #fff);
}
.heartox-btn--border {
  border: 1px solid var(--heartox-base, #002d5b);
}
.heartox-btn--border::after {
  background-color: var(--heartox-base, #002d5b);
}
.heartox-btn--border::before {
  background-color: transparent;
}
.heartox-btn--border:hover {
  color: var(--heartox-base, #002d5b);
}

.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, #002d5b);
  margin-bottom: 10px;
}
.sec-title__title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 35px;
  line-height: 125%;
  color: var(--heartox-base, #002d5b);
}
@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, #727272);
  font-size: 16px;
  line-height: 1.875;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
}
@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, #727272);
}
@media (max-width: 575px) {
  p br {
    display: none;
  }
}

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

.background-base {
  background-color: var(--heartox-base, #002d5b);
}

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

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

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

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

.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;
  }
}
@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, #002d5b);
}

.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, #727272);
  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, #212226);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--heartox-base, #002d5b);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--heartox-black, #212226);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* 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, #002d5b);
  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, #002d5b);
  text-transform: capitalize;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border-radius: 50%;
  line-height: 235%;
  border: 1px solid var(--heartox-gray, #D2D2D2);
  transition: all 400ms ease;
}
.post-pagination a .post-pagination__icon {
  font-size: 20px;
  color: var(--heartox-base, #002d5b);
  transition: all 400ms ease;
}
.post-pagination a:hover {
  border-color: var(--heartox-base, #002d5b);
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #002d5b);
}
.post-pagination a:hover .post-pagination__icon {
  color: var(--heartox-white, #fff);
}
.post-pagination li.active a {
  background-color: var(--heartox-base, #002d5b);
  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, #002d5b);
  border-color: var(--heartox-base, #002d5b);
}
.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, #0276dc);
  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, #002d5b);
}
.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, #212226);
  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, #D2D2D2);
  background-image: none;
  font-family: var(--heartox-font, "Plus Jakarta Sans", serif);
  color: var(--heartox-text, #727272);
}
.ui-datepicker-calendar td a {
  border-color: var(--heartox-border-color, #e5e3e0);
  background-color: var(--heartox-gray, #D2D2D2);
  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, #D2D2D2);
  background-image: none;
  color: var(--heartox-text, #727272);
  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, #002d5b);
}
.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, #002d5b);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-black, #212226);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--heartox-base, #002d5b);
  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, 26, 61, 46), 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, #0276dc);
}
.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, #E2AA01);
  color: var(--heartox-white, #fff);
  font-size: 24px;
  margin-bottom: 20px;
  margin-top: -60px;
}
.volunteer-video .video__popup:hover {
  background-color: var(--heartox-primary, #0276dc);
}

.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, #002d5b);
  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, #727272);
}
.team-card__social {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 30px);
  top: -40px;
  border-radius: 40px;
  background-color: var(--heartox-secondary, #E2AA01);
  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, #727272);
  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, #002d5b);
  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, #727272);
  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, #002d5b);
  position: relative;
  padding: 10px 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease-in-out;
  border-left: 6px solid var(--heartox-secondary, #E2AA01);
  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, #0276dc);
  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, #002d5b);
  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, #002d5b);
}
.team-details__list > li a:hover {
  background-size: 100% 1px;
}
.team-details__list > li span {
  display: inline-block;
  color: var(--heartox-text, #727272);
}
.team-details__list > li:last-child {
  margin-bottom: 0;
}
.team-details__list > li i {
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  border-radius: 10px;
}
.team-details .team-skills__progress__inner {
  position: absolute;
  height: 10px;
  background-color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  line-height: 1;
  transition: all 500ms ease;
}
.team-details__social a:hover {
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-white, #fff);
}

.team-skills-one__title {
  margin-bottom: 10px;
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
}
@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, #002d5b);
  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, #002d5b);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.team-skills-one__skill__title {
  margin-bottom: 10px;
  color: var(--heartox-base, #002d5b);
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
}
.team-skills-one__skill__text {
  margin-bottom: 0;
  color: var(--heartox-text, #727272);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
}
.team-skills-one__skill:hover::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #727272);
}
.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, 33, 34, 38), 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, #E2AA01);
  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, #E2AA01);
}
.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, #E2AA01);
  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, #727272);
  display: flex;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.blog-card__meta li i {
  color: var(--heartox-base, #002d5b);
  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, #EFEFEF);
  color: var(--heartox-base, #002d5b);
  transition: all 0.4s ease-in-out;
}
.blog-card__meta a:hover {
  background-color: var(--heartox-base, #002d5b);
  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, #EFEFEF);
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
  background-color: var(--heartox-base, #002d5b);
}
.blog-card:hover .blog-card__content::after {
  transform: translateY(-50%) rotateX(0deg);
}
.blog-card:hover .blog-card__content__month {
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-white, #fff);
}
.blog-card:hover .blog-card__content__month__icon svg path {
  fill: var(--heartox-base, #002d5b);
}
.blog-card:hover .blog-card__meta li {
  color: var(--heartox-gray, #D2D2D2);
}
.blog-card:hover .blog-card__meta li i {
  color: var(--heartox-secondary, #E2AA01);
}
.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, #0276dc);
}
.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, #D2D2D2);
}
.blog-card:hover .blog-card__link {
  background-color: var(--heartox-secondary, #E2AA01);
  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, 33, 34, 38), 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, #E2AA01);
  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, #E2AA01);
}
.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: #6D7076;
  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, #002d5b);
  padding: 13px 39.5px;
}
.blog-card-list__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.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, #002d5b);
  color: var(--heartox-white, #fff);
}
.blog-card-list:hover .blog-card-list__month__icon svg path {
  fill: var(--heartox-base, #002d5b);
}

/** 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, #002d5b);
}
.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, #002d5b);
  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, #0276dc);
}
.blog-two__item-two .blog-card__link {
  background-color: var(--heartox-secondary, #E2AA01);
  color: var(--heartox-white, #fff);
}
.blog-two__item-two .blog-card__link:hover {
  background-color: var(--heartox-primary, #0276dc);
}

/** 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, #EFEFEF);
  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, #727272);
}
.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, #002d5b);
  background-color: var(--heartox-white, #fff);
}
.blog-three__card__bottom__link a:hover {
  background-color: var(--heartox-base, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
}
.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, #EFEFEF);
}
.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, #002d5b);
}
.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, #002d5b);
  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, #002d5b);
  background-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, 4, 123, 102), 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, #002d5b);
  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, #EFEFEF);
  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, #E2AA01);
  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, #80AA98);
}
.blog-four__item .blog-card__meta a:hover {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #80AA98);
}
.blog-four__item:hover .blog-card__meta li:last-child i {
  color: var(--heartox-secondary, #E2AA01);
}

/*--------------------------------------------------------------
# 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, #212226);
  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, #727272);
  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, #727272);
  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, #212226);
  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, #002d5b);
  padding: 12px 33px;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--heartox-base, #002d5b);
  -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, #002d5b);
  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, #002d5b);
  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, #002d5b);
}
.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, #80AA98);
  padding-top: 73px;
  margin-bottom: 73px;
}
@media (max-width: 1199px) {
  .main-footer__middle__inner {
    margin-top: 30px;
    padding-top: 40px;
    margin-bottom: 60px;
  }
}
@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, #727272);
}
.main-footer__middle__right .footer-widget__newsletter input::placeholder {
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: var(--heartox-text, #727272);
}
.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, #E2AA01);
  color: var(--heartox-white, #fff);
}
.main-footer__middle__right .footer-widget__newsletter button i {
  margin: 0;
}
.main-footer__bottom {
  background-color: var(--heartox-secondary, #E2AA01);
  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, 26, 61, 46), 0.16);
  transition: all 0.4s ease-in-out;
}
.main-footer__social a:hover {
  color: var(--heartox-secondary, #E2AA01);
  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(239, 239, 239, 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, #E2AA01);
  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: #719D8B;
}
.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, #E2AA01);
  font-size: 8px;
  transition: all 0.4s ease-in-out;
  visibility: hidden;
  opacity: 0;
}
.footer-widget__links li a:hover {
  color: var(--heartox-secondary, #E2AA01);
  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, #E2AA01);
}
.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, #80AA98);
  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, #E2AA01);
}
.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, #E2AA01);
  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, #EFEFEF);
  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, #727272);
}
.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, #727272);
}
.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, #002d5b);
  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, #E2AA01);
  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, #0276dc);
}
.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, #E2AA01);
}
.contact-one__info__item:hover .contact-one__info__icon {
  background-color: var(--heartox-secondary, #E2AA01);
  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, #E2AA01);
  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, #80AA98);
  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, #002d5b);
  padding: 9px 0;
}
.topbar-one--four::after {
  content: "";
  width: 50%;
  top: 0;
  left: 0;
  position: absolute;
  height: 100%;
  background-color: var(--heartox-gray2, #EFEFEF);
  border-radius: 0 100px 100px 0;
  z-index: -1;
}
.topbar-one--four .topbar-one__info__item {
  color: var(--heartox-text, #727272);
}
.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, #80AA98);
}
.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, #E2AA01);
}
.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, #E2AA01);
  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, #80AA98);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: relative;
  width: 100%;
  z-index: 999;
  background-color: var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  transition: all 0.4s ease-in-out;
}
.main-header__inner__right a:hover {
  color: var(--heartox-primary, #0276dc);
}
.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, #E2AA01);
  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, #EFEFEF);
  font-size: 20px;
  color: var(--heartox-base, #002d5b);
}
.main-header__info__item:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E2AA01);
}
@media (max-width: 1399px) {
  .main-header__info__item:hover {
    background-color: var(--heartox-secondary, #E2AA01);
  }
}
.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, #002d5b);
}
@media (max-width: 1399px) {
  .main-header__btn .heartox-btn {
    padding: 13px 25px;
  }
  .main-header__btn .heartox-btn::before {
    background-color: var(--heartox-secondary, #E2AA01);
  }
  .main-header__btn .heartox-btn::after {
    background-color: var(--heartox-primary, #0276dc);
  }
}
@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, #E2AA01);
  }
}
.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, #0276dc);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #002d5b);
  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, #80AA98);
}
.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, #E2AA01);
}
@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, #727272);
}
.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, #E2AA01);
}
.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, #E2AA01);
  color: var(--heartox-base, #002d5b);
}
.main-header--two .main-header__right {
  position: relative;
  padding: 33px 0 33px 50px;
  background-color: var(--heartox-base, #002d5b);
}
@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, #0276dc);
}
@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, #002d5b);
  z-index: -1;
}
.main-header--two .main-header__info__item:hover {
  background-color: var(--heartox-secondary, #E2AA01);
}
.main-header--two .heartox-btn::before {
  background-color: var(--heartox-secondary, #E2AA01);
}
.main-header--two .heartox-btn::after {
  background-color: var(--heartox-primary, #0276dc);
}
.main-header--three {
  background-color: var(--heartox-primary, #0276dc);
  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, 26, 61, 46), 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, #002d5b);
  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, #002d5b);
}
.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, #80AA98);
}
.main-header--three .main-header__inner__info__item i {
  color: var(--heartox-secondary, #E2AA01);
  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, #E2AA01);
}
.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, #E2AA01);
}
@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, #E2AA01);
  color: var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  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, #E2AA01);
  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, #727272);
}
.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, #E2AA01);
}
.main-header--four .main-header__info__item:hover {
  background-color: var(--heartox-primary, #0276dc);
}
.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, #0276dc);
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--heartox-base, #002d5b);
}
@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, #002d5b);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--heartox-black-rgb, 33, 34, 38), 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, #E2AA01);
}
.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, #E2AA01);
}
.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, #E2AA01);
}

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

.main-header--three.sticky-header--cloned {
  background-color: var(--heartox-primary, #0276dc);
  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, #0276dc);
}
.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, #002d5b);
  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, #EFEFEF);
  box-shadow: 0px 10px 60px 0px RGBA(var(--heartox-gray2-rgb, 239, 239, 239), 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: #7F7D86;
  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, #002d5b);
  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, #212226);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--heartox-base, #002d5b);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #002d5b);
}
.demo-one__btn.heartox-btn::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #EFEFEF);
  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, #EFEFEF);
  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, #E2AA01);
}
.funfact-one__single:hover .funfact-one__icon::before {
  background-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, #E2AA01);
  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, #E2AA01);
  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, #0276dc);
}
.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, #002d5b);
  text-align: center;
  text-transform: capitalize;
}

/**** Funfact Two ****/
.funfact-four {
  position: relative;
  background-color: var(--heartox-base, #002d5b);
  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, #0276dc);
  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, #E2AA01);
  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, #E2AA01);
  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, #002d5b 0%, rgba(26, 61, 46, 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, #E2AA01);
}
.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, #E2AA01);
  font-size: 8px;
  top: 0;
  right: -3px;
  transition: all 0.4s ease-in-out;
}
.donation-card__popup:hover .count {
  background-color: var(--heartox-primary, #0276dc);
}
.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, #E2AA01);
}
.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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  -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, #EFEFEF);
  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, #002d5b);
  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, #0276dc);
}
.donation-card .progress-box__text span {
  color: var(--heartox-text, #727272);
}
.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, #002d5b 0%, rgba(26, 61, 46, 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, #E2AA01);
}
.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, #E2AA01);
  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, #0276dc);
}
.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, #E2AA01);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #E2AA01);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  -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, #002d5b);
  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, #727272);
}
.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, #002d5b);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.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, #002d5b 9.05%, rgba(26, 61, 46, 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, #0276dc 9.05%, rgba(26, 61, 46, 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, #E2AA01);
}
.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, #E2AA01);
}
.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, #E2AA01);
  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, #0276dc);
}
.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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #E2AA01);
  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, #E2AA01);
  -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, #D2D2D2);
}
.donation-one__item__content {
  margin-top: -137px;
  padding: 0px 30px 30px;
}
.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: -67px;
  margin-bottom: 20px;
  transition: all 0.4s ease-in-out;
  color: var(--heartox-gray, #D2D2D2);
}
.donation-one__item__bottom__btn .heartox-btn {
  width: 100%;
  padding: 13px 38px;
  color: var(--heartox-base, #002d5b);
}
.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, #E2AA01);
}
.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, #0276dc);
}
.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, #002d5b);
  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, #EFEFEF);
}
.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, 26, 61, 46), 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, #002d5b);
  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, #E2AA01);
}
.donation-two .tab-buttons .heartox-btn.active-btn::after, .donation-two .tab-buttons .heartox-btn.active-btn::before {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, 26, 61, 46), 0.8);
}
.donate-now__inner {
  background-color: var(--heartox-secondary, #E2AA01);
  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, #0276dc);
}
.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, #002d5b);
  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, #002d5b);
}
.donate-now__left {
  position: relative;
  background-color: var(--heartox-primary, #0276dc);
}
@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, #002d5b);
  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, #E2AA01);
}
.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, #002d5b);
}
.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, #002d5b);
}
.donate-now__funfact__item:last-child .donate-now__funfact__item__count span {
  color: inherit;
}

/**** Donation Form ****/
.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, #002d5b);
  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, #002d5b);
  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, #0276dc);
  border-radius: 10px;
}
.help-donate__top__text .text {
  color: var(--heartox-text-gray, #80AA98);
  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, #002d5b);
  transition: all 500ms ease;
  border: 1px solid transparent;
}
.help-donate__custome-dots button:last-child {
  transform: rotate(-120deg);
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-secondary, #E2AA01);
  border: 1px solid var(--heartox-secondary, #E2AA01);
}
.help-donate__custome-dots button:last-child:hover {
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-base, #002d5b);
  border: 1px solid var(--heartox-white, #fff);
}
.help-donate__custome-dots button:hover {
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-secondary, #E2AA01);
  border: 1px solid var(--heartox-secondary, #E2AA01);
}

/**** 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, #EFEFEF);
  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, #E2AA01);
  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, #0276dc);
}
.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, #E2AA01);
  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, #E2AA01);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  -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, #002d5b);
  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, #002d5b);
  border-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, #002d5b);
}
@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, #E2AA01);
}
@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, #0276dc);
}
.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, #002d5b 36.95%, #E2AA01 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, #EFEFEF);
  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, #002d5b 36.95%, #E2AA01 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, #002d5b 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, #0276dc);
}
.donate-card__item__btn a:hover {
  background-color: var(--heartox-secondary, #E2AA01);
  color: var(--heartox-base, #002d5b);
}
.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, 26, 61, 46), 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, #002d5b);
  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, #E2AA01);
}
.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, #002d5b);
}
.donations-four__funfact__item:last-child {
  background-color: var(--heartox-gray, #D2D2D2);
}
.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, #002d5b);
}
.donations-four__funfact__item:last-child .donations-four__funfact__item__count span {
  color: inherit;
}
.donations-four__form__inner {
  background-color: var(--heartox-secondary, #E2AA01);
  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, #0276dc);
}
.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, #0276dc 0%, #E2AA01 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, #0276dc);
  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, #002d5b);
  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, #002d5b 41.48%, rgba(26, 61, 46, 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, #0276dc);
}
.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, #002d5b);
}
.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, #E2AA01);
}
.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, #002d5b);
  color: var(--heartox-secondary, #E2AA01);
}
.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, 26, 61, 46), 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, #0276dc);
}
.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, #0276dc);
  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, #002d5b);
  margin-bottom: 12px;
  transition: all 0.4s ease-in-out;
}
.charity-three__title {
  color: var(--heartox-base, #002d5b);
  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, 26, 61, 46), 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, #E2AA01);
}
.charity-three__item:hover .charity-three__thumb__icon {
  background-color: rgba(var(--heartox-secondary-rgb, 226, 170, 1), 0.9);
  transform: translate(-50%, -50%) scale(1.3);
}
.charity-three__item:hover .charity-three__icon {
  background-color: rgba(var(--heartox-secondary-rgb, 226, 170, 1));
}
.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, #002d5b);
  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, #E2AA01);
  border-color: var(--heartox-base, #002d5b);
}

/*--------------------------------------------------------------
# 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, #D2D2D2);
  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, #E2AA01);
  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, #002d5b);
}
.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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  -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, #EFEFEF);
  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, #002d5b);
  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, #0276dc);
}
.donation-details .progress-box__text span {
  color: var(--heartox-text, #727272);
}
.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, #002d5b);
}
.donation-details__summery__list li i {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
}
.donation-details__donors__card__name {
  margin-bottom: 8px;
}
.donation-details__donors__card__amount {
  color: var(--heartox-secondary, #E2AA01);
}
.donation-details__donors__card:hover::after {
  background-color: var(--heartox-gray2, #EFEFEF);
  border: 1px solid var(--heartox-gray2, #EFEFEF);
}
.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, #D2D2D2);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  -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, #EFEFEF);
  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, #002d5b);
  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, #0276dc);
}
.donation-details-two .progress-box__text span {
  color: var(--heartox-text, #727272);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #80AA98);
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #002d5b) !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, #80AA98);
}
.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, #EFEFEF);
  transition: all 400ms ease;
}
.donate-form__amount__btn:hover, .donate-form__amount__btn.active {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, #EFEFEF);
  -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, #002d5b);
  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, #EFEFEF);
  border: none;
  outline: none;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: var(--heartox-text, #727272);
}
.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, #727272);
}
.donate-form .form-one__group textarea {
  border-radius: 10px;
  height: 211px;
}
.donate-form__total-donation {
  margin: 0;
  text-transform: capitalize;
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  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, #002d5b);
}
.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, #D2D2D2);
  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, #002d5b);
}
.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, #002d5b);
  background-color: var(--heartox-gray2, #EFEFEF);
  border-radius: 50%;
  transition: all 500ms ease;
}
.become-volunteer__contact__title {
  margin-bottom: 0;
  font-size: 12px;
  color: var(--heartox-text, #727272);
  font-weight: 700;
  line-height: 1.357;
}
.become-volunteer__contact__link {
  font-size: 16px;
  color: var(--heartox-base, #002d5b);
  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, #E2AA01);
}
.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, #EFEFEF);
  border-radius: 40px;
  color: var(--heartox-text, #727272);
  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, #727272);
  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, 26, 61, 46), 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: center;
  gap: 20px;
}
@media (max-width: 1199px) and (min-width: 992px), (max-width: 767px) {
  .charity-cause__list {
    flex-wrap: wrap;
  }
}
.charity-cause__list li {
  flex: 25%;
  width: 25%;
}
@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, #0276dc 0%, #E2AA01 115%);
  border-radius: 10px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
  position: relative;
}
@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, #0276dc 0%, #E2AA01 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: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, #0276dc);
  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, #E2AA01);
}
.charity-cause-donate__box {
  background-color: var(--heartox-base, #002d5b);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #E2AA01);
  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, #E2AA01);
  -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, #D2D2D2);
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.event-card {
  position: relative;
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #002d5b);
  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, #002d5b);
}
.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, #002d5b);
  padding: 7px 22px;
  border-radius: 40px;
  background-color: var(--heartox-white, #fff);
}
.event-card__category a:hover {
  background-color: var(--heartox-primary, #0276dc);
  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, #002d5b);
}
.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, #727272);
  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, #002d5b);
  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, #002d5b);
  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, #0276dc);
}
.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, #80AA98);
}
.event-card:hover .event-card__meta li i {
  color: var(--heartox-secondary, #E2AA01);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #002d5b);
  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, #727272);
  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, #002d5b);
  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, #002d5b);
  padding: 12.5px 38px;
}
.event-list-card .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.event-list-card .heartox-btn::after {
  background-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
}
.events-details__list li i {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
}
.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, #002d5b);
  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: #212226;
  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, #002d5b);
  display: block;
  margin: 0;
}
.event-details__info__list li + li {
  border-top: 1px solid var(--heartox-secondary, #E2AA01);
  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, #EFEFEF);
  color: var(--heartox-base, #002d5b);
  transition: all 0.4s ease-in-out;
}
.event-details__info .social-links a:hover {
  background-color: var(--heartox-base, #002d5b);
  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, #D2D2D2);
}
.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, #0276dc);
  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, #E2AA01);
  line-height: 0;
}
.testimonials-card__text {
  margin: 0;
  color: var(--heartox-text, #727272);
}
.testimonials-card__bottom {
  padding: 30px 40px;
  background: var(--heartox-primary, #0276dc);
  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, #0276dc);
  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, #D2D2D2);
  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, #E2AA01);
}
.testimonials-card:hover .testimonials-card__bottom::before {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #EFEFEF);
  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, #002d5b);
}
.testimonials-one__rating {
  border-radius: 100px;
  letter-spacing: 1px;
  text-align: center;
}
.testimonials-one__rating i {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #E2AA01);
  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, #EFEFEF);
}
@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, #EFEFEF) !important;
  margin: 0;
}
.testimonials-one .owl-dots .owl-dot:hover span {
  background-color: var(--heartox-primary, #0276dc) !important;
}
.testimonials-one .owl-dots .owl-dot.active span {
  height: 199px;
  border-radius: 10px;
  background-color: var(--heartox-primary, #0276dc) !important;
}

.testimonials-two {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.testimonials-two__left {
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #002d5b);
}
.testimonials-two__left__rating {
  border-radius: 100px;
  letter-spacing: 1px;
  text-align: center;
}
.testimonials-two__left__rating i {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  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, #80AA98);
}
.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, #D2D2D2);
}
.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, #E2AA01);
}
@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, #E2AA01);
  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, #E2AA01);
}
.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, #002d5b);
  border-radius: 50%;
  background-color: var(--heartox-gray2, #EFEFEF);
  height: 38px;
  line-height: normal;
}
.testimonials-two__slick-button:hover {
  background-color: var(--heartox-secondary, #E2AA01);
  color: var(--heartox-white, #fff);
}
.testimonials-two__slick-button--prev {
  right: -85px;
  background-color: var(--heartox-secondary, #E2AA01);
  color: var(--heartox-white, #fff);
}
.testimonials-two .slick-current + .slick-active .testimonials-two__thumb-carousel__item img {
  border: 3px solid var(--heartox-primary, #0276dc) !important;
}

/***** Testimonials Three *****/
.testimonials-three {
  position: relative;
  z-index: 1;
  background-color: var(--heartox-base, #002d5b);
}
.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(226, 170, 1, 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, #212226);
}
.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, #727272);
  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, #80AA98);
  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, #E2AA01) !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, #002d5b);
  border-radius: 50%;
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #E2AA01);
  color: var(--heartox-white, #fff);
}
.testimonials-three__slick-button--prev {
  left: 45%;
  background-color: var(--heartox-secondary, #E2AA01);
  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, #EFEFEF);
  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, #E2AA01);
  font-size: 17px;
}
.testimonials-four__box__title {
  color: var(--heartox-base, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  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, #D2D2D2);
  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, #002d5b);
  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, #E2AA01);
  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, #727272);
  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, #002d5b);
  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, #002d5b);
}
.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, #80AA98);
}
.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, #E2AA01);
}
.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, #002d5b);
  transition: all 500ms ease;
  border: 1px solid var(--heartox-base, #002d5b);
}
.testimonials-four__custome-dots button:last-child {
  transform: rotate(-120deg);
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-secondary, #E2AA01);
}
.testimonials-four__custome-dots button:hover {
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-secondary, #E2AA01);
}

/***** Donation List Four *****/
.donation-list-four {
  position: relative;
}
.donation-list-four__inner {
  margin-top: 30px;
  background-color: var(--heartox-base, #002d5b);
  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, #002d5b);
  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, #E2AA01);
  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, #002d5b);
}
.donation-list-four .tab-buttons .heartox-btn::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #E2AA01);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
}
.cta-one__content {
  padding: 50px 55px;
  position: relative;
  background-color: var(--heartox-base, #002d5b);
  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, #0276dc);
  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, #E2AA01);
  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, #002d5b);
  border-radius: 50%;
  background-color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
}
.cta-one__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
}
.cta-three__form__box button::after {
  background-color: var(--heartox-primary, #0276dc);
}
.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, #0276dc);
  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, #002d5b 40.62%, #0276dc 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, #0D2119);
}
.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, #212226);
  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(26, 61, 46, 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, #E2AA01);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--heartox-black, #212226);
}
.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, #0276dc);
}
.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, #002d5b);
}
.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, 26, 61, 46), 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, #EFEFEF);
  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, #002d5b);
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid var(--heartox-base, #002d5b);
}
.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, #727272);
  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, #727272);
  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, #727272);
  transition: all 0.4s ease-in-out;
}
.sidebar__search button[type=submit]:hover {
  color: var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  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, 33, 34, 38), 0.5);
  position: absolute;
  transition: all 0.4s ease-in-out;
}
.sidebar__posts__title {
  margin-bottom: 0;
  color: var(--heartox-base, #002d5b);
  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, #E2AA01);
}
.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, #727272);
  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, #002d5b);
}
.sidebar__posts__meta a i {
  color: var(--heartox-secondary, #E2AA01);
  margin-right: 10px;
}
.sidebar__categories {
  margin-bottom: -4px;
}
.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--heartox-secondary, #E2AA01);
}
.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, #727272);
  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, #002d5b);
  transition: all 0.4s ease-in-out;
}
.sidebar__categories li a:hover {
  padding-left: 20px;
  color: var(--heartox-secondary, #E2AA01);
}
.sidebar__categories li a:hover i {
  color: var(--heartox-secondary, #E2AA01);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background: var(--heartox-gray2, #EFEFEF);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 11.5px 16px;
  color: var(--heartox-text, #727272);
  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, #E2AA01);
}
.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, #EFEFEF);
  font-size: 22px;
  color: var(--heartox-text, #727272);
  margin-right: 14px;
  border-radius: 50%;
  transition: all 500ms ease-in-out;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--heartox-secondary, #E2AA01);
  color: var(--heartox-white, #fff);
}
.sidebar__comments__title {
  color: var(--heartox-text, #727272);
  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, #002d5b);
}

/**** 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, #727272);
  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, #D2D2D2);
  color: var(--heartox-black, #212226);
  text-shadow: 0 0 1px currentColor;
}
.service-sidebar__nav li.current a::after, .service-sidebar__nav li:hover a::after {
  color: var(--heartox-base, #002d5b);
  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, #212226);
  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, #002d5b);
  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, #212226);
  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, #002d5b);
}
.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, #212226);
  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, 33, 34, 38), 0.1);
}
.service-sidebar__contact__icon:hover i {
  transform: scale(0.9);
  color: var(--heartox-black, #212226);
}
.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, #002d5b);
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 700;
  line-height: 108.333%;
  border-bottom: 1px solid var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  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, 33, 34, 38), 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, #727272);
  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, #002d5b);
}
.sidebar-donation__posts__meta a i {
  color: var(--heartox-secondary, #E2AA01);
  margin-right: 10px;
}
.sidebar-donation__posts__title {
  margin-bottom: 0;
  color: var(--heartox-base, #002d5b);
  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, #E2AA01);
}
.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, #002d5b);
  background-color: var(--heartox-gray, #D2D2D2);
  transition: all 0.4s ease-in-out;
}
.sidebar-donation__social .social-links a:hover {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-base, #002d5b);
}

/**** 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, #002d5b);
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #002d5b);
  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, #727272);
  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, #002d5b);
}
.organizer-card__info li:hover .organizer-card__info__icon {
  color: var(--heartox-white, #fff);
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #002d5b);
  background-color: var(--heartox-gray, #D2D2D2);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
}

/**** 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, #0276dc);
  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, #727272);
  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, #E2AA01);
}
.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, #002d5b);
  overflow: hidden;
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
.sidebar-donation-two__categories li a:hover {
  color: var(--heartox-secondary, #E2AA01);
  padding-left: 10px;
}
.sidebar-donation-two__categories li a:hover i {
  color: var(--heartox-secondary, #E2AA01);
}
.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, #002d5b);
  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, #E2AA01);
}
.sidebar-donation-two__donation-card .heartox-btn {
  color: var(--heartox-base, #002d5b);
  background-color: var(--heartox-gray2, #EFEFEF);
  padding: 5px 20px;
}
.sidebar-donation-two__donation-card .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.sidebar-donation-two__donation-card .heartox-btn:hover {
  color: var(--heartox-white, #fff);
}
.sidebar-donation-two__contact {
  position: relative;
  background-color: var(--heartox-base, #002d5b);
  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, #0276dc);
}
.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, #D2D2D2);
  border-bottom: 1px solid var(--heartox-gray, #D2D2D2);
}
.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, #002d5b);
}
@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, #727272);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.blog-details__tags .sidebar__tags2 a:hover {
  color: var(--heartox-base, #002d5b);
}

/*--------------------------------------------------------------
# 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, #002d5b);
  padding: 10px 22px;
  line-height: normal;
}
.comments-one__card__btn .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.comments-one__card__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #727272);
  font-weight: 600;
  border-radius: 40px;
  background-color: var(--heartox-gray2, #EFEFEF);
}
.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, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  border: none;
  height: 8px;
  border-radius: 6px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--heartox-base, #002d5b);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -3px;
  background: var(--heartox-secondary, #E2AA01);
  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, #727272);
  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, #727272);
  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, #002d5b);
  background: var(--heartox-gray2, #EFEFEF);
}
.product__price-ranger .ranger-min-max-block button[type=submit]::before {
  background: var(--heartox-gray2, #EFEFEF);
}
.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, #002d5b);
  color: var(--heartox-base, #002d5b);
  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, 114, 114, 114), 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, #727272);
  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, #002d5b);
  transition: all 500ms ease;
}
.product__categories ul li a:hover {
  padding-left: 20px;
  background-color: var(--heartox-white, #fff);
  color: var(--heartox-secondary, #E2AA01);
}
.product__categories ul li a:hover i {
  color: var(--heartox-secondary, #E2AA01);
}
.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, #002d5b);
}
@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, #EFEFEF) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--heartox-text, #727272) !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, #002d5b);
}
.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, #002d5b);
  -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, #E2AA01);
  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, #002d5b);
}
.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, #EFEFEF);
  border-radius: 50%;
  color: var(--heartox-text, #727272);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--heartox-secondary, #E2AA01);
  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, #E2AA01);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.product__item__title {
  margin: 0;
  margin-bottom: 10px;
  color: var(--heartox-base, #002d5b);
  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, #E2AA01);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--heartox-text, #727272);
  line-height: 1em;
  font-weight: 600;
  margin-bottom: 20px;
}
.product__item__price del {
  margin-left: 7px;
}
.product__item__link {
  color: var(--heartox-text, #727272);
  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, #E2AA01);
}
.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, #D2D2D2);
  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, #727272);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
  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, #002d5b);
  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, #E2AA01);
}
.product-details__review a {
  display: inline-block;
  margin-left: 20px;
  transition: all 500ms ease;
  color: var(--heartox-text, #727272);
  font-size: 16px;
  letter-spacing: 0;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
}
.product-details__review a:hover {
  color: var(--heartox-secondary, #E2AA01);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--heartox-gray, #D2D2D2);
  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, #002d5b);
  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, #002d5b);
}
.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, #002d5b);
  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, #727272);
  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, #002d5b);
  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, #D2D2D2);
}
.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, #002d5b);
  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, #EFEFEF);
  font-size: 12px;
  color: var(--heartox-base, #002d5b);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials__item a:hover {
  background-color: var(--heartox-base, #002d5b);
  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, #002d5b);
}
.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, #002d5b);
}
.product-details__description__lists li i {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #E2AA01);
}
@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, #002d5b);
  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, #0276dc);
  margin: 0 0 40px;
}
.product-details__form-ratings i {
  color: var(--heartox-secondary, #E2AA01);
  font-size: 400;
}
.product-details__form-ratings__label {
  display: inline-block;
  letter-spacing: 0;
  color: var(--heartox-text, #727272);
  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, #EFEFEF);
  border-color: transparent;
  border-radius: 30px;
  color: var(--heartox-text, #727272);
  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, #727272);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #E2AA01);
}
.cart-page__table__remove {
  display: block;
  color: var(--heartox-base, #002d5b);
  font-size: 18px;
  transition: all 0.4s ease-in-out;
}
.cart-page__table__remove:hover {
  color: var(--heartox-secondary, #E2AA01);
}
.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, #EFEFEF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--heartox-text, #727272);
  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, #002d5b);
  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, #727272);
  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, #EFEFEF);
  color: var(--heartox-base, #002d5b);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #EFEFEF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  display: block;
  color: var(--heartox-text, #727272);
  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, #727272);
  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, #002d5b);
  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, #E2AA01);
  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, #002d5b);
  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, #727272);
  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, #E2AA01);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #727272);
  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, #002d5b);
  font-weight: 700;
}
.checkout-page__payment {
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #E2AA01);
  border-color: var(--heartox-base, #002d5b);
  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, #D2D2D2);
  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, #002d5b);
  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, #E2AA01);
  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, #002d5b);
  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, #D2D2D2);
}
@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, #EFEFEF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  color: var(--heartox-text, #727272);
  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, #727272);
  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, #002d5b);
  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, #002d5b);
  border-right: 2px solid var(--heartox-base, #002d5b);
  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, #D2D2D2);
}
.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, #002d5b);
  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, #0276dc);
}

.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, #EFEFEF);
  border-radius: 40px;
  color: var(--heartox-text, #727272);
  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, #727272);
}
@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, #E2AA01);
  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, #727272);
  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, #727272);
  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, #727272);
  transition: all 0.4s ease-in-out;
}
.faq-page .faq-top__form button[type=submit]:hover {
  color: var(--heartox-base, #002d5b);
}
@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, #002d5b);
  padding: 24.5px 30px;
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #0276dc);
  transition: all 0.4s ease-in-out;
}
.faq-page .faq-inner__tab-buttons__title:hover {
  background-color: var(--heartox-base, #002d5b);
  color: var(--heartox-white, #fff);
}
.faq-page .faq-inner__tab-buttons__title:hover .icon {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #002d5b);
  color: var(--heartox-white, #fff);
}
.faq-page .faq-inner .active-btn .faq-inner__tab-buttons__title .icon {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #E2AA01);
  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, #E2AA01);
  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, #EFEFEF);
  color: var(--heartox-base, #002d5b);
}
.package-page__inner__filter .heartox-btn::before {
  background-color: var(--heartox-gray2, #EFEFEF);
}
.package-page__inner__filter .heartox-btn::after {
  background-color: var(--heartox-base, #002d5b);
}
.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, #002d5b);
}

.package-card {
  background-color: var(--heartox-base, #002d5b);
  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, #0276dc);
  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, #E2AA01);
  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, #E2AA01);
  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, #80AA98);
  transition: all 0.4s ease-in-out;
}
.package-card__content {
  padding: 30px;
  border: 1px solid var(--heartox-base, #002d5b);
  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, #80AA98);
  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, #0276dc);
  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, #0276dc);
}
.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, #E2AA01);
}
.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, #002d5b);
}
.package-card.active .package-card__content__list__item, .package-card:hover .package-card__content__list__item {
  color: var(--heartox-text, #727272);
}
.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, #212226);
  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, #002d5b);
}

.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, #002d5b);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--heartox-base, #002d5b);
  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, #212226);
}

.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, #002d5b);
}

.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, #002d5b);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--heartox-base, #002d5b);
  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, #727272);
  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, #212226);
}
.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, #727272);
  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(4, 123, 102, 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, #002d5b);
  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, #E2AA01);
}
.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, #D2D2D2);
}

.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, #002d5b);
  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, #E2AA01);
}
.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 {
  position: relative;
}
.main-slider-one__item {
  background-color: var(--heartox-base, #002d5b);
  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, #13221C 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, #E2AA01);
  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, #80AA98);
  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, #0276dc);
  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, #002d5b);
  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, #E2AA01);
  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, #0276dc);
  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, #002d5b);
}
.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, #002d5b);
  padding: 9px 35px;
  border-radius: 40px;
  border: 1px solid var(--heartox-text-gray, #80AA98);
  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, #002d5b);
  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, #0276dc);
  line-height: normal;
  color: var(--heartox-secondary, #E2AA01);
  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, #E2AA01);
}
@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, #80AA98);
  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, #0276dc);
}
.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, #002d5b);
  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, 26, 61, 46), 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, #0276dc);
  line-height: normal;
  color: var(--heartox-secondary, #E2AA01);
  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, #0D2119);
}
.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, #E2AA01 0%, rgba(26, 61, 46, 0) 100%);
}
.banner-one__item--style-2 .banner-one__item__bg::after {
  background: linear-gradient(90deg, rgba(4, 123, 102, 0.95) 23.3%, rgba(26, 61, 46, 0) 100%);
}
.banner-one__item--style-2 .banner-one__item__btn::after {
  background-color: var(--heartox-base, #002d5b);
}
.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(26, 61, 46, 0.95) 20.33%, rgba(26, 61, 46, 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, #0276dc);
}

.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, #E2AA01);
  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, #002d5b);
  color: var(--heartox-base, #002d5b);
  font-size: 18px;
  background-color: var(--heartox-gray2, #EFEFEF);
  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, #002d5b);
}
.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, #EFEFEF);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #E2AA01);
}
.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, #002d5b);
  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, #E2AA01);
  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, #002d5b);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  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, #EFEFEF);
  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, #E2AA01);
  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, #E2AA01);
  -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, #D2D2D2);
}
.about-one__btn .heartox-btn {
  padding: 13px 38px;
}
.about-one__btn .heartox-btn::after {
  background-color: var(--heartox-secondary, #E2AA01);
}
.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, #E2AA01);
  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;
}
@media (max-width: 1199px) {
  .about-one__thumb__bottom .about-one__thumb__bottom__shape img {
    object-fit: cover;
    width: 108%;
  }
}
.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, #E2AA01);
  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: auto;
  object-fit: cover;
}

.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, #002d5b);
  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, #E2AA01);
}
.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, #002d5b);
  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, #002d5b);
}
.about-two__content__list li + li {
  border-top: 1px solid var(--heartox-primary, #0276dc);
}
.about-two__content__list li {
  padding: 30px 35px;
}
.about-two__content__list .star {
  color: var(--heartox-secondary, #E2AA01);
  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, #002d5b);
}
.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, #E2AA01);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--heartox-white, #fff);
  border: 2px solid var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  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, #E2AA01);
  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, #002d5b);
  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, #EFEFEF);
  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, #002d5b);
  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, #E2AA01);
}
@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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #002d5b);
  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, #80AA98);
  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, #E2AA01);
}
.about-four__help:hover .about-four__help__title {
  color: var(--heartox-base, #002d5b);
}
.about-four__help:hover .about-four__help__text {
  color: var(--heartox-text, #727272);
}
.about-four__help:hover .about-four__help__thumb img {
  border-color: var(--heartox-base, #002d5b);
}
.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, #727272);
  display: flex;
  align-items: center;
  gap: 8px;
}
.about-four__list__item i {
  color: var(--heartox-base, #002d5b);
}
.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, #E2AA01);
  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, #EFEFEF 55.23%, rgba(239, 239, 239, 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, #002d5b);
  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, #E2AA01);
  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, #EFEFEF);
}
.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, #80AA98);
  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
--------------------------------------------------------------*/
/*# sourceMappingURL=heartox.css.map */
