/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --careox-font: "Rubik", sans-serif;
  --careox-heading-font: "Nunito Sans", sans-serif;
  --careox-special-font: "Caveat", cursive;
  --careox-text: #636363;
  --careox-text-rgb: 99, 99, 99;
  --careox-text-dark: #727472;
  --careox-text-dark-rgb: 114, 116, 114;
  --careox-text-gray: #bcbcbc;
  --careox-text-gray-rgb: 188, 188, 188;
  --careox-base: #ff5528;
  --careox-base-rgb: 255, 85, 40;
  --careox-secondary: #ffa415;
  --careox-secondary-rgb: 255, 164, 21;
  --careox-gray: #f1f6f7;
  --careox-gray-rgb: 241, 246, 247;
  --careox-white: #fff;
  --careox-white-rgb: 255, 255, 255;
  --careox-black: #122f2a;
  --careox-black-rgb: 18, 47, 42;
  --careox-black2: #121212;
  --careox-black2-rgb: 18, 18, 18;
  --careox-black3: #000;
  --careox-black3-rgb: 0, 0, 0;
  --careox-border-color: #dddddd;
  --careox-border-color-rgb: 221, 221, 221;
  --careox-letter-space: 0.1em;
  --careox-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;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--careox-font, "Rubik", sans-serif);
  color: var(--careox-text, #636363);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

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

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

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

.background-base {
  background-color: var(--careox-base, #ff5528);
}

.background-gray {
  background-color: var(--careox-gray, #f1f6f7);
}

.background-black {
  background-color: var(--careox-black, #122f2a);
}

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

.careox-text-dark {
  color: var(--careox-text-dark, #727472);
}

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

.careox-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: transparent;
  color: var(--careox-white, #fff);
  font-size: 17px;
  font-weight: 700;
  border-radius: 30px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  letter-spacing: 0.25px;
  padding: 13px 37px;
  transition: 500ms;
  text-transform: capitalize;
  position: relative;
  text-align: center;
}
.careox-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  background: var(--careox-secondary, #ffa415);
  transition: all 0.3s;
}
.careox-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  background: 0 0;
  border-radius: 30px;
  transition: all 0.4s;
  border: 1px solid var(--careox-base, #ff5528);
  transform: scale(1.2, 1.2);
}
.careox-btn:hover {
  color: var(--careox-base, #ff5528);
}
.careox-btn:hover::before {
  opacity: 0;
  transform: scale(0.5, 0.5);
}
.careox-btn:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.careox-btn span {
  position: relative;
  color: inherit;
  z-index: 2;
}
.careox-btn i {
  font-size: 20px;
  margin-right: 10px;
  top: 2px;
  position: relative;
}

.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 {
  padding: 12px 30px;
  border-bottom: 1px solid var(--careox-gray, #f1f6f7);
}
.bootstrap-select .dropdown-item:hover,
.bootstrap-select .dropdown-item.active {
  background-color: var(--careox-secondary, #ffa415);
  border-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}

.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(--careox-text, #636363);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--careox-text, #636363);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-special-font, "Caveat", cursive);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

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

.preloader {
  position: fixed;
  background-color: var(--careox-black, #122f2a);
  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-to-top {
  display: flex;
  align-items: center;
  width: auto;
  height: 35px;
  background: transparent;
  position: fixed;
  bottom: 60px;
  right: -12px;
  z-index: 99;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: rotate(-90deg);
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-to-top__text {
  display: inline;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-right: 8px;
}
.scroll-to-top__wrapper {
  display: inline-block;
  width: 30px;
  height: 4px;
  background-color: var(--careox-base, #ff5528);
  position: relative;
  overflow: hidden;
}
.scroll-to-top__inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--careox-black, #122f2a);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  bottom: 70px;
}

/* post paginations */
.post-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .post-pagination {
    margin-top: 10px;
  }
}
.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: var(--careox-gray, #f1f6f7);
  align-items: center;
  justify-content: center;
  color: var(--careox-black, #122f2a);
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  transition: 500ms ease;
}
.post-pagination a.current, .post-pagination a:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}

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

.careox-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  border-radius: 50%;
  opacity: 1;
  margin: 0;
  padding: 0;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  justify-content: center;
  opacity: 1;
  align-items: center;
  color: var(--careox-black, #122f2a);
  border-radius: 50%;
  font-size: 17px;
  transition: all 500ms ease;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-nav button span:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--careox-border-color, #dddddd);
  margin: 0;
  transition: all 300ms ease;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .careox-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--careox-base, #ff5528);
  border-color: var(--careox-base, #ff5528);
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 40px;
}
.careox-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

.sec-title {
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
    margin-top: -3px;
  }
}
.sec-title__tagline {
  margin: 0;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--careox-base, #ff5528);
  text-transform: uppercase;
  display: inline-block;
  font-weight: 700;
  letter-spacing: 1.2px;
  font-size: 18px;
  line-height: 1em;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 22px;
    letter-spacing: 2.2px;
    margin-bottom: 16px;
  }
}
.sec-title__tagline__border {
  width: 4px;
  height: 17px;
  display: inline-block;
  background-color: var(--careox-base, #ff5528);
  position: relative;
  top: 2px;
  margin-right: 10px;
}
.sec-title__tagline__border::after {
  position: absolute;
  right: -5px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 3.5px 0 3.5px 5px;
  border-color: transparent transparent transparent currentColor;
  content: "";
  animation: zump 2s linear infinite;
}
.sec-title__title {
  margin: 0;
  font-size: 32px;
  line-height: 42px;
  font-weight: 800;
  margin: 0;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 40px;
    line-height: 50px;
  }
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
  font-family: var(--careox-font, "Rubik", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--careox-font, "Rubik", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--careox-gray, #f1f6f7);
  background-image: none;
  font-family: var(--careox-font, "Rubik", sans-serif);
  color: var(--careox-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--careox-border-color, #dddddd);
  background-color: var(--careox-gray, #f1f6f7);
  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(--careox-border-color, #dddddd);
  background-color: var(--careox-gray, #f1f6f7);
  background-image: none;
  color: var(--careox-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--careox-white, #fff);
  background-color: var(--careox-base, #ff5528);
}
.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(--careox-white, #fff);
  background-color: var(--careox-base, #ff5528);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--careox-white, #fff);
  color: var(--careox-black, #122f2a);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  top: 2px;
}

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

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

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  padding: 130px 0 208px;
  z-index: 1;
}
@media (max-width: 767px) {
  .video-one {
    padding: 80px 0 160px;
  }
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 327.000000"><g transform="translate(0.000000,327.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 1796 l0 -1474 88 -16 c48 -9 101 -17 117 -18 28 -3 30 -6 30 -43 l0 -40 53 -3 c41 -2 58 1 79 18 14 11 33 18 42 16 9 -2 26 -7 37 -11 25 -6 84 37 84 61 0 8 10 28 22 44 21 29 25 30 101 30 46 0 99 7 129 16 40 14 58 15 91 6 129 -34 139 -39 174 -80 38 -46 76 -55 128 -28 25 13 30 12 63 -11 37 -24 44 -25 115 -7 22 5 36 0 73 -29 53 -42 89 -52 137 -39 24 7 38 6 51 -3 9 -7 37 -16 61 -20 25 -3 57 -17 72 -29 36 -30 87 -56 109 -56 10 0 31 -12 46 -27 20 -20 44 -29 90 -36 127 -19 187 -11 237 33 18 17 39 30 46 30 7 0 18 7 25 15 7 8 19 15 27 15 7 0 27 10 44 22 21 16 45 23 77 23 29 0 57 7 74 18 14 10 39 18 55 17 47 -2 76 -1 127 6 29 4 57 2 70 -5 43 -23 186 58 171 97 -3 7 0 22 5 33 17 31 136 21 161 -14 9 -13 89 -28 109 -22 10 3 35 -1 55 -10 54 -22 89 -19 148 15 30 17 65 30 78 30 13 0 44 14 69 30 25 16 51 30 58 30 16 0 52 -58 52 -85 0 -11 7 -29 15 -39 8 -11 15 -28 15 -38 0 -17 23 -77 41 -108 5 -8 13 -25 19 -37 9 -21 16 -23 94 -23 79 0 90 3 149 35 35 19 74 46 87 60 22 24 29 25 137 25 108 0 115 1 161 30 27 16 62 30 78 30 33 0 74 24 74 44 0 7 15 29 33 48 17 20 38 43 45 52 20 25 132 22 166 -5 23 -18 34 -19 96 -13 50 5 82 14 106 30 23 16 49 24 78 24 34 0 50 7 85 37 l43 36 68 -36 c56 -31 78 -37 126 -37 46 0 66 -5 95 -26 35 -24 40 -25 81 -13 23 7 47 16 53 21 17 15 55 8 111 -19 l54 -26 43 20 c35 18 55 20 122 16 l80 -5 59 56 c32 31 71 63 86 71 35 18 68 57 100 118 l25 48 55 -7 c30 -3 71 -10 91 -15 20 -5 50 -6 66 -3 24 5 37 0 65 -25 20 -17 43 -31 53 -31 32 0 73 33 107 86 18 30 40 54 49 54 10 0 32 -17 50 -37 44 -51 65 -62 106 -53 33 8 69 4 88 -10 6 -4 27 -10 48 -14 33 -6 41 -3 65 21 16 15 33 36 39 47 9 17 14 17 46 5 29 -10 49 -10 100 -1 89 17 122 15 167 -8 41 -21 85 -26 94 -11 10 15 60 20 108 9 44 -10 49 -9 93 20 38 25 51 29 72 21 39 -14 146 -11 169 6 30 23 79 18 132 -14 43 -27 59 -31 167 -37 116 -7 120 -8 147 -38 15 -17 28 -33 28 -37 0 -4 21 -12 46 -18 47 -12 100 -2 134 25 8 7 38 19 65 27 40 11 56 22 78 56 38 55 67 73 122 73 l45 0 0 1254 0 1254 -4500 0 -4500 0 0 -1474z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 327.000000"><g transform="translate(0.000000,327.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 1796 l0 -1474 88 -16 c48 -9 101 -17 117 -18 28 -3 30 -6 30 -43 l0 -40 53 -3 c41 -2 58 1 79 18 14 11 33 18 42 16 9 -2 26 -7 37 -11 25 -6 84 37 84 61 0 8 10 28 22 44 21 29 25 30 101 30 46 0 99 7 129 16 40 14 58 15 91 6 129 -34 139 -39 174 -80 38 -46 76 -55 128 -28 25 13 30 12 63 -11 37 -24 44 -25 115 -7 22 5 36 0 73 -29 53 -42 89 -52 137 -39 24 7 38 6 51 -3 9 -7 37 -16 61 -20 25 -3 57 -17 72 -29 36 -30 87 -56 109 -56 10 0 31 -12 46 -27 20 -20 44 -29 90 -36 127 -19 187 -11 237 33 18 17 39 30 46 30 7 0 18 7 25 15 7 8 19 15 27 15 7 0 27 10 44 22 21 16 45 23 77 23 29 0 57 7 74 18 14 10 39 18 55 17 47 -2 76 -1 127 6 29 4 57 2 70 -5 43 -23 186 58 171 97 -3 7 0 22 5 33 17 31 136 21 161 -14 9 -13 89 -28 109 -22 10 3 35 -1 55 -10 54 -22 89 -19 148 15 30 17 65 30 78 30 13 0 44 14 69 30 25 16 51 30 58 30 16 0 52 -58 52 -85 0 -11 7 -29 15 -39 8 -11 15 -28 15 -38 0 -17 23 -77 41 -108 5 -8 13 -25 19 -37 9 -21 16 -23 94 -23 79 0 90 3 149 35 35 19 74 46 87 60 22 24 29 25 137 25 108 0 115 1 161 30 27 16 62 30 78 30 33 0 74 24 74 44 0 7 15 29 33 48 17 20 38 43 45 52 20 25 132 22 166 -5 23 -18 34 -19 96 -13 50 5 82 14 106 30 23 16 49 24 78 24 34 0 50 7 85 37 l43 36 68 -36 c56 -31 78 -37 126 -37 46 0 66 -5 95 -26 35 -24 40 -25 81 -13 23 7 47 16 53 21 17 15 55 8 111 -19 l54 -26 43 20 c35 18 55 20 122 16 l80 -5 59 56 c32 31 71 63 86 71 35 18 68 57 100 118 l25 48 55 -7 c30 -3 71 -10 91 -15 20 -5 50 -6 66 -3 24 5 37 0 65 -25 20 -17 43 -31 53 -31 32 0 73 33 107 86 18 30 40 54 49 54 10 0 32 -17 50 -37 44 -51 65 -62 106 -53 33 8 69 4 88 -10 6 -4 27 -10 48 -14 33 -6 41 -3 65 21 16 15 33 36 39 47 9 17 14 17 46 5 29 -10 49 -10 100 -1 89 17 122 15 167 -8 41 -21 85 -26 94 -11 10 15 60 20 108 9 44 -10 49 -9 93 20 38 25 51 29 72 21 39 -14 146 -11 169 6 30 23 79 18 132 -14 43 -27 59 -31 167 -37 116 -7 120 -8 147 -38 15 -17 28 -33 28 -37 0 -4 21 -12 46 -18 47 -12 100 -2 134 25 8 7 38 19 65 27 40 11 56 22 78 56 38 55 67 73 122 73 l45 0 0 1254 0 1254 -4500 0 -4500 0 0 -1474z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.video-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--careox-black, #122f2a);
  opacity: 0.65;
}
.video-one__shape-one {
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  animation: shapeMove 4s linear 0s infinite;
}
@media (max-width: 1199px) {
  .video-one__shape-one {
    display: none;
  }
}
.video-one__shape-two {
  position: absolute;
  right: 7%;
  top: 160px;
  width: 242px;
  height: 230px;
  opacity: 0.1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1199px) {
  .video-one__shape-two {
    display: none;
  }
}
.video-one--about {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .video-one--about {
    padding: 80px 0;
  }
}
.video-one--about .video-one__bg {
  mask: none;
}
.video-one--about .video-one__bg::after {
  background-color: rgba(var(--careox-black3-rgb, 0, 0, 0), 0.88);
}
.video-one .container {
  position: relative;
  text-align: center;
  z-index: 2;
}
.video-one .video-popup {
  width: 68px;
  height: 68px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 37px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one .video-popup .ripple,
.video-one .video-popup .ripple:before,
.video-one .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-one .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-one .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.video-one .video-popup:hover {
  color: var(--careox-secondary, #ffa415);
}
.video-one__sub-title {
  font-size: 28px;
  color: var(--careox-white, #fff);
  font-weight: 700;
  letter-spacing: 3.5px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 20px 0 15px;
}
@media (min-width: 768px) {
  .video-one__sub-title {
    font-size: 35px;
  }
}
.video-one__title {
  color: var(--careox-white, #fff);
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 800;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .video-one__title {
    font-size: 40px;
  }
}
.video-one__text {
  color: var(--careox-white, #fff);
  margin-bottom: 34px;
}

.video-two {
  position: relative;
}
.video-two__wrapper {
  position: relative;
  background-color: var(--careox-white, #fff);
  box-shadow: 0 0 35px 10px rgba(0, 0, 0, 0.04);
}
.video-two__content {
  position: relative;
  padding: 30px 30px 30px 50px;
}
@media (max-width: 767px) {
  .video-two__content {
    padding: 30px 20px;
  }
}
.video-two__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 18px;
}
.video-two__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.video-two__list li {
  position: relative;
  padding-left: 23px;
  margin-bottom: 4px;
}
.video-two__list li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}
.video-two__list li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.video-two__list li span {
  color: var(--careox-secondary, #ffa415);
}
.video-two__list__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 15px;
}
.video-two__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 462px;
  margin-left: auto;
}
@media (max-width: 991px) {
  .video-two__image {
    margin: 0 0 0 50px;
  }
}
@media (max-width: 767px) {
  .video-two__image {
    margin: 0;
  }
}
.video-two__image img {
  max-width: 100%;
  height: auto;
  border-left: 9px solid var(--careox-base, #ff5528);
}
@media (max-width: 1199px) {
  .video-two__image img {
    min-height: 200px;
  }
}
.video-two__image .video-popup {
  width: 52px;
  height: 52px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  font-size: 28px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  z-index: 2;
}
.video-two__image .video-popup .ripple,
.video-two__image .video-popup .ripple:before,
.video-two__image .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.5);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-two__image .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-two__image .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.video-two__image .video-popup:hover {
  color: var(--careox-secondary, #ffa415);
}

.video-three {
  position: relative;
  padding: 445px 0 120px;
  z-index: 1;
}
@media (max-width: 767px) {
  .video-three {
    padding: 380px 0 80px;
  }
}
.video-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.video-three__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
.video-three__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(18, 18, 18, 0.8);
}
.video-three .container {
  position: relative;
  text-align: center;
  z-index: 2;
}
.video-three .video-popup {
  width: 68px;
  height: 68px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 37px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-three .video-popup .ripple,
.video-three .video-popup .ripple:before,
.video-three .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-three .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-three .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.video-three .video-popup:hover {
  color: var(--careox-secondary, #ffa415);
}
.video-three__sub-title {
  font-size: 28px;
  color: var(--careox-white, #fff);
  font-weight: 700;
  letter-spacing: 3.5px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 20px 0 15px;
}
@media (min-width: 768px) {
  .video-three__sub-title {
    font-size: 35px;
  }
}
.video-three__title {
  color: var(--careox-white, #fff);
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 800;
  margin-bottom: 18px;
}
@media (min-width: 768px) {
  .video-three__title {
    font-size: 40px;
  }
}
.video-three__text {
  color: var(--careox-white, #fff);
  margin-bottom: 34px;
}

.video-four {
  position: relative;
  padding: 160px 0 190px;
  z-index: 1;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 777"><path d="m0 80.2c0 0 885-1.2 1485-72.2 370.1-43.8 435 116 435 116v576c0 0-54.3 78-676.7 0-622.3-78-1243.3 76.2-1243.3 76.2z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 777"><path d="m0 80.2c0 0 885-1.2 1485-72.2 370.1-43.8 435 116 435 116v576c0 0-54.3 78-676.7 0-622.3-78-1243.3 76.2-1243.3 76.2z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 1199px) {
  .video-four {
    padding: 120px 0 120px;
  }
}
@media (max-width: 991px) {
  .video-four {
    margin-top: -60px;
    padding: 120px 0 190px;
  }
}
@media (max-width: 767px) {
  .video-four {
    padding: 80px 0 190px;
    margin-bottom: -100px;
  }
}
.video-four::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--careox-black, #122f2a);
  opacity: 0.91;
}
.video-four__shape-one {
  position: absolute;
  left: 11%;
  top: 68px;
  width: 510px;
  height: 100%;
  z-index: 1;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
  animation: shapeMove 4s linear 0s infinite;
}
@media (max-width: 1599px) {
  .video-four__shape-one {
    left: 0%;
    top: 60px;
  }
}
@media (max-width: 1299px) {
  .video-four__shape-one {
    display: none;
  }
}
.video-four__shape-two {
  position: absolute;
  right: -15px;
  bottom: 30px;
  width: 359px;
  height: 278px;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.6;
  z-index: 1;
  animation: zoomsIn 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .video-four__shape-two {
    display: none;
  }
}
.video-four .container {
  position: relative;
  z-index: 2;
}
.video-four__area {
  position: relative;
  display: inline-block;
}
@media (max-width: 991px) {
  .video-four__area {
    margin-bottom: 20px;
  }
}
.video-four__area img {
  max-width: 100%;
  height: auto;
  border-radius: 50%;
}
.video-four__area .video-popup {
  width: 70px;
  height: 70px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 37px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  z-index: 10;
}
.video-four__area .video-popup .ripple,
.video-four__area .video-popup .ripple:before,
.video-four__area .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-four__area .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-four__area .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.video-four__area .video-popup:hover {
  color: var(--careox-secondary, #ffa415);
}
.video-four__sub-title {
  font-size: 28px;
  color: var(--careox-white, #fff);
  font-weight: 700;
  letter-spacing: 3.5px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 20px 0 14px;
}
@media (min-width: 768px) {
  .video-four__sub-title {
    font-size: 35px;
  }
}
.video-four__title {
  color: var(--careox-white, #fff);
  font-size: 35px;
  line-height: 1.2em;
  font-weight: 800;
  margin-bottom: 19px;
}
@media (min-width: 768px) {
  .video-four__title {
    font-size: 40px;
  }
}
.video-four__text {
  color: var(--careox-white, #fff);
  margin-bottom: 34px;
}

.team-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0;
  }
}
.team-one--about {
  padding: 0;
}

.team-card {
  position: relative;
  z-index: 1;
  background-color: var(--careox-gray, #f1f6f7);
  overflow: hidden;
  transition: all 500ms ease;
  border-radius: 10px 10px 0 0;
}
.team-card::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--careox-black, #122f2a);
  opacity: 0;
  visibility: hidden;
  transition: all 700ms ease;
  transform: translate3d(0px, 100%, 0px);
  z-index: -1;
}
.team-card:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0px, 0, 0px);
}
.team-card__image {
  position: relative;
  z-index: 1;
}
.team-card__image::after {
  position: absolute;
  right: -5px;
  bottom: -10px;
  width: calc(100% + 5px);
  height: 100%;
  content: "";
  background-color: var(--careox-white, #fff);
  z-index: -1;
  border-radius: 0 0 142px 0;
}
.team-card__image img {
  position: relative;
  width: 100%;
  border-radius: 0 0 142px 0;
}
.team-card__hover {
  position: absolute;
  bottom: 30px;
  right: 30px;
}
.team-card__hover__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  font-size: 21px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--careox-white, #fff);
  transition: all 500ms ease;
}
.team-card__hover__btn::after {
  display: inline-block;
  content: "+";
  transition: 300ms ease;
}
.team-card__hover:hover .team-card__hover__btn::after {
  content: "-";
}
.team-card__hover__social {
  position: absolute;
  bottom: 100%;
  right: 0;
  z-index: 3;
  margin: 0;
  opacity: 0;
  padding-bottom: 14px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s linear;
  transform-origin: bottom center;
}
.team-card__hover__social a {
  width: 40px;
  height: 40px;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 500ms ease;
}
.team-card__hover__social a + a {
  margin-top: 8px;
}
.team-card__hover__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.team-card__hover:hover .team-card__hover__social {
  opacity: 1;
  transform: scaleY(1);
}
.team-card__content {
  position: relative;
  padding: 35px 30px 26.3px;
}
.team-card__content::after {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  right: 74px;
  bottom: 0;
  content: "";
  width: 51px;
  height: 44px;
  background-image: url(../images/shapes/team-hover-arrow.png);
  background-position: center center;
  background-size: cover;
  transition: all 400ms ease;
}
.team-card:hover .team-card__content::after {
  visibility: visible;
  opacity: 1;
  bottom: 14px;
}
.team-card__title {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 11px;
}
.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__title a:hover {
  color: var(--accent-color);
}
.team-card:hover .team-card__title {
  color: var(--careox-white, #fff);
}
.team-card__designation {
  line-height: 1em;
  margin: 0;
  font-size: 17px;
  text-transform: capitalize;
  transition: all 300ms ease;
}
.team-card:hover .team-card__designation {
  color: var(--careox-white, #fff);
}

.team-two {
  padding: 120px 0 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-two {
    padding: 80px 0 0;
  }
}
.team-two--page {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-two--page {
    padding: 80px 0;
  }
}

.team-card-two {
  position: relative;
}
.team-card-two__hover {
  position: absolute;
  top: 32px;
  right: 30px;
}
.team-card-two__hover__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--accent-color);
  font-size: 21px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--careox-white, #fff);
  transition: all 500ms ease;
}
.team-card-two__hover__btn::after {
  display: inline-block;
  content: "+";
  transition: 300ms ease;
}
.team-card-two__hover:hover .team-card-two__hover__btn::after {
  content: "-";
}
.team-card-two__hover__social {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 3;
  margin: 0;
  opacity: 0;
  padding-top: 14px;
  transform: scaleY(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s linear;
  transform-origin: top center;
}
.team-card-two__hover__social a {
  width: 40px;
  height: 40px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 14px;
  transition: all 500ms ease;
}
.team-card-two__hover__social a + a {
  margin-top: 8px;
}
.team-card-two__hover__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.team-card-two__hover:hover .team-card-two__hover__social {
  opacity: 1;
  transform: scaleY(1);
}
.team-card-two:hover .team-card-two__hover__btn {
  background-color: var(--careox-white, #fff);
  color: var(--accent-color);
}
.team-card-two__content {
  position: relative;
  z-index: 1;
  padding: 25px 30px 26px;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  margin-bottom: 9px;
}
.team-card-two__content::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--accent-color);
  border-radius: 10px;
  transition: all 500ms ease;
  transform: translate3d(0px, 100%, 0px);
  height: 0;
  z-index: -1;
}
.team-card-two:hover .team-card-two__content::after {
  height: 100%;
  transform: translate3d(0px, 0, 0px);
}
.team-card-two__title {
  margin: 0;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 800;
  margin-bottom: 11px;
}
.team-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-two__title a:hover {
  background-size: 100% 1px;
}
.team-card-two__title a:hover {
  color: inherit;
}
.team-card-two:hover .team-card-two__title {
  color: var(--careox-white, #fff);
}
.team-card-two__designation {
  line-height: 1em;
  margin: 0;
  font-size: 17px;
  text-transform: capitalize;
  transition: all 300ms ease;
}
.team-card-two:hover .team-card-two__designation {
  color: var(--careox-white, #fff);
}
.team-card-two__image {
  position: relative;
  padding: 9px;
  margin: 0 10px;
  border: 1px dashed var(--careox-border-color, #dddddd);
  border-radius: 10px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card-two__image {
    margin: 0;
  }
}
.team-card-two__image img {
  width: 100%;
  border-radius: 10px;
}
.team-card-two:hover .team-card-two__image {
  border-color: var(--accent-color);
}

.volunteer {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .volunteer {
    padding: 0 0 80px;
  }
}
.volunteer__content {
  position: relative;
}
.volunteer__content .sec-title {
  padding-bottom: 20px;
}
.volunteer__content__text {
  margin-bottom: 32px;
}
.volunteer__area {
  position: relative;
  min-height: 584px;
  margin-right: -200px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 920px;
}
@media (max-width: 1600px) {
  .volunteer__area {
    margin-right: -78px;
  }
}
@media (max-width: 1300px) {
  .volunteer__area {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .volunteer__area {
    max-width: 675px;
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .volunteer__area {
    flex-wrap: wrap;
    gap: 30px;
    min-height: auto;
    justify-content: flex-start;
  }
}
.volunteer__area__border {
  position: absolute;
  left: 40px;
  top: 150px;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
}
@media (max-width: 1300px) {
  .volunteer__area__border {
    left: -30px;
  }
}
@media (max-width: 767px) {
  .volunteer__area__border {
    display: none;
  }
}
.volunteer__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media (max-width: 767px) {
  .volunteer__item {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
  }
}
.volunteer__item > a {
  display: inline-block;
  width: 83px;
  height: 83px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.volunteer__item > a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.volunteer__item > a::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  content: "+";
  font-size: 26px;
  color: var(--careox-white, #fff);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--careox-base-rgb, 255, 85, 40), 0.9);
  border-radius: 50%;
  transition: all 400ms ease;
  opacity: 0;
  transform: scale(0.9);
}
.volunteer__item.volunteer__item--center, .volunteer__item:hover {
  animation: none;
}
.volunteer__item > a:hover:after {
  opacity: 1;
  transform: scale(1);
}
.volunteer__item__content {
  position: relative;
  z-index: 8;
  transition: all 400ms ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
}
.volunteer__item.volunteer__item--center .volunteer__item__content, .volunteer__item:hover .volunteer__item__content {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.volunteer__item__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 5px;
}
@media (max-width: 1600px) {
  .volunteer__item__title {
    display: none;
  }
}
.volunteer__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.volunteer__item__title a:hover {
  background-size: 100% 1px;
}
.volunteer__item__title a:hover {
  color: var(--careox-base, #ff5528);
}
.volunteer__item__designation {
  margin: 0;
}
@media (max-width: 1600px) {
  .volunteer__item__designation {
    display: none;
  }
}
.volunteer__item:nth-child(2) {
  position: absolute;
  right: 20px;
  top: 0;
}
@media (max-width: 1600px) {
  .volunteer__item:nth-child(2) {
    right: 20px;
  }
}
.volunteer__item:nth-child(3) {
  position: absolute;
  right: 230px;
  top: 0;
}
@media (max-width: 1600px) {
  .volunteer__item:nth-child(3) {
    right: 210px;
  }
}
.volunteer__item:nth-child(4) {
  position: absolute;
  left: 0;
  top: 30px;
}
.volunteer__item:nth-child(5) {
  position: absolute;
  top: 280px;
  left: 45px;
}
.volunteer__item:nth-child(6) {
  position: absolute;
  bottom: 20px;
  left: 205px;
}
.volunteer__item:nth-child(7) {
  position: absolute;
  bottom: 0;
  right: 155px;
}
@media (max-width: 1600px) {
  .volunteer__item:nth-child(7) {
    right: 130px;
  }
}

.team-details {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .team-details {
    padding: 80px 0;
  }
}
.team-details__image {
  display: inline-block;
  position: relative;
}
.team-details__image img {
  max-width: 100%;
}
.team-details__content {
  position: relative;
}
@media (min-width: 1200px) {
  .team-details__content {
    padding-left: 30px;
  }
}
.team-details__title {
  text-transform: capitalize;
  margin: 0;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  margin-top: -5px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .team-details__title {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .team-details__title {
    font-size: 40px;
  }
}
.team-details__designation {
  margin: 0;
  font-size: 16px;
  margin-bottom: 20px;
}
.team-details__text {
  margin: 0;
}
.team-details__list {
  margin: 31px 0;
  padding: 0;
  list-style: none;
}
.team-details__list li {
  position: relative;
  font-size: 16px;
  padding-left: 27px;
  margin-bottom: 3px;
}
.team-details__list li > i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 15px;
  color: var(--careox-secondary, #ffa415);
}
.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}
.team-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-gray, #f1f6f7);
  font-size: 14px;
  color: var(--accent-color);
  transition: all 500ms ease;
  border-radius: 50%;
}
.team-details__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.team-details__progress {
  position: relative;
}
.team-details__progress + .team-details__progress {
  margin-top: 20px;
}
.team-details__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}
.team-details__progress__bar {
  width: 100%;
  height: 9px;
  background-color: var(--careox-gray, #f1f6f7);
  position: relative;
  border-radius: 20px;
}
.team-details__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  transition: all 700ms linear;
  border-radius: 20px;
  width: 0px;
}
.team-details__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-size: 16px;
  font-weight: 400;
}

.blog-card {
  position: relative;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  background-color: var(--careox-black, #122f2a);
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  mix-blend-mode: luminosity;
}
.blog-card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--careox-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover .blog-card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__content {
  position: relative;
  transition: all 500ms ease;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-top: none;
  border-radius: 0 0 5px 5px;
  padding: 0 0 30px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
}
.blog-card__meta li {
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--careox-special-font, "Caveat", cursive);
  flex: 0 0 auto;
  width: 50%;
  padding: 12px 15px;
  margin: -2px 0;
}
.blog-card__meta li:not(:first-of-type) {
  border-left: 1px solid var(--careox-border-color, #dddddd);
}
.blog-card__meta li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__meta li a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 1px currentColor;
}
.blog-card__meta img {
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-card__date {
  height: 32px;
  background-color: var(--careox-white, #fff);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--careox-text, #636363);
  padding: 0 20px 0 18px;
  line-height: 1.2em;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 10;
  text-transform: capitalize;
  font-weight: 600;
  border-radius: 30px;
  transition: all 300ms ease;
}
.blog-card__date i {
  display: inline-block;
  color: var(--accent-color);
  transition: all 300ms ease;
}
.blog-card:hover .blog-card__date {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.blog-card:hover .blog-card__date i {
  color: var(--careox-white, #fff);
}
.blog-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  margin: 0 30px 7px;
  font-weight: 800;
}
.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__title a:hover {
  color: var(--accent-color);
}
.blog-card__text {
  margin: 0 30px 25px;
}
.blog-card__link {
  display: inline-block;
  font-size: 16px;
  color: var(--careox-black, #122f2a);
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 145px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  margin: 0 0 0 30px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.blog-card__link__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card__link__back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}
.blog-card__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  margin-right: 11px;
  transition: all 500ms ease;
}
.blog-card__link:hover {
  color: var(--accent-color);
}
.blog-card:hover .blog-card__link__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.blog-card:hover .blog-card__link__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card--reverse {
  display: flex;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog-card--reverse {
    display: block;
  }
}
.blog-card--reverse .blog-card__content {
  border-top: 1px solid var(--careox-border-color, #dddddd);
  border-right: none;
  border-radius: 5px 0 0 5px;
}
@media (max-width: 767px) {
  .blog-card--reverse .blog-card__content {
    border-right: 1px solid var(--careox-border-color, #dddddd);
    border-bottom: none;
    border-radius: 5px 5px 0 0;
  }
}
.blog-card--reverse .blog-card__image {
  min-width: 290px;
  flex-shrink: 1;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card--reverse .blog-card__image {
    min-width: 216px;
  }
  .blog-card--reverse .blog-card__image img {
    height: 100%;
    object-fit: cover;
  }
}

.blog-one {
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0 50px;
  }
}
.blog-one--page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-one--page {
    padding: 80px 0;
  }
}
.blog-one--home .sec-title {
  text-align: center;
}
@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}

.blog-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0;
  }
}
.blog-two--home-three {
  position: relative;
}
.blog-two--home-three .blog-card__title {
  text-align: center;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 450px) {
  .blog-two--home-three .blog-card__title {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.blog-two--home-three .blog-card__text {
  text-align: center;
  max-width: 325px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 450px) {
  .blog-two--home-three .blog-card__text {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.blog-two--home-three .blog-card__link {
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.blog-two--home-three .text-end {
  margin-top: 68px;
}
@media (max-width: 767px) {
  .blog-two--home-three .text-end {
    margin: -15px 0 45px;
    text-align: left !important;
  }
}

.blog-card-two .blog-card__image {
  margin-bottom: 27px;
}
.blog-card-two .blog-card__meta {
  margin-bottom: 6px;
}
.blog-card-two .blog-card__title {
  font-size: 25px;
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .blog-card-two .blog-card__title {
    font-size: 30px;
  }
}
.blog-card-two .blog-card__date {
  bottom: 0;
}
.blog-card-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  margin-top: 12px;
}

.blog-card-list {
  position: relative;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  background-color: var(--careox-black, #122f2a);
  margin-bottom: 30px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  max-width: 100%;
  mix-blend-mode: luminosity;
}
.blog-card-list__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card-list__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card-list__image__link::before, .blog-card-list__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--careox-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card-list__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card-list:hover .blog-card-list__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-list__content {
  position: relative;
}
.blog-card-list__meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
}
.blog-card-list__meta li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 0 0;
}
.blog-card-list__meta li img {
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-card-list__meta li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-right: 10px;
}
.blog-card-list__meta li a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-list__meta li a:hover {
  color: var(--accent-color);
}
.blog-card-list__meta li.blog-card-list__meta__cats {
  position: relative;
}
.blog-card-list__meta li.blog-card-list__meta__cats a {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  border-radius: 30px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 0px 30px;
}
.blog-card-list__meta li.blog-card-list__meta__cats a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.blog-card-list__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 800;
  margin-bottom: 11px;
}
.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__title a:hover {
  color: var(--accent-color);
}
.blog-card-list__text {
  line-height: 26px;
  margin: 0 0 32px;
}
@media (min-width: 1200px) {
  .blog-card-list__text {
    padding-right: 50px;
  }
}
.blog-card-list__link {
  display: inline-block;
  font-size: 16px;
  color: var(--careox-black, #122f2a);
  font-weight: 700;
  text-align: center;
  height: 40px;
  max-width: 145px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.blog-card-list__link__front {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  perspective: 300px;
  transition: transform 500ms ease;
  transform-origin: top center;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.blog-card-list__link__back {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: bottom center;
  width: 100%;
}
.blog-card-list__link__back span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  margin-right: 11px;
  transition: all 500ms ease;
}
.blog-card-list__link:hover {
  color: var(--accent-color);
}
.blog-card-list:hover .blog-card-list__link__front {
  transform-origin: bottom center;
  transform: translateY(-100%) translateZ(150px) scaleY(0) rotateX(90deg);
}
.blog-card-list:hover .blog-card-list__link__back {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}

/*--------------------------------------------------------------
# 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__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: 5px;
  border: none;
  outline: none !important;
  color: var(--careox-text-dark, #727472);
  font-size: 16px;
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--careox-text-dark, #727472);
  border: none;
  margin: auto 0;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=tel],
.form-one textarea {
  display: block;
  width: 100%;
  height: 58px;
  background-color: transparent;
  color: var(--careox-text-dark, #727472);
  font-size: 16px;
  font-weight: 400;
  border: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.15);
  border-radius: 5px;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 150px;
  padding-top: 20px;
  margin-bottom: 10px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center center;
}
.main-footer__top {
  position: relative;
  border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
  padding: 50px 0;
  margin-bottom: 49px;
}
.main-footer__top__left {
  position: relative;
  min-height: 74px;
  padding: 11px 0 0 94px;
}
.main-footer__top__left__icon {
  font-size: 74px;
  color: var(--careox-secondary, #ffa415);
  line-height: 1;
  display: flex;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
}
.main-footer__top__left__title {
  color: var(--careox-white, #fff);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.33px;
  margin: 0;
}
.main-footer__top__left__text {
  font-size: 16px;
  color: var(--careox-text-gray, #bcbcbc);
  letter-spacing: 0.24px;
  margin: 0;
}
.main-footer__newsletter {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin-left: auto;
  margin-top: 5px;
}
@media (max-width: 767px) {
  .main-footer__newsletter {
    margin: 35px 0 0;
  }
}
.main-footer__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: var(--careox-white, #fff);
  color: var(--careox-text-gray, #bcbcbc);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
  border-radius: 5px;
}
.main-footer__newsletter input[type=text]:focus {
  color: var(--careox-black, #122f2a);
}
.main-footer__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--careox-secondary, #ffa415);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.main-footer__newsletter button[type=submit]:hover {
  color: var(--careox-base, #ff5528);
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom {
  text-align: center;
  margin-top: 20px;
}
.main-footer__bottom__inner {
  padding: 25px 0;
  border-top: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}
.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  color: var(--careox-text-gray, #bcbcbc);
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 20px;
}
.footer-widget__title {
  font-size: 22px;
  font-weight: 800;
  color: var(--careox-white, #fff);
  text-transform: capitalize;
  margin: 0;
  margin-top: 21px;
  margin-bottom: 34px;
}
.footer-widget--links-two {
  padding-left: 45px;
}
@media (max-width: 1199px) {
  .footer-widget--links-two {
    padding-left: 0;
  }
}
.footer-widget__links {
  margin-top: -10px;
  margin-bottom: -13px;
}
.footer-widget__links li {
  font-size: 16px;
  color: var(--careox-text-gray, #bcbcbc);
  font-weight: 400;
  line-height: 41px;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links li a:hover {
  color: var(--careox-white, #fff);
}
.footer-widget__info {
  margin-top: -4px;
  margin-bottom: -13px;
}
.footer-widget__info li {
  font-size: 16px;
  color: var(--careox-text-gray, #bcbcbc);
  font-weight: 400;
  line-height: 28px;
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}
.footer-widget__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info li a:hover {
  background-size: 100% 1px;
}
.footer-widget__info li a:hover {
  color: var(--careox-white, #fff);
}
.footer-widget__info__icon {
  font-size: 17px;
  color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}
.footer-widget__text {
  font-size: 16px;
  color: var(--careox-text-gray, #bcbcbc);
  letter-spacing: 0.24px;
  line-height: 29px;
  margin: 0;
  margin-bottom: 23px;
  max-width: 319px;
}
.footer-widget__box {
  display: flex;
  align-items: center;
  position: relative;
  gap: 16px;
}
.footer-widget__box__icon {
  font-size: 34px;
  color: var(--careox-secondary, #ffa415);
  line-height: 1;
  display: flex;
  align-items: center;
}
.footer-widget__box__text {
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  color: var(--careox-white, #fff);
  letter-spacing: 0.24px;
  margin: 0;
}
.footer-widget__box__text a {
  display: block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__box__text a:hover {
  background-size: 100% 1px;
}
.footer-widget__box__text a:hover {
  color: var(--careox-base, #ff5528);
}
.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 33px;
}
.footer-widget__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
  font-size: 15px;
  color: var(--careox-text-gray, #bcbcbc);
  transition: all 500ms ease;
  border-radius: 50%;
}
.footer-widget__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.footer-widget__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.footer-widget__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.contact-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(11, 11, 11, 0.8);
}
.contact-one__shape {
  position: absolute;
  left: -20px;
  bottom: 155px;
  width: 323px;
  height: 186px;
  animation: shrinkAnim 4s ease 0s infinite;
  display: none;
}
@media (min-width: 1600px) {
  .contact-one__shape {
    display: block;
  }
}
.contact-one__image {
  position: relative;
  margin-right: 20px;
  margin-top: 5px;
  max-width: 665px;
  float: right;
  z-index: 2;
}
@media (max-width: 1400px) {
  .contact-one__image {
    margin-right: 0;
  }
}
@media (max-width: 1199px) {
  .contact-one__image {
    float: left;
    margin-bottom: 50px;
  }
}
.contact-one__image__shape {
  position: absolute;
  left: -145px;
  right: 0;
  top: 26px;
  margin: auto;
  width: 91px;
  height: 91px;
  z-index: -1;
  opacity: 0.65;
  animation: blinkAnim 3s ease 0s infinite;
}
.contact-one__image img {
  max-width: inherit;
}
@media (max-width: 767px) {
  .contact-one__image img {
    max-width: 100%;
  }
}
.contact-one__image__icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 198px;
  height: 198px;
  background-color: var(--careox-secondary, #ffa415);
  border: 10px solid var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: treeMove2 4s linear 0s infinite;
}
@media (max-width: 767px) {
  .contact-one__image__icon {
    display: none;
  }
}
.contact-one__image__icon img {
  width: 105px;
}
.contact-one__image__info {
  position: absolute;
  right: 15px;
  bottom: 75px;
  padding: 0 0 0 76px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .contact-one__image__info {
    position: relative;
    right: auto;
    bottom: 0;
    transform: none;
    margin: 30px 0 0;
  }
}
.contact-one__image__info__icon {
  color: var(--careox-base, #ff5528);
  font-size: 56px;
  position: absolute;
  left: 0;
  top: -2px;
  line-height: 56px;
}
.contact-one__image__info__title {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.1;
  color: var(--careox-base, #ff5528);
}
.contact-one__image__info__text {
  font-size: 22px;
  color: var(--careox-white, #fff);
  line-height: 1.1;
  font-weight: 500;
  margin: 0;
}
.contact-one__image__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__image__info__text a:hover {
  background-size: 100% 1px;
}
.contact-one__image__info__text a:hover {
  color: var(--careox-base, #ff5528);
}
.contact-one__content {
  position: relative;
  padding: 0;
}
.contact-one .sec-title {
  position: relative;
  padding-bottom: 20px;
}
.contact-one .sec-title__title {
  color: var(--careox-white, #fff);
}
.contact-one__text {
  margin: 0;
  color: var(--careox-white, #fff);
  max-width: 490px;
  margin-bottom: 34px;
  position: relative;
}
.contact-one__form {
  position: relative;
}
.contact-one--page {
  position: relative;
}
.contact-one--page .sec-title__title {
  color: var(--careox-black, #122f2a);
}
.contact-one--page .contact-one__image__info__text {
  color: var(--careox-black, #122f2a);
}
.contact-one--page .contact-one__text {
  color: var(--careox-text, #636363);
}
.contact-one--page .form-one .bootstrap-select > .dropdown-toggle,
.contact-one--page .form-one input[type=text],
.contact-one--page .form-one input[type=email],
.contact-one--page .form-one input[type=tel],
.contact-one--page .form-one textarea {
  border-color: var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  background-color: var(--careox-gray, #f1f6f7);
  position: relative;
  z-index: 1;
}
.topbar-one::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 165px;
  height: 100%;
  background-color: var(--careox-base, #ff5528);
  content: "";
  clip-path: polygon(0 0, 100% 0, 42% 100%, 0% 100%);
}
@media (max-width: 1500px) {
  .topbar-one::after {
    display: none;
  }
}
.topbar-one__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.topbar-one__info {
  text-transform: uppercase;
  color: var(--careox-text-dark, #727472);
  letter-spacing: 0.24px;
  margin: 0;
}
.topbar-one__info span {
  color: var(--careox-base, #ff5528);
}
.topbar-one__social {
  display: flex;
  align-items: center;
  line-height: 1em;
}
.topbar-one__social__text {
  margin: 0 19px 0 0;
  color: var(--careox-text-dark, #727472);
  letter-spacing: 0.24px;
}
@media (max-width: 767px) {
  .topbar-one__social__text {
    display: none;
  }
}
.topbar-one__social a {
  width: 30px;
  height: 30px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--careox-white, #fff);
  transition: all 500ms ease;
}
.topbar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.topbar-one__social a:hover {
  color: var(--careox-white, #fff);
}
.topbar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
.topbar-one__bottom {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.topbar-one__bottom::after {
  position: absolute;
  left: 88px;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--careox-black, #122f2a);
  content: "";
  z-index: -1;
  clip-path: polygon(6.7% 0, 100% 0, 100% 100%, 0% 100%);
}
@media (max-width: 1700px) {
  .topbar-one__bottom::after {
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media (max-width: 1500px) {
  .topbar-one__bottom::after {
    display: none;
  }
}
.topbar-one__bottom__inner {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--careox-white, #fff);
  padding: 23px 0;
}
.topbar-one__bottom__inner::after {
  position: absolute;
  left: -24px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  background-color: inherit;
  border-radius: 20px 0 0 20px;
  width: 24px;
  height: 80px;
}
.topbar-one__bottom__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .topbar-one__bottom__logo img {
    max-width: 170px;
  }
}
@media (max-width: 767px) {
  .topbar-one__bottom__logo {
    width: 100%;
    justify-content: center;
  }
  .topbar-one__bottom__logo img {
    max-width: 150px;
  }
}
.topbar-one__bottom__right {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 60px;
}
@media (max-width: 1199px) {
  .topbar-one__bottom__right {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .topbar-one__bottom__right {
    display: none;
  }
}
.topbar-one__bottom__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 0;
}
@media (max-width: 991px) {
  .topbar-one__bottom__info:nth-child(3) {
    display: none;
  }
}
.topbar-one__bottom__info__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  width: 52px;
  background-color: var(--accent-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52.000000 51.000000"><g transform="translate(0.000000,51.000000) scale(0.050000,-0.050000)"><path d="M291 938 c-51 -32 -108 -85 -127 -118 -19 -33 -41 -60 -49 -60 -8 0 -15 -12 -15 -28 0 -15 -13 -38 -28 -51 -41 -33 -59 -201 -33 -297 71 -263 451 -444 667 -317 109 63 343 353 286 353 -6 0 -1 25 9 55 100 294 -431 640 -710 463z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 52.000000 51.000000"><g transform="translate(0.000000,51.000000) scale(0.050000,-0.050000)"><path d="M291 938 c-51 -32 -108 -85 -127 -118 -19 -33 -41 -60 -49 -60 -8 0 -15 -12 -15 -28 0 -15 -13 -38 -28 -51 -41 -33 -59 -201 -33 -297 71 -263 451 -444 667 -317 109 63 343 353 286 353 -6 0 -1 25 9 55 100 294 -431 640 -710 463z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  font-size: 24px;
  color: var(--careox-white, #fff);
  transition: all 500ms ease;
}
.topbar-one__bottom__info__icon::after {
  position: absolute;
  content: "";
  background-color: var(--careox-black, #122f2a);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.topbar-one__bottom__info__icon span {
  display: block;
  transition: all 500ms ease;
  transform: scale(1);
}
.topbar-one__bottom__info:hover .topbar-one__bottom__info__icon::after {
  height: 100%;
}
.topbar-one__bottom__info:hover .topbar-one__bottom__info__icon span {
  transform: scale(0.9);
}
.topbar-one__bottom__info__text {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 5px;
}
.topbar-one__bottom__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__bottom__info__text a:hover {
  background-size: 100% 1px;
}
.topbar-one__bottom__info__text a:hover {
  color: var(--careox-base, #ff5528);
}
.topbar-one__bottom__info__title {
  margin: 0;
  color: var(--careox-text-dark, #727472);
  font-size: 17px;
  line-height: 1.1;
}
.topbar-one__bottom__button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--careox-white, #fff);
  width: 50%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-right: 28px;
}
.topbar-one__bottom__button img {
  width: 65px;
  height: 66px;
  overflow: hidden;
  display: none;
  animation: shrinkAnim 3s ease 0s infinite;
}
@media (min-width: 1800px) {
  .topbar-one__bottom__button img {
    display: inline-block;
  }
}
.topbar-one__bottom__button .careox-btn {
  padding: 13px 34px;
  display: none;
}
@media (min-width: 1700px) {
  .topbar-one__bottom__button .careox-btn {
    display: inline-block;
  }
}

.topbar-two {
  position: relative;
  background-color: var(--careox-black2, #121212);
}
.topbar-two::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 14%;
  height: 101%;
  content: "";
  background-color: var(--careox-secondary, #ffa415);
  clip-path: polygon(0 0, 100% 0%, 82% 100%, 0% 100%);
}
@media (max-width: 1700px) {
  .topbar-two::before {
    width: 10%;
  }
}
@media (max-width: 1400px) {
  .topbar-two::before {
    display: none;
  }
}
.topbar-two::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 14%;
  height: 101%;
  content: "";
  background-color: var(--careox-secondary, #ffa415);
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 18% 100%);
}
@media (max-width: 1700px) {
  .topbar-two::after {
    width: 10%;
  }
}
@media (max-width: 1400px) {
  .topbar-two::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .topbar-two {
    display: none;
  }
}
.topbar-two__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
}
.topbar-two__info {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar-two__info li {
  color: var(--careox-gray, #f1f6f7);
  font-size: 14px;
}
.topbar-two__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__info li a:hover {
  background-size: 100% 1px;
}
.topbar-two__info li a:hover {
  color: var(--careox-base, #ff5528);
}
.topbar-two__info__icon {
  color: var(--careox-base, #ff5528);
  margin-right: 5px;
}
.topbar-two__nav {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topbar-two__nav li {
  color: var(--careox-gray, #f1f6f7);
  font-size: 14px;
}
.topbar-two__nav li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-two__nav li a:hover {
  background-size: 100% 1px;
}
.topbar-two__nav li a:hover {
  color: var(--careox-base, #ff5528);
}
.topbar-two__nav li:not(:first-of-type)::before {
  content: "";
  position: relative;
  margin-left: 6px;
  margin-right: 6px;
  display: inline-block;
  content: "/";
  color: inherit;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  position: absolute;
  background-color: transparent;
  left: 0;
  width: 100%;
  z-index: 9;
}
.main-header__inner {
  display: flex;
  align-items: center;
  background-color: var(--careox-black, #122f2a);
  padding: 0 40px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 25px;
  }
}
.main-header__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 1199px) {
  .main-header__right {
    width: 100%;
    margin: 0;
    justify-content: space-between;
  }
}
.main-header__cart, .main-header__search {
  font-size: 22px;
  color: var(--careox-text-gray, #bcbcbc);
  transition: all 500ms ease;
  margin-left: 20px;
  line-height: 1em;
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--careox-secondary, #ffa415);
}
.main-header__cart {
  margin-left: 50px;
  position: relative;
}
@media (max-width: 1199px) {
  .main-header__cart {
    margin-left: 32px;
  }
}
.main-header__cart::after {
  position: absolute;
  left: -25px;
  top: -6px;
  width: 1px;
  height: 35px;
  content: "";
  background-color: rgba(var(--careox-text-gray-rgb, 188, 188, 188), 0.52);
}
@media (max-width: 1199px) {
  .main-header__cart::after {
    left: -16px;
  }
}
.main-header__cart__count {
  width: 17px;
  height: 17px;
  position: absolute;
  right: -10px;
  top: -10px;
  background-color: var(--careox-secondary, #ffa415);
  border-radius: 50%;
  font-size: 8px;
  color: var(--careox-white, #fff);
  line-height: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-header__nav {
  position: relative;
}
.main-header--two {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
  border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
}
.main-header--two.sticky-header--cloned {
  background-color: var(--careox-black, #122f2a);
  border: none;
}
.main-header--two.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 35.25px;
  padding-bottom: 35.25px;
}
@media (max-width: 500px) {
  .main-header--two .main-header__logo img {
    max-width: 180px;
  }
}
@media (max-width: 1199px) {
  .main-header--two .mobile-nav__btn {
    margin-left: auto;
    margin-right: 0;
  }
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--careox-white, #fff);
}
.main-header--two .main-header__btn:hover {
  color: var(--careox-black, #122f2a);
}
.main-header--two .container-fluid {
  max-width: 100%;
}
.main-header--two.sticky-header--cloned .main-header__inner,
.main-header--two .main-header__inner {
  background-color: transparent;
  padding: 0 135px;
}
@media (max-width: 1899px) {
  .main-header--two.sticky-header--cloned .main-header__inner,
  .main-header--two .main-header__inner {
    padding: 0 85px;
  }
}
@media (max-width: 1799px) {
  .main-header--two.sticky-header--cloned .main-header__inner,
  .main-header--two .main-header__inner {
    padding: 0 25px;
  }
}
@media (max-width: 1599px) {
  .main-header--two.sticky-header--cloned .main-header__inner,
  .main-header--two .main-header__inner {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .main-header--two.sticky-header--cloned .main-header__inner,
  .main-header--two .main-header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .main-header--two.sticky-header--cloned .main-header__inner,
  .main-header--two .main-header__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-header--two .main-menu {
  margin-left: auto;
}
.main-header--two .main-menu .main-menu__list > li {
  padding-top: 51.25px;
  padding-bottom: 51.25px;
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--careox-white, #fff);
}
.main-header--two .main-header__right {
  margin-left: 0;
}
@media (min-width: 1400px) {
  .main-header--two .main-header__right {
    margin-left: 40px;
  }
}
.main-header--two .main-header__cart,
.main-header--two .main-header__search {
  color: var(--careox-white, #fff);
}
@media (max-width: 1499px) {
  .main-header--two .main-header__cart,
  .main-header--two .main-header__search {
    margin-left: 30px;
  }
}
.main-header--two .main-header__cart:hover,
.main-header--two .main-header__search:hover {
  color: var(--careox-secondary, #ffa415);
}
.main-header--two .main-header__cart::after {
  background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 1499px) {
  .main-header--two .main-header__cart::after {
    left: -15px;
  }
}
.main-header--two .careox-btn {
  margin-left: 60px;
}
@media (max-width: 1499px) {
  .main-header--two .careox-btn {
    margin-left: 25px;
    padding: 13px 25px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-header--two .careox-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header--two .careox-btn {
    display: none;
  }
}
.main-header--two .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.main-header--three {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  width: 100%;
}
.main-header--three::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 26.3%;
  height: 170px;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 103.000000"><g transform="translate(0.000000,103.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1573 l0 -486 315 -152 c1022 -493 2240 -846 3162 -916 1390 -106 2286 544 2481 1801 13 83 28 170 33 195 l10 45 -3001 0 -3000 0 0 -487z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 103.000000"><g transform="translate(0.000000,103.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M0 1573 l0 -486 315 -152 c1022 -493 2240 -846 3162 -916 1390 -106 2286 544 2481 1801 13 83 28 170 33 195 l10 45 -3001 0 -3000 0 0 -487z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom right;
  mask-position: bottom right;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--careox-white, #fff);
  z-index: -1;
  transition: 500ms ease;
}
@media (min-width: 1330px) and (max-width: 1700px) {
  .main-header--three::before {
    width: 23.3%;
  }
}
@media (max-width: 1199px) {
  .main-header--three::before {
    width: 330px;
    height: 128px;
  }
}
@media (max-width: 490px) {
  .main-header--three::before {
    width: 226px;
    height: 98px;
  }
}
.main-header--three::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 25.8%;
  height: 160px;
  content: "";
  background-image: url(../images/shapes/header-border.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: -1;
  transition: 500ms ease;
}
@media (min-width: 1330px) and (max-width: 1700px) {
  .main-header--three::after {
    width: 22.8%;
  }
}
@media (max-width: 1199px) {
  .main-header--three::after {
    width: 318px;
    height: 116px;
    background-size: cover;
  }
}
@media (max-width: 490px) {
  .main-header--three::after {
    display: none;
  }
}
.main-header--three.sticky-header--cloned {
  background-color: var(--careox-black, #122f2a);
}
.main-header--three.sticky-header--cloned::before, .main-header--three.sticky-header--cloned::after {
  display: none;
}
.main-header--three.sticky-header--cloned .main-header__logo__sticky {
  opacity: 1;
}
.main-header--three.sticky-header--cloned .main-menu .main-menu__list > li {
  padding-top: 35.25px;
  padding-bottom: 35.25px;
}
@media (max-width: 500px) {
  .main-header--three .main-header__logo img {
    max-width: 170px;
  }
}
.main-header--three .main-header__logo {
  position: relative;
}
.main-header--three .main-header__logo__sticky {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
@media (max-width: 1199px) {
  .main-header--three .mobile-nav__btn {
    margin-left: auto;
    margin-right: 0;
  }
}
.main-header--three .mobile-nav__btn span {
  background-color: var(--careox-white, #fff);
}
.main-header--three .main-header__btn:hover {
  color: var(--careox-black, #122f2a);
}
.main-header--three .container-fluid {
  max-width: 100%;
}
.main-header--three.sticky-header--cloned .main-header__inner,
.main-header--three .main-header__inner {
  background-color: transparent;
  padding: 0 135px;
}
@media (max-width: 1899px) {
  .main-header--three.sticky-header--cloned .main-header__inner,
  .main-header--three .main-header__inner {
    padding: 0 85px;
  }
}
@media (max-width: 1799px) {
  .main-header--three.sticky-header--cloned .main-header__inner,
  .main-header--three .main-header__inner {
    padding: 0 25px;
  }
}
@media (max-width: 1599px) {
  .main-header--three.sticky-header--cloned .main-header__inner,
  .main-header--three .main-header__inner {
    padding: 0 15px;
  }
}
@media (max-width: 1199px) {
  .main-header--three.sticky-header--cloned .main-header__inner,
  .main-header--three .main-header__inner {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .main-header--three.sticky-header--cloned .main-header__inner,
  .main-header--three .main-header__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.main-header--three .main-menu {
  margin-left: auto;
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 51.25px;
  padding-bottom: 51.25px;
}
@media (max-width: 1599px) {
  .main-header--three .main-menu .main-menu__list > li {
    margin-left: 40px;
  }
}
.main-header--three .main-menu .main-menu__list > li > a {
  color: var(--careox-white, #fff);
}
.main-header--three .main-header__right {
  margin-left: 0;
}
@media (min-width: 1400px) {
  .main-header--three .main-header__right {
    margin-left: 40px;
  }
}
.main-header--three .main-header__cart,
.main-header--three .main-header__search {
  color: var(--careox-white, #fff);
}
@media (max-width: 1499px) {
  .main-header--three .main-header__cart,
  .main-header--three .main-header__search {
    margin-left: 30px;
  }
}
.main-header--three .main-header__cart:hover,
.main-header--three .main-header__search:hover {
  color: var(--careox-secondary, #ffa415);
}
.main-header--three .main-header__cart::after {
  background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 1499px) {
  .main-header--three .main-header__cart::after {
    left: -15px;
  }
}
.main-header--three .careox-btn {
  margin-left: 60px;
}
@media (max-width: 1499px) {
  .main-header--three .careox-btn {
    margin-left: 25px;
    padding: 13px 20px;
  }
}
@media (min-width: 1200px) and (max-width: 1360px) {
  .main-header--three .careox-btn {
    display: none;
  }
}
@media (max-width: 767px) {
  .main-header--three .careox-btn {
    display: none;
  }
}
.main-header--three .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.main-header--four {
  position: relative;
  padding: 0 0 0 60px;
  background-color: var(--careox-white, #fff);
}
@media (max-width: 1500px) {
  .main-header--four {
    padding-left: 15px;
  }
}
@media (max-width: 1300px) {
  .main-header--four {
    padding-left: 0;
  }
  .main-header--four .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
.main-header--four.sticky-header--cloned {
  background-color: var(--careox-white, #fff);
  box-shadow: 0px 3px 18px rgba(var(--careox-black-rgb, 18, 47, 42), 0.07);
}
.main-header--four .container-fluid {
  padding-right: 0;
}
.main-header--four .main-header__inner {
  padding: 0;
  background-color: transparent;
}
@media (max-width: 767px) {
  .main-header--four .main-header__inner {
    padding: 18px 20px 18px 0;
  }
}
.main-header--four .main-menu {
  margin-left: auto;
}
.main-header--four .main-menu .main-menu__list > li > a {
  color: var(--careox-black, #122f2a);
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--careox-black, #122f2a);
}
.main-header--four .main-header__right {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .main-header--four .main-header__right {
    margin-left: auto;
    justify-content: flex-end;
  }
}
@media (max-width: 1199px) {
  .main-header--four .mobile-nav__btn {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  .main-header--four .main-header__logo img {
    max-width: 170px;
  }
}
.main-header--four .careox-btn {
  margin-right: 25px;
}
@media (max-width: 1500px) {
  .main-header--four .careox-btn {
    display: none;
  }
}
.main-header--four .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.main-header--four .main-header__cart,
.main-header--four .main-header__search {
  color: var(--careox-black, #122f2a);
}
.main-header--four .main-header__cart:hover,
.main-header--four .main-header__search:hover {
  color: var(--careox-base, #ff5528);
}
.main-header--four .main-header__cart__count {
  background-color: var(--careox-base, #ff5528);
}
.main-header--four__toggler {
  width: 92px;
  height: 92px;
  border: 0;
  outline: 0;
  background-color: var(--careox-base, #ff5528);
  padding: 0;
  align-items: center;
  justify-content: center;
  display: flex;
  margin-left: 55px;
}
@media (max-width: 1300px) {
  .main-header--four__toggler {
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .main-header--four__toggler {
    display: none;
  }
}
.main-header--four__toggler__wrapper {
  width: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: center;
  grid-gap: 5px;
}
.main-header--four__toggler span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--careox-white, #fff);
  display: block;
  border-radius: 50%;
  transition: all 500ms ease;
}
.main-header--four__toggler:hover span {
  background-color: var(--careox-black, #122f2a);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--careox-black, #122f2a);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--careox-white-rgb, 255, 255, 255), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
@media (min-width: 1200px) {
  .sticky-header--cloned .main-header__inner {
    padding: 0;
  }
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--careox-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: 27px;
  padding-bottom: 27px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 49px;
}
.main-menu .main-menu__list > li > a {
  font-size: 15px;
  display: flex;
  align-items: center;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  color: var(--careox-text-gray, #bcbcbc);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li > a::after {
  position: absolute;
  content: "";
  left: auto;
  bottom: 5px;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--careox-secondary, #ffa415);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list > li.current > a::after,
.main-menu .main-menu__list > li:hover > a::after {
  width: 100%;
  left: 0;
  right: auto;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  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(--careox-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--careox-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 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-size: 13px;
  line-height: 26px;
  color: var(--careox-text, #636363);
  font-weight: 600;
  letter-spacing: 0.4px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  display: flex;
  text-transform: uppercase;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--careox-secondary, #ffa415);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--careox-gray, #f1f6f7);
  color: var(--careox-black, #122f2a);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.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(--careox-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(--careox-black, #122f2a);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--careox-base, #ff5528);
}
.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(--careox-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--careox-black, #122f2a);
  font-weight: 700;
  letter-spacing: 0.45px;
}
.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__title a:hover {
  color: var(--careox-secondary, #ffa415);
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--careox-black3-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: 10px;
  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 {
  font-size: 14px;
  padding: 10px 20px;
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.demo-one__btn:hover {
  color: var(--careox-white, #fff);
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 30.5px;
  padding-bottom: 30.5px;
}

.home-showcase {
  margin-top: -20px;
  margin-bottom: -20px;
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--careox-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .why-choose-one {
    padding: 80px 0;
  }
}
.why-choose-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--careox-black, #122f2a);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.why-choose-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.6);
}
.why-choose-one__shape {
  position: absolute;
  right: 10%;
  top: 75px;
  width: 189px;
  height: 189px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove 4s linear 0s infinite;
  opacity: 0.22;
}
@media (max-width: 1500px) {
  .why-choose-one__shape {
    right: 5%;
  }
}
@media (max-width: 1300px) {
  .why-choose-one__shape {
    display: none;
  }
}
.why-choose-one .container {
  position: relative;
}
.why-choose-one .sec-title {
  padding-bottom: 20px;
}
.why-choose-one .sec-title__title {
  color: var(--careox-white, #fff);
}
.why-choose-one__text {
  color: var(--careox-white, #fff);
  max-width: 504px;
  margin: 0 0 34px;
}
.why-choose-one__box {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.18);
  border-radius: 20px;
  min-height: 181px;
  padding: 37px 100px 36px 173px;
  transition: all 0.4s;
  overflow: hidden;
  margin-top: 30px;
}
@media (max-width: 991px) {
  .why-choose-one__box {
    padding: 37px 90px 36px 150px;
  }
}
@media (max-width: 767px) {
  .why-choose-one__box {
    padding: 37px 25px;
  }
}
.why-choose-one__box::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--careox-black3, #000);
  opacity: 0;
  transition: all 0.4s;
  transform: scale(1, 0);
  z-index: -1;
}
.why-choose-one__box:hover {
  border-color: var(--careox-black3, #000);
}
.why-choose-one__box:hover::after {
  opacity: 1;
  transform: scale(1, 1);
}
.why-choose-one__box__icon {
  position: absolute;
  left: 51px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 93px;
  height: 93px;
  border-radius: 50%;
  overflow: hidden;
  font-size: 48px;
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
}
@media (max-width: 991px) {
  .why-choose-one__box__icon {
    left: 30px;
  }
}
@media (max-width: 767px) {
  .why-choose-one__box__icon {
    position: relative;
    left: 0;
    margin: 0 0 25px;
  }
}
.why-choose-one__box__icon span {
  transform: scale(1);
  transition: 500ms ease;
}
.why-choose-one__box:hover .why-choose-one__box__icon span {
  transform: scale(0.9);
}
.why-choose-one__box__title {
  color: var(--careox-white, #fff);
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 17px;
}
.why-choose-one__box__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.why-choose-one__box__list li {
  position: relative;
  padding-left: 25px;
  margin-top: 5px;
  color: var(--careox-white, #fff);
}
.why-choose-one__box__list__icon {
  position: absolute;
  left: 0;
  top: 3px;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--accent-color);
  font-size: 15px;
}
.why-choose-one__box__rm {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  background-color: transparent;
  position: absolute;
  z-index: 2;
  font-size: 20px;
  right: 39px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 400ms ease;
  transform: rotate(-45deg);
}
@media (max-width: 991px) {
  .why-choose-one__box__rm {
    right: 30px;
  }
}
@media (max-width: 767px) {
  .why-choose-one__box__rm {
    position: relative;
    right: 0;
    margin: 25px 0 0;
  }
}
.why-choose-one__box__rm::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--accent-color);
  opacity: 0.23;
  transition: 400ms ease;
  z-index: -1;
}
.why-choose-one__box__rm:hover {
  transform: rotate(90deg);
  color: var(--careox-white, #fff);
}
.why-choose-one__box__rm:hover::after {
  opacity: 1;
}

.why-choose-two {
  padding-top: 100px;
  background-color: var(--careox-white, #fff);
}
.why-choose-two__image {
  position: relative;
  display: inline-block;
  margin-bottom: 110px;
}
@media (min-width: 992px) {
  .why-choose-two__image {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .why-choose-two__image {
    margin-left: 120px;
  }
}
.why-choose-two__image img {
  max-width: 100%;
}
.why-choose-two__image__two {
  position: absolute;
  bottom: -50px;
  left: 0px;
  z-index: 10;
}
@media (min-width: 992px) {
  .why-choose-two__image__two {
    bottom: 0;
    left: -120px;
  }
}
.why-choose-two__image__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 11;
  animation: shapeMove 4s linear 0s infinite;
}
@media (min-width: 992px) {
  .why-choose-two__image__shape {
    bottom: auto;
    top: 200px;
    right: auto;
    left: -100px;
  }
}
.why-choose-two__image__icon {
  width: 96px;
  height: 96px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-base, #ff5528);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
@media (min-width: 992px) {
  .why-choose-two__image__icon {
    left: -48px;
  }
}
@media (min-width: 1200px) {
  .why-choose-two__content {
    padding-left: 70px;
  }
}
.why-choose-two__highlight {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  color: var(--careox-base, #ff5528);
  margin: 0;
  margin-top: -10px;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .why-choose-two__highlight {
    margin: 0;
    font-size: 20px;
    line-height: 34px;
    margin-top: -20px;
    margin-bottom: 32px;
  }
}
.why-choose-two__text {
  margin: 0;
  font-size: 15px;
  line-height: 1.875em;
}
@media (min-width: 992px) {
  .why-choose-two__text {
    font-size: 16px;
  }
}
.why-choose-two__progress {
  margin-top: 30px;
  margin-bottom: 37px;
}
.why-choose-two__progress__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.why-choose-two__progress__bar {
  width: 100%;
  height: 17px;
  border: 1px solid var(--careox-border-color, #dddddd);
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.why-choose-two__progress__inner {
  position: absolute;
  height: calc(100% - 6px);
  left: 4px;
  top: 3px;
  background-color: var(--careox-base, #ff5528);
  transition: all 700ms linear;
  width: 0px;
}
.why-choose-two__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-size: 14px;
  font-weight: 400;
}
.why-choose-two__link:hover {
  color: var(--careox-white, #fff);
}
.why-choose-two__link::after {
  background-color: var(--careox-black, #122f2a);
}
.why-choose-two__link::before {
  background-color: var(--careox-base, #ff5528);
}

.why-choose-three {
  position: relative;
  padding: 120px 0 220px;
  background-color: var(--careox-black, #122f2a);
  margin-bottom: -100px;
  z-index: 1;
}
@media (max-width: 767px) {
  .why-choose-three {
    padding: 80px 0 180px;
  }
}
.why-choose-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--careox-black, #122f2a);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.3;
}
.why-choose-three__content {
  position: relative;
}
.why-choose-three__content__text {
  font-size: 15px;
  line-height: 30px;
  color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.6);
  margin: 0;
}
.why-choose-three .sec-title__title {
  color: var(--careox-white, #fff);
}
.why-choose-three .sec-title {
  padding-bottom: 26px;
}
.why-choose-three__list {
  position: relative;
  background-color: var(--careox-black2, #121212);
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 991px) {
  .why-choose-three__list {
    margin: 50px 0 0;
  }
}
.why-choose-three__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 40px 40px 36px;
}
.why-choose-three__item:nth-child(1), .why-choose-three__item:nth-child(3) {
  border-right: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}
.why-choose-three__item:nth-child(1), .why-choose-three__item:nth-child(2) {
  border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-three__item {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 767px) {
  .why-choose-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
  }
}
.why-choose-three__item:hover .why-choose-three__item__icon span {
  transform: scale(0.8);
}
.why-choose-three__item__top {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.why-choose-three__item__icon {
  width: 57px;
  height: 57px;
  background-color: var(--careox-base, #ff5528);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--careox-white, #fff);
  font-size: 21px;
  margin-right: 18px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .why-choose-three__item__icon {
    margin-right: 12px;
  }
}
.why-choose-three__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.why-choose-three__item__title {
  color: var(--careox-white, #fff);
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
.why-choose-three__item__text {
  color: var(--careox-text-dark, #727472);
  font-size: 15px;
  line-height: 30px;
  margin: 0;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  z-index: 2;
  margin-bottom: -116px;
}
.funfact-one__list.list-unstyled {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  justify-content: space-between;
  background-color: var(--careox-white, #fff);
  border-radius: 117px;
  padding-top: 81px;
  padding-bottom: 81px;
}
@media (min-width: 1360px) {
  .funfact-one__list.list-unstyled {
    margin: 0 -90px;
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media (max-width: 1359px) {
  .funfact-one__list.list-unstyled {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .funfact-one__list.list-unstyled {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.funfact-one__item {
  display: flex;
  align-items: center;
  position: relative;
}
.funfact-one__item:hover .funfact-one__icon i {
  transform: scale(0.9);
}
.funfact-one__item:hover .funfact-one__content::before {
  left: -23px;
  opacity: 1;
  width: 23px;
}
.funfact-one__item:hover .funfact-one__content::after {
  height: 50%;
}
.funfact-one__item:hover .funfact-one__text {
  background-size: 100% 1px;
}
.funfact-one__icon {
  width: 70px;
  height: 70px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 35px;
  color: var(--careox-white, #fff);
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.5s ease;
}
.funfact-one__icon i {
  display: inline-block;
  transition: all 0.5s ease;
  transform: scale(1);
}
.funfact-one__content {
  position: relative;
  border-left: 3px solid var(--careox-border-color, #dddddd);
  padding-left: 18px;
}
.funfact-one__content::after {
  position: absolute;
  left: -3px;
  bottom: 0;
  width: 3px;
  height: 0;
  background-color: var(--accent-color);
  content: "";
  transition: all 0.5s ease;
}
.funfact-one__content::before {
  position: absolute;
  left: -3px;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 0;
  height: 3px;
  background-color: var(--accent-color);
  content: "";
  transition: all 0.7s ease;
  opacity: 0;
}
.funfact-one__count {
  margin: 0;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.54px;
  display: flex;
  align-items: center;
}
.funfact-one__text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  margin-top: 6px;
  line-height: 1.3;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.funfact-one--home-three {
  padding: 0 0 120px;
  margin: 0;
}
@media (max-width: 767px) {
  .funfact-one--home-three {
    padding-bottom: 80px;
  }
}
.funfact-one--home-three .funfact-one__list.list-unstyled {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.funfact-one--about {
  padding: 82px 0 120px;
  margin: 0;
}
@media (max-width: 767px) {
  .funfact-one--about {
    padding-bottom: 80px;
  }
}
.funfact-one--about .funfact-one__list.list-unstyled {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
}
.funfact-one--team-details {
  padding: 0;
  margin: 0;
}
.funfact-one--team-details .funfact-one__list.list-unstyled {
  margin: 0;
  padding: 120px 0;
  background-color: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  border-top: 1px solid var(--careox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .funfact-one--team-details .funfact-one__list.list-unstyled {
    padding: 80px 0;
  }
}

.funfact-two {
  position: relative;
  background-color: var(--careox-base, #ff5528);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
.funfact-two__shape {
  position: absolute;
  left: -10px;
  top: 0;
}
.funfact-two__shape img {
  animation: shapeMove 3s linear 0s infinite;
}
@media (max-width: 767px) {
  .funfact-two {
    padding: 80px 0;
  }
}
.funfact-two .sec-title {
  padding-bottom: 33px;
}
.funfact-two .sec-title__tagline,
.funfact-two .sec-title__title {
  color: var(--careox-white, #fff);
}
.funfact-two__list {
  position: relative;
  background-color: var(--careox-white, #fff);
  margin: 0 0 0 -7px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
}
@media (max-width: 991px) {
  .funfact-two__list {
    margin: 50px 0 0;
  }
}
.funfact-two__list__icon {
  width: 94px;
  height: 94px;
  background-color: var(--careox-base, #ff5528);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.funfact-two__list__icon img {
  height: 65px;
  transform: scale(1);
  transition: 500ms ease;
}
@media (max-width: 767px) {
  .funfact-two__list__icon {
    display: none;
  }
}
.funfact-two__list:hover .funfact-two__list__icon img {
  transform: scale(0.9);
}
.funfact-two__item {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 42px 58px;
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(3) {
  border-right: 1px solid var(--careox-base, #ff5528);
}
.funfact-two__item:nth-child(1), .funfact-two__item:nth-child(2) {
  border-bottom: 1px solid var(--careox-base, #ff5528);
}
@media (max-width: 1199px) {
  .funfact-two__item {
    padding-left: 30px;
    padding-right: 25px;
  }
}
@media (max-width: 991px) {
  .funfact-two__item {
    padding-left: 50px;
  }
}
@media (max-width: 767px) {
  .funfact-two__item {
    padding-left: 50px;
    flex: 0 0 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--careox-base, #ff5528);
  }
}
.funfact-two__count {
  margin: 0;
  color: var(--careox-black, #122f2a);
  font-size: 40px;
  font-family: var(--careox-font, "Rubik", sans-serif);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0px;
}
@media (min-width: 768px) {
  .funfact-two__count {
    font-size: 50px;
  }
}
.funfact-two__text {
  margin: 0;
  font-size: 18px;
  margin: 0;
}

.funfact-three {
  position: relative;
  padding: 100px 0;
  background-color: var(--careox-white, #fff);
}
@media (max-width: 767px) {
  .funfact-three {
    padding: 80px 0 50px;
  }
}
.funfact-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--careox-gray, #f1f6f7);
  z-index: 3;
}
@media (min-width: 1400px) {
  .funfact-three__bg {
    width: calc(100% - 240px);
    left: 120px;
  }
}
.funfact-three__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  z-index: 3;
  position: relative;
}
@media (max-width: 767px) {
  .funfact-three__list {
    display: block;
  }
}
.funfact-three__item {
  flex: 0 0 25%;
  max-width: 25%;
  position: relative;
}
@media (max-width: 991px) {
  .funfact-three__item {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 0 30px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 0 30px !important;
    text-align: center;
  }
}
.funfact-three__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--careox-border-color, #dddddd);
  position: absolute;
  top: 0;
  right: 54px;
}
@media (max-width: 991px) {
  .funfact-three__item:not(:last-of-type)::before {
    right: 50px !important;
  }
}
@media (max-width: 767px) {
  .funfact-three__item:not(:last-of-type)::before {
    display: none;
  }
}
.funfact-three__item:not(:first-of-type) {
  padding-left: 37px;
}
@media (max-width: 1199px) {
  .funfact-three__item:not(:first-of-type) {
    padding-left: 0;
  }
}
.funfact-three__item:nth-child(2)::before {
  right: 16px;
}
@media (max-width: 991px) {
  .funfact-three__item:nth-child(2)::before {
    display: none;
  }
}
.funfact-three__item:nth-child(3)::before {
  right: -20px;
}
.funfact-three__item:nth-child(3) {
  padding-left: 63px;
}
@media (max-width: 1199px) {
  .funfact-three__item:nth-child(3) {
    padding-left: 40px;
  }
}
.funfact-three__item:last-child {
  padding-left: 104px;
}
@media (max-width: 1199px) {
  .funfact-three__item:last-child {
    padding-left: 70px;
  }
}
.funfact-three__item:hover .funfact-three__icon::before {
  transform: scale(0.9);
}
.funfact-three__icon {
  width: 103px;
  height: 104px;
  background-color: var(--careox-base, #ff5528);
  font-size: 60px;
  color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 13px;
}
@media (max-width: 767px) {
  .funfact-three__icon {
    margin-left: auto;
    margin-right: auto;
  }
}
.funfact-three__icon::before {
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.funfact-three__count {
  margin: 0;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-font, "Rubik", sans-serif);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .funfact-three__count {
    font-size: 40px;
  }
}
.funfact-three__text {
  margin: 0;
  color: var(--careox-text, #636363);
  font-size: 16px;
  margin-top: 9px;
  margin-bottom: -6px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0 0;
  }
}
.testimonials-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--careox-gray, #f1f6f7);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 58%);
}
.testimonials-one .sec-title {
  padding-bottom: 19px;
}
.testimonials-one__text {
  position: relative;
  margin: 0 0 42px;
}
.testimonials-one__wrapper {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 80px;
  border-radius: 50px;
}
@media (min-width: 1350px) {
  .testimonials-one__wrapper {
    margin-left: 50px;
    margin-right: -120px;
    padding-right: 45px;
  }
}
@media (max-width: 991px) {
  .testimonials-one__wrapper {
    margin-left: 80px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .testimonials-one__wrapper {
    padding: 0 0 0;
    margin: 0;
    background-image: none !important;
  }
}
.testimonials-one__carousel {
  margin-left: -80px;
}
@media (max-width: 767px) {
  .testimonials-one__carousel {
    margin-left: 0;
  }
}
.testimonials-one__image {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  list-style: none;
}
.testimonials-one__image .slick-list {
  margin-top: 160px;
  padding: 10px 0 !important;
  transform: rotate(12deg);
  margin-left: -170px;
}
@media (max-width: 1400px) {
  .testimonials-one__image .slick-list {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .testimonials-one__image .slick-list {
    transform: rotate(21deg);
    margin-left: -10px;
  }
}
@media (max-width: 991px) {
  .testimonials-one__image .slick-list {
    display: none;
  }
}
.testimonials-one__image .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  border: none;
  outline: none;
  box-shadow: none;
  color: var(--careox-black, #122f2a);
  transition: all 400ms ease;
}
.testimonials-one__image .slick-arrow.next {
  position: absolute;
  left: 60px;
  top: 0;
}
.testimonials-one__image .slick-arrow:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.testimonials-one__image__item {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid var(--careox-white, #fff);
  transition: all 400ms ease;
  transform: scale(1);
  cursor: pointer;
}
@media (max-width: 1199px) {
  .testimonials-one__image__item {
    width: 106px;
    height: 106px;
  }
}
.testimonials-one__image__item img {
  width: 100%;
  height: 100%;
}
.testimonials-one__image .slick-current.slick-active.slick-center {
  transition: all 400ms ease;
}
.testimonials-one__image .slick-current.slick-active.slick-center .testimonials-one__image__item {
  border-color: var(--accent-color);
  transition: all 400ms ease;
  transform: scale(1.1);
}

.testimonials-card {
  position: relative;
  background-color: var(--careox-white, #fff);
  transition: all 500ms ease;
  padding: 60px 60px 45px 99px;
  border-radius: 0 30px 30px 0;
  margin-left: 79px;
  margin-bottom: 39px;
}
@media (max-width: 767px) {
  .testimonials-card {
    border-radius: 30px;
    padding: 40px 30px;
    margin: 40px 0;
  }
}
.testimonials-card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.testimonials-card__image {
  width: 161px;
  height: 161px;
  border: 12px solid var(--careox-white, #fff);
  border-radius: 50%;
  transition: all 500ms ease;
  position: absolute;
  left: -80px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .testimonials-card__image {
    position: relative;
    left: 0;
    margin: 0 0 25px;
    border: none;
    width: 131px;
    height: 131px;
  }
}
.testimonials-card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--accent-color);
}
.testimonials-card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.testimonials-card__rating i {
  color: var(--accent-color);
  font-size: 22px;
  letter-spacing: 6px;
}
.testimonials-card__rating i:last-child {
  color: var(--careox-border-color, #dddddd);
}
.testimonials-card__content {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 18px;
  font-style: italic;
}
.testimonials-card__name {
  margin: 0;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}
.testimonials-card__designation {
  margin: 0;
  line-height: 1;
}
.testimonials-card__quote {
  font-size: 55px;
  color: var(--careox-border-color, #dddddd);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--careox-border-color, #dddddd);
  position: absolute;
  right: 92px;
  bottom: 50px;
  line-height: 1;
}

.testimonials-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0;
  }
}
.testimonials-two__shape-one {
  position: absolute;
  left: 90px;
  top: 85px;
  width: 139px;
  height: 255px;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .testimonials-two__shape-one {
    display: none;
  }
}
.testimonials-two__shape-two {
  position: absolute;
  left: 99px;
  bottom: 100px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  animation: zoomsIn 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .testimonials-two__shape-two {
    display: none;
  }
}
.testimonials-two__shape-three {
  position: absolute;
  right: 99px;
  top: 100px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  animation: zoomsIn 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .testimonials-two__shape-three {
    display: none;
  }
}
.testimonials-two__shape-four {
  position: absolute;
  right: 120px;
  bottom: 0;
  width: 93px;
  height: 221px;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .testimonials-two__shape-four {
    display: none;
  }
}
.testimonials-two__wrapper {
  max-width: 835px;
  margin: 57px auto 0;
  position: relative;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-radius: 80px;
  padding: 0 0 38px;
}
.testimonials-two__carousel {
  position: relative;
  text-align: center;
}
.testimonials-two__carousel .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--careox-black, #122f2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-white, #fff);
  font-size: 18px;
  border-radius: 50%;
  transition: all 500ms ease;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}
.testimonials-two__carousel .slick-arrow:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.testimonials-two__carousel .slick-arrow.prev {
  position: absolute;
  left: -25px;
  top: 51px;
}
@media (max-width: 767px) {
  .testimonials-two__carousel .slick-arrow.prev {
    left: -15px;
  }
}
.testimonials-two__carousel .slick-arrow.next {
  position: absolute;
  right: -25px;
  top: 51px;
}
@media (max-width: 767px) {
  .testimonials-two__carousel .slick-arrow.next {
    right: -15px;
  }
}
.testimonials-two__item {
  position: relative;
  margin: 0;
  text-align: center;
}
.testimonials-two__item__name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
}
.testimonials-two__item__designation {
  font-size: 16px;
  line-height: 1;
  display: block;
  margin-bottom: 20px;
}
.testimonials-two__item__quote {
  margin: 0 0 22px;
}
@media (max-width: 767px) {
  .testimonials-two__item__quote {
    padding: 0 30px;
  }
  .testimonials-two__item__quote br {
    display: none;
  }
}
.testimonials-two__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 23px;
  letter-spacing: 5px;
}
.testimonials-two__item__ratings i:last-child {
  color: var(--careox-border-color, #dddddd);
}
.testimonials-two__carousel-thumb {
  max-width: 210px;
  padding: 0;
  margin: -60px auto 26px;
  position: relative;
  text-align: center;
}
.testimonials-two__carousel-thumb .slick-slide {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 25px 0;
}
.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  transition: 500ms ease;
  transform: scale(1);
}
.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  width: 100%;
  height: 100%;
  content: "";
  border: 7px solid var(--careox-secondary, #ffa415);
  visibility: hidden;
  opacity: 0;
  transition: 500ms ease;
}
.testimonials-two__carousel-thumb .slick-slide .testimonials-two__meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-two__carousel-thumb .slick-active.slick-center {
  position: relative;
  z-index: 9;
}
.testimonials-two__carousel-thumb .slick-active.slick-center .testimonials-two__meta-thumb {
  transform: scale(1.6);
}
.testimonials-two__carousel-thumb .slick-active.slick-center .testimonials-two__meta-thumb::after {
  visibility: visible;
  opacity: 1;
}

.testimonials-three {
  position: relative;
  padding: 185px 0 0;
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0 0;
  }
}
.testimonials-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 500px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.testimonials-three__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.76);
}
.testimonials-three__bg__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: auto;
  z-index: 1;
}
.testimonials-three__wrapper {
  position: relative;
  background-color: var(--careox-base, #ff5528);
  border-radius: 20px;
  z-index: 2;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 81px 0 73px;
}
@media (max-width: 767px) {
  .testimonials-three__wrapper {
    padding: 60px 20px 50px;
  }
}
.testimonials-three__wrapper .sec-title {
  padding-bottom: 31px;
}
.testimonials-three__wrapper .sec-title__title,
.testimonials-three__wrapper .sec-title__tagline {
  color: var(--careox-white, #fff);
}
.testimonials-three__wrapper .sec-title__tagline__border {
  background-color: var(--careox-white, #fff);
}
.testimonials-three__carousel {
  position: relative;
  text-align: center;
}
.testimonials-three__carousel .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: var(--careox-black, #122f2a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-white, #fff);
  font-size: 18px;
  border-radius: 50%;
  transition: all 500ms ease;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}
.testimonials-three__carousel .slick-arrow:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.testimonials-three__carousel .slick-arrow.prev {
  position: absolute;
  left: -25px;
  top: -56px;
}
@media (max-width: 767px) {
  .testimonials-three__carousel .slick-arrow.prev {
    left: -25px;
    top: 0;
  }
}
.testimonials-three__carousel .slick-arrow.next {
  position: absolute;
  right: -25px;
  top: -56px;
}
@media (max-width: 767px) {
  .testimonials-three__carousel .slick-arrow.next {
    right: -25px;
    top: 0;
  }
}
.testimonials-three__item {
  position: relative;
  margin: 0;
  text-align: center;
}
.testimonials-three__item__name {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--careox-white, #fff);
  margin-bottom: 15px;
}
.testimonials-three__item__designation {
  font-size: 16px;
  line-height: 1;
  color: var(--careox-white, #fff);
  display: block;
  margin-bottom: 20px;
}
.testimonials-three__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 23px;
  letter-spacing: 5px;
  margin-bottom: 25px;
}
.testimonials-three__item__ratings i:last-child {
  color: var(--careox-border-color, #dddddd);
}
.testimonials-three__item__quote {
  color: var(--careox-white, #fff);
  margin: 0;
}
@media (max-width: 767px) {
  .testimonials-three__item__quote br {
    display: none;
  }
}
.testimonials-three__carousel-thumb {
  max-width: 530px;
  padding: 0;
  margin: 0px auto 26px;
  position: relative;
  text-align: center;
}
.testimonials-three__carousel-thumb .slick-slide {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 25px 0;
}
.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  position: relative;
  transition: 500ms ease;
  transform: scale(1);
  margin: auto;
}
.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  margin: auto;
  width: 100%;
  height: 100%;
  content: "";
  border: 7px solid var(--careox-secondary, #ffa415);
  visibility: hidden;
  opacity: 0;
  transition: 500ms ease;
}
.testimonials-three__carousel-thumb .slick-slide .testimonials-three__meta-thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.testimonials-three__carousel-thumb .slick-active.slick-center {
  position: relative;
  z-index: 9;
}
.testimonials-three__carousel-thumb .slick-active.slick-center .testimonials-three__meta-thumb {
  transform: scale(1.58);
}
.testimonials-three__carousel-thumb .slick-active.slick-center .testimonials-three__meta-thumb::after {
  visibility: visible;
  opacity: 1;
}

.testimonials-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-page {
    padding: 80px 0;
  }
}
.testimonials-page__card {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  transition: all 500ms ease;
  padding: 113px 50px 44px 60px;
  border-radius: 20px;
  margin-top: 45px;
}
@media (max-width: 991px) {
  .testimonials-page__card {
    padding: 113px 30px 44px 30px;
  }
}
.testimonials-page__card__image {
  width: 136px;
  height: 136px;
  border: 11px solid var(--careox-white, #fff);
  border-radius: 50%;
  transition: all 500ms ease;
  position: absolute;
  left: 60px;
  top: -55px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .testimonials-page__card__image {
    left: 30px;
  }
}
.testimonials-page__card__image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 10px solid var(--accent-color);
}
.testimonials-page__card__rating {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
}
.testimonials-page__card__rating i {
  color: var(--accent-color);
  font-size: 22px;
  letter-spacing: 6px;
}
.testimonials-page__card__rating i:last-child {
  color: var(--careox-border-color, #dddddd);
}
.testimonials-page__card__content {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonials-page__card__name {
  margin: 0;
  text-transform: capitalize;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 14px;
}
.testimonials-page__card__designation {
  margin: 0;
  line-height: 1;
}
.testimonials-page__card__quote {
  font-size: 55px;
  color: var(--careox-border-color, #dddddd);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--careox-border-color, #dddddd);
  position: absolute;
  right: 92px;
  bottom: 50px;
  line-height: 1;
}
@media (max-width: 991px) {
  .testimonials-page__card__quote {
    right: 40px;
  }
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
}
.cta-one .col-lg-6 {
  padding: 0;
}
.cta-one__title {
  margin: 0;
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-size: 35px;
  font-weight: bold;
  color: var(--careox-white, #fff);
  position: relative;
  letter-spacing: 3.5px;
  z-index: 2;
  margin-bottom: 7px;
}
.cta-one__text {
  color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.9);
  margin: 0 0 19px;
  position: relative;
  z-index: 2;
}
.cta-one .careox-btn {
  position: relative;
  z-index: 1;
  color: var(--careox-black, #122f2a);
  padding: 7px 37px;
}
.cta-one .careox-btn::before {
  background-color: var(--careox-white, #fff);
}
.cta-one .careox-btn::after {
  border-color: var(--careox-white, #fff);
}
.cta-one .careox-btn:hover {
  color: var(--careox-white, #fff);
}
.cta-one__shape-middle {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  z-index: 1;
  align-items: center;
  width: 148px;
  height: 141px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: movebounce3 3s linear infinite;
}
@media (max-width: 1199px) {
  .cta-one__shape-middle {
    display: none;
  }
}
.cta-one__content {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 51px 30px 62px;
  text-align: center;
  overflow: hidden;
}
.cta-one__content::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-base-rgb, 255, 85, 40), 0.6);
}
.cta-one__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--careox-white-rgb, 255, 255, 255), 0.2);
  border-radius: 0;
  transition: all 500ms linear;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.cta-one__content:hover::before {
  -webkit-animation: zoom-hover 0.95s;
  animation: zoom-hover 0.95s;
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}
.cta-one__content__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 91px;
  height: 133px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.cta-one__content--right {
  position: relative;
}
.cta-one__content--right::after {
  background: rgba(var(--careox-black-rgb, 18, 47, 42), 0.6);
}
.cta-one__content--right .careox-btn {
  color: var(--careox-white, #fff);
}
.cta-one__content--right .careox-btn::before {
  background-color: var(--careox-secondary, #ffa415);
}
.cta-one__content--right .careox-btn::after {
  border-color: var(--careox-base, #ff5528);
}
.cta-one__content--right .careox-btn:hover {
  color: var(--careox-base, #ff5528);
}

.cta-two {
  position: relative;
  background-color: var(--careox-base, #ff5528);
  padding: 59px 0 48px;
}
.cta-two__shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  animation: shapeMove 3s linear 0s infinite;
  background-position: center bottom;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .cta-two__shape {
    display: none;
  }
}
.cta-two .sec-title {
  padding: 0;
}
.cta-two .sec-title__tagline {
  color: var(--careox-white, #fff);
}
.cta-two .sec-title__tagline__border {
  background-color: var(--careox-white, #fff);
}
.cta-two .sec-title__title {
  color: var(--careox-white, #fff);
}
@media (max-width: 991px) {
  .cta-two .sec-title__title {
    font-size: 35px;
  }
}
.cta-two__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
  margin-left: auto;
  z-index: 2;
}
@media (max-width: 767px) {
  .cta-two__button {
    margin: 30px 0 0;
    justify-content: flex-start;
  }
}
.cta-two__button img {
  width: 65px;
  height: 66px;
  animation: shrinkAnim 3s ease 0s infinite;
}
@media (max-width: 991px) {
  .cta-two__button img {
    display: none;
  }
}
.cta-two__button .careox-btn {
  color: var(--careox-black, #122f2a);
}
.cta-two__button .careox-btn:hover {
  color: var(--careox-white, #fff);
}
.cta-two__button .careox-btn::before {
  background-color: var(--careox-white, #fff);
}
.cta-two__button .careox-btn::after {
  border-color: var(--careox-white, #fff);
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .gallery-one {
    padding: 80px 0;
  }
}
.gallery-one .container-fluid {
  width: 100%;
  max-width: 1572px;
}
.gallery-one .row {
  --bs-gutter-x: 10px;
  --bs-gutter-y: 10px;
}
@media (min-width: 992px) {
  .gallery-one__carousel .owl-nav {
    display: none;
  }
}
.gallery-one__filter__list {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.gallery-one__filter__list li {
  cursor: pointer;
}
.gallery-one__filter__list li span {
  display: block;
  font-size: 14px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  background-color: var(--careox-gray, #f1f6f7);
  transition: all 500ms ease;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 20px;
  line-height: 1.2em;
}
.gallery-one__filter__list li.active span, .gallery-one__filter__list li:hover span {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  background-color: var(--careox-black, #122f2a);
}
.gallery-one__card img {
  transform: scale(1);
  max-width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-one__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--careox-secondary-rgb, 255, 164, 21), 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-one__card__hover .img-popup {
  position: relative;
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-one__card:hover .gallery-one__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-one__card__icon {
  width: 32px;
  height: 32px;
  display: block;
  position: relative;
}
.gallery-one__card__icon::after, .gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--careox-white, #fff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}
.sidebar__single {
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  padding: 40px 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding-left: 22px;
    padding-right: 20px;
  }
}
.sidebar__single--tags .sidebar__title::after {
  width: 100%;
}
.sidebar__single--search {
  padding: 0;
  border: none;
  border-radius: 50px;
}
.sidebar__single + .sidebar__single {
  margin-top: 50px;
}
.sidebar__title {
  text-transform: capitalize;
  margin: 0 0 36px;
  line-height: 1em;
  font-size: 20px;
  letter-spacing: 0.33px;
  font-weight: 700;
  position: relative;
  top: -3px;
  display: inline-block;
}
@media (min-width: 768px) {
  .sidebar__title {
    font-size: 22px;
  }
}
.sidebar__title::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 77px;
  height: 3px;
  content: "";
  background-color: var(--careox-base, #ff5528);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 55px;
  background-color: transparent;
  font-size: 16px;
  color: var(--careox-text, #636363);
  border-radius: 50px;
  border: none;
  padding-left: 30px;
  padding-right: 30px;
  transition: all 500ms ease;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: var(--careox-base, #ff5528);
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: auto;
  font-size: 16px;
  line-height: 47px;
  color: var(--careox-white, #fff);
  border-radius: 50%;
  width: 47px;
  height: 47px;
  transition: all 500ms ease;
}
.sidebar__search button[type=submit]:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.sidebar__categories {
  margin-bottom: -16px;
  margin-top: -9px;
}
.sidebar__categories li {
  position: relative;
  font-size: 16px;
  color: var(--careox-text, #636363);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 500ms ease;
  padding: 0 0 0 26px;
  margin: 0 0 10px;
}
.sidebar__categories li::before {
  position: absolute;
  left: -3px;
  content: "\ea94";
  font-family: IcoFont !important;
  transition: all 500ms ease;
  font-weight: normal;
  font-size: 25px;
}
.sidebar__categories li a {
  color: inherit;
}
.sidebar__categories li:hover {
  padding: 0 5px 0 31px;
  color: var(--careox-base, #ff5528);
}
.sidebar__categories li:hover::before {
  left: 2px;
  color: var(--careox-base, #ff5528);
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.sidebar__tags a {
  background-color: transparent;
  text-transform: capitalize;
  border: 1px solid var(--careox-border-color, #dddddd);
  font-size: 16px;
  font-weight: 400;
  border-radius: 30px;
  color: var(--careox-text, #636363);
  transition: all 500ms ease;
  display: inline-flex;
  line-height: 28px;
  padding: 5px 21px;
}
.sidebar__tags a:hover {
  color: var(--careox-white, #fff);
  border-color: var(--careox-base, #ff5528);
  background-color: var(--careox-base, #ff5528);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 15px;
}
.sidebar__posts__image img {
  max-width: 100%;
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: var(--careox-text, #636363);
  font-size: 14px;
  margin-bottom: 7px;
}
.sidebar__posts__meta i {
  font-size: 13px;
}
.sidebar__posts__title {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  line-height: 23px;
}
.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(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__content {
  position: relative;
}
.blog-details__image {
  position: relative;
  margin-bottom: 30px;
}
.blog-details__image img {
  max-width: 100%;
  height: auto;
}
.blog-details__top-meta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 24px;
}
.blog-details__top-meta li {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 0 0;
}
.blog-details__top-meta li img {
  border: 2px solid var(--careox-secondary, #ffa415);
  border-radius: 50%;
  margin-right: 10px;
  width: 32px !important;
}
.blog-details__top-meta li i {
  color: var(--careox-secondary, #ffa415);
  font-size: 20px;
  margin-right: 10px;
}
.blog-details__top-meta li a {
  color: inherit;
  transition: all 500ms ease;
}
.blog-details__top-meta li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.blog-details__top-meta li.blog-details__top-meta__cats {
  position: relative;
}
.blog-details__top-meta li.blog-details__top-meta__cats a {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  border-radius: 30px;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 700;
  padding: 0px 30px;
}
.blog-details__top-meta li.blog-details__top-meta__cats a:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.blog-details__title {
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 22px;
}
.blog-details__text {
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .blog-details__text {
    padding-right: 50px;
  }
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 46px;
  margin-bottom: 55px;
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title {
  text-transform: capitalize;
  margin: 0;
  line-height: 1em;
  font-size: 20px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 768px) {
  .blog-details__tags__title {
    font-size: 22px;
  }
}
.blog-details__tags .sidebar__tags a {
  border: none;
  background-color: var(--careox-gray, #f1f6f7);
}
.blog-details__tags .sidebar__tags a:hover {
  background-color: var(--careox-base, #ff5528);
}
.blog-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.blog-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-gray, #f1f6f7);
  font-size: 14px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  border-radius: 50%;
}
.blog-details__social a:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-one {
    margin-top: 55px;
  }
}
.comments-one__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 992px) {
  .comments-one__title {
    font-size: 30px;
  }
}
.comments-one__list {
  margin: 0;
  margin-top: 35px;
}
@media (min-width: 768px) {
  .comments-one__card {
    display: flex;
    align-items: flex-start;
  }
}
.comments-one__card:not(:first-of-type) {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--careox-border-color, #dddddd);
}
@media (min-width: 1200px) {
  .comments-one__card:not(:first-of-type) {
    margin-top: 50px;
    padding-top: 50px;
  }
}
@media (min-width: 768px) {
  .comments-one__card__image {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .comments-one__card__image {
    margin-right: 45px;
  }
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  font-size: 20px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .comments-one__card__title {
    margin-bottom: 21px;
  }
}
.comments-one__card__date {
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-size: 16px;
  margin-left: 20px;
  color: var(--careox-text, #636363);
}
.comments-one__card__text {
  margin: 0;
  margin-bottom: 20px;
  max-width: 560px;
}
@media (min-width: 768px) {
  .comments-one__card__text {
    margin-bottom: 0;
  }
}
.comments-one__card__reply {
  padding: 6px 20px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .comments-one__card__reply {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-form {
    margin-top: 55px;
  }
}
.comments-form__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 25px;
  color: var(--careox-black, #122f2a);
  font-weight: bold;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 992px) {
  .comments-form__title {
    font-size: 30px;
  }
}
.comments-form__form {
  margin-top: 45px;
}
.comments-form .form-one .bootstrap-select > .dropdown-toggle,
.comments-form .form-one input[type=text],
.comments-form .form-one input[type=email],
.comments-form .form-one input[type=tel],
.comments-form .form-one textarea {
  border: 1px solid var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product {
    padding: 80px 0;
  }
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: -5px;
}
.product__search {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.product__search form {
  border-radius: 0;
  position: relative;
}
.product__search form input[type=text] {
  width: 100%;
  height: 64px;
  background-color: transparent;
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--careox-font, "Rubik", sans-serif);
  font-size: 14px;
  color: var(--careox-text, #636363);
  border: 1px solid var(--careox-border-color, #dddddd);
  outline: none;
  font-weight: 500;
  border-radius: 0;
}
.product__price-ranger {
  background-color: var(--careox-gray, #f1f6f7);
  padding: 30px;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger {
    padding: 30px 20px;
  }
}
.product__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--careox-white, #fff);
  border: none;
  height: 5px;
  border-radius: 0;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--careox-base, #ff5528);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--careox-base, #ff5528);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 18px 0 0 0px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--careox-text, #636363);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--careox-font, "Rubik", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--careox-text, #636363);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background-color: var(--careox-white, #fff);
  font-family: var(--careox-font, "Rubik", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--careox-black, #122f2a);
  font-size: 10px;
  letter-spacing: var(--careox-letter-space, 0.1em);
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  border-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(var(--careox-black-rgb, 18, 47, 42), 0.07);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger .ranger-min-max-block input[type=submit] {
    padding: 0 15px;
  }
}
.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.product__categories {
  background-color: var(--careox-gray, #f1f6f7);
  padding: 30px;
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -20px;
}
.product__categories ul li {
  position: relative;
  margin: 0 0 4px;
}
.product__categories ul li a {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 24px;
  font-size: 15px;
  text-transform: capitalize;
  color: var(--careox-text, #636363);
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  padding: 9px 15px 11px;
}
.product__categories ul li a::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  transition: all 500ms ease;
  font-size: 16px;
  margin-right: 10px;
  color: var(--careox-base, #ff5528);
}
.product__categories ul li a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--careox-white, #fff);
  z-index: -1;
  transform: scale(1, 0);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.product__categories ul li:hover a, .product__categories ul li.active a {
  color: var(--careox-black, #122f2a);
  padding-left: 27px;
}
.product__categories ul li:hover a::after, .product__categories ul li.active a::after {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: top center;
}
.product__categories ul li:hover a span, .product__categories ul li.active a span {
  color: var(--careox-base, #ff5528);
}
.product__categories ul li.active a {
  font-weight: 600;
}
.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 {
  margin: 0;
  font-weight: 500;
  font-size: 17px;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 20px;
  }
}
.product__showing-sort {
  margin: 0;
  font-size: 18px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 340px !important;
  font-family: var(--careox-font, "Rubik", sans-serif);
}
@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !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 {
  position: relative;
  height: 64px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--careox-gray, #f1f6f7) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--careox-text, #636363) !important;
  font-size: 14px;
  line-height: 64px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
  text-transform: capitalize;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 16px;
  color: var(--careox-text, #636363);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--careox-border-color, #dddddd);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 10px 30px;
  color: var(--careox-text, #636363);
  background-color: var(--careox-gray, #f1f6f7);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  border-color: var(--careox-base, #ff5528);
}
.product__item {
  position: relative;
  background-color: var(--careox-white, #fff);
  border: 1px solid var(--careox-border-color, #dddddd);
  transition: all 500ms ease;
}
.product__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.product__item__img {
  background-color: var(--careox-white, #fff);
  position: relative;
  overflow: hidden;
}
.product__item__img 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: 40px;
  height: 40px;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 50%;
  color: var(--careox-black, #122f2a);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-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: 10px;
}
.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: 30px 20px;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--careox-base, #ff5528);
  letter-spacing: 4.5px;
  margin-bottom: 4px;
}
.product__item__title {
  font-size: 20px;
  line-height: 26px;
  text-transform: capitalize;
  font-weight: bold;
  margin: 0;
  margin-bottom: 6px;
}
.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(--careox-base, #ff5528);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--careox-text, #636363);
  line-height: 1em;
  font-weight: 400;
  margin-bottom: 20px;
}
.product__item__price__offer {
  text-decoration: line-through;
  color: var(--careox-border-color, #dddddd);
  margin-left: 10px;
}
.product__item__link {
  padding: 6px 24px;
  font-size: 13px;
}
.product__item__link::before {
  background-color: var(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}
.product-details__img {
  position: relative;
  border: 1px solid var(--careox-border-color, #dddddd);
}
.product-details__img img {
  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(--careox-black, #122f2a);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--careox-base, #ff5528);
}
.product-details__content {
  position: relative;
  margin: -8px 0 0 0;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 17px;
}
.product-details__title {
  font-size: 34px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
}
.product-details__price {
  font-size: 24px;
  line-height: 26px;
  color: var(--careox-base, #ff5528);
  font-weight: 500;
  margin: 0 0 0 28px;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 3px;
  font-size: 16px;
  color: var(--careox-base, #ff5528);
}
.product-details__review a {
  display: inline-block;
  color: var(--careox-text, #636363);
  font-size: 15px;
  letter-spacing: 0;
  margin-left: 16px;
  font-weight: 500;
  transition: all 500ms ease;
}
.product-details__review a:hover {
  color: var(--careox-base, #ff5528);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--careox-border-color, #dddddd);
  margin: 22px 0 21px;
}
.product-details__excerpt {
  margin: 0;
}
.product-details__excerpt-text1 {
  margin: 0 0 31px;
}
.product-details__excerpt-text2 {
  margin: 0;
}
@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 20px 0 30px;
}
.product-details__quantity-title {
  margin: 0;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  margin-right: 35px;
  font-weight: 700;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 50px;
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 50px;
  border: 1px solid var(--careox-border-color, #dddddd);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--careox-font, "Rubik", sans-serif);
  color: var(--careox-text, #636363);
  padding-left: 30px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--careox-text, #636363);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border: none;
  border-left: 1px solid var(--careox-border-color, #dddddd);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--careox-border-color, #dddddd);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--careox-base, #ff5528);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.product-details__socials__title {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
  margin-right: 10px;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-gray, #f1f6f7);
  font-size: 14px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  border-radius: 50%;
}
.product-details__socials a:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 52px 0 0;
}
.product-details__description__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-weight: bold;
}
.product-details__description__text {
  margin-bottom: 30px;
}
.product-details__description__lists {
  margin: 0 0 30px;
  padding: 0;
}
.product-details__description__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 36px;
  font-weight: 500;
  color: var(--careox-black, #122f2a);
}
.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: var(--careox-base, #ff5528);
}
.product-details__comment {
  border-top: 1px solid var(--careox-border-color, #dddddd);
  margin: 55px 0 0;
  padding: 52px 0 0;
  position: relative;
}
.product-details__review-title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 44px;
  font-weight: 700;
}
.product-details__comment-box {
  position: relative;
  padding: 15px 0 64px 212px;
  margin-bottom: 50px;
  min-height: 166px;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
  }
}
.product-details__comment-box__thumb {
  width: 166px;
  height: 166px;
  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 {
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 20px;
  font-weight: bold;
  color: var(--careox-black, #122f2a);
}
.product-details__comment-box__date {
  font-size: 15px;
  line-height: 26px;
  display: inline-block;
  text-transform: inherit;
  color: var(--careox-base, #ff5528);
  font-family: var(--careox-font, "Rubik", sans-serif);
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 0 7px;
  text-transform: capitalize;
}
.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: 6px;
  font-size: 16px;
  color: var(--careox-base, #ff5528);
}
@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}
.product-details__form {
  position: relative;
  margin: 51px 0 0;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: bold;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--careox-base, #ff5528);
  margin: 0 0 25px;
}
.product-details__form-ratings__label {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--careox-text, #636363);
  margin: 0 17px 0 0;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form .bootstrap-select > .dropdown-toggle,
.product-details__form__form input[type=text],
.product-details__form__form input[type=email],
.product-details__form__form input[type=tel],
.product-details__form__form textarea {
  border-color: var(--careox-border-color, #dddddd);
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}
.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 {
  color: var(--careox-black, #122f2a);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0 0 24px;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-transform: capitalize;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--careox-border-color, #dddddd) !important;
  box-shadow: none;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 18px;
  font-weight: 500;
  color: var(--careox-text, #636363);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  padding: 30px 0;
  letter-spacing: 0;
}
.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: 110px;
  height: 107px;
  background-color: var(--careox-white, #fff);
  border: 1px solid var(--careox-border-color, #dddddd);
  margin-right: 34px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  font-size: 20px;
  text-transform: capitalize;
  margin: 0;
  font-weight: bold;
  color: var(--careox-black, #122f2a);
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: var(--careox-base, #ff5528);
}
.cart-page__table__remove {
  display: block;
  color: var(--careox-black, #122f2a);
  font-size: 24px;
}
.cart-page__table__remove:hover {
  color: var(--careox-base, #ff5528);
}
.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: 58px;
  width: 375px;
  border: none;
  background-color: var(--careox-gray, #f1f6f7);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 15px;
  color: var(--careox-text, #636363);
  font-family: var(--careox-font, "Rubik", sans-serif);
  display: block;
  font-weight: 400;
  margin-right: 10px;
  border-radius: 30px;
}
@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;
  padding: 0;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}
.cart-page__cart-total li {
  display: block;
  font-size: 20px;
  color: var(--careox-black, #122f2a);
  text-transform: capitalize;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  font-weight: 700;
  margin: 0 0 0px;
}
@media (max-width: 991px) {
  .cart-page__cart-total li span {
    display: inline-block;
    min-width: 172px;
  }
}
.cart-page__cart-total-amount {
  font-size: 16px;
  color: var(--careox-text, #636363);
  font-weight: 500;
  text-transform: inherit;
  font-family: var(--careox-font, "Rubik", sans-serif);
  display: inline-block;
  min-width: 172px;
}
.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 .checkout::before {
  background-color: var(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__notice {
  line-height: 26px;
  margin: 0 0 16px;
}
.checkout-page__notice a {
  color: inherit;
  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__notice a:hover {
  color: var(--careox-base, #ff5528);
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  font-size: 30px;
  text-transform: capitalize;
  margin: 0 0 34px;
  font-weight: bold;
}
@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 {
  font-size: 30px;
  text-transform: capitalize;
  margin: 0 0 34px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 28px;
  }
}
.checkout-page__shipping-address__title input[type=checkbox] {
  display: none;
}
.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}
.checkout-page__shipping-address__title label span:before {
  position: absolute;
  top: 0;
  left: 6px;
  line-height: 20px;
  display: inline-block;
  color: var(--careox-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__shipping-address__title input[type=checkbox] + label span {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 19px;
  height: 19px;
  background-color: var(--careox-base, #ff5528);
  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__shipping-address__title input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.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] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--careox-gray, #f1f6f7);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 15px;
  color: var(--careox-text, #636363);
  font-family: var(--careox-font, "Rubik", sans-serif);
  display: block;
  font-weight: 400;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--careox-font, "Rubik", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 58px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--careox-gray, #f1f6f7) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--careox-text, #636363) !important;
  font-size: 15px;
  line-height: 58px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  color: var(--careox-text, #636363);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--careox-border-color, #dddddd);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 15px;
  font-weight: 400;
  padding: 15px 30px;
  color: var(--careox-text, #636363);
  background-color: var(--careox-gray, #f1f6f7);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  border-color: var(--careox-base, #ff5528);
}
.checkout-page__input-box textarea {
  font-size: 15px;
  font-weight: 400;
  color: var(--careox-text, #636363);
  height: 123px;
  width: 100%;
  background-color: var(--careox-gray, #f1f6f7);
  font-family: var(--careox-font, "Rubik", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}
.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(--careox-text, #636363);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 6px;
  line-height: 20px;
  display: inline-block;
  color: var(--careox-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  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(--careox-base, #ff5528);
  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__your-order {
  position: relative;
  margin: 32px 0 0;
}
.checkout-page__your-order__title {
  font-size: 30px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: bold;
}
.checkout-page__your-order .careox-btn {
  padding: 16px 49.5px 17px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--careox-black, #122f2a);
  text-transform: capitalize;
  font-weight: 700;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  font-weight: bold;
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--careox-text, #636363);
  margin: 0;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}
.checkout-page__payment {
  background-color: var(--careox-gray, #f1f6f7);
  padding: 45px 50px 17px;
  min-height: 295px;
  margin-bottom: 30px;
}
@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;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  cursor: pointer;
  font-weight: bold;
  color: var(--careox-black, #122f2a);
}
.checkout-page__payment__title::before {
  content: "";
  width: 19px;
  height: 19px;
  background-color: var(--careox-white, #fff);
  border: 2px solid var(--careox-border-color, #dddddd);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 0;
  line-height: 19px;
  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(--careox-base, #ff5528);
  border-color: var(--careox-base, #ff5528);
  content: "\f00c";
  color: var(--careox-white, #fff);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 39px;
  font-size: 15px;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .login-page {
    padding: 80px 0;
  }
}
.login-page__wrap {
  position: relative;
  max-width: 970px;
  padding: 60px;
  background-color: var(--careox-gray, #f1f6f7);
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .login-page__wrap {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .login-page__wrap {
    padding: 50px 25px;
  }
}
.login-page__wrap__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.login-page__form {
  position: relative;
  z-index: 1;
  display: block;
}
.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.login-page__form-input-box input[type=text],
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
  height: 58px;
  width: 100%;
  border: 1px solid var(--careox-border-color, #dddddd);
  background-color: var(--careox-white, #fff);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--careox-text, #636363);
  display: block;
  font-weight: 400;
  border-radius: 5px;
  transition: all 400ms ease;
}
.login-page__form-input-box input[type=text]:focus,
.login-page__form-input-box input[type=email]:focus,
.login-page__form-input-box input[type=password]:focus {
  border-color: var(--careox-secondary, #ffa415);
}
.login-page__check-forgot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .login-page__check-forgot {
    display: block;
  }
}
.login-page__checked-box {
  position: relative;
}
.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--careox-text, #636363);
  font-size: 16px;
  text-transform: none;
  cursor: pointer;
}
.login-page__checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--careox-border-color, #dddddd);
  border-right: 2px solid var(--careox-border-color, #dddddd);
  content: "";
  width: 8px;
  height: 12px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  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: 0;
  left: 0;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background: transparent;
  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;
  border: 1px solid var(--careox-border-color, #dddddd);
}
.login-page__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.login-page__form-forgot-password {
  position: relative;
}
@media (max-width: 767px) {
  .login-page__form-forgot-password {
    margin-top: 20px;
  }
}
.login-page__form-forgot-password a {
  font-size: 16px;
  color: var(--careox-secondary, #ffa415);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
  color: var(--careox-base, #ff5528);
}
.login-page .careox-btn {
  border-radius: 5px;
}
.login-page .careox-btn::after, .login-page .careox-btn::before {
  border-radius: 5px;
}

.register-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .register-page {
    padding: 80px 0;
  }
}
.register-page__wrap {
  position: relative;
  max-width: 970px;
  padding: 60px;
  background-color: var(--careox-gray, #f1f6f7);
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .register-page__wrap {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .register-page__wrap {
    padding: 50px 25px;
  }
}
.register-page__wrap__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 30px;
}
.register-page__form {
  position: relative;
  z-index: 1;
  display: block;
}
.register-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.register-page__form-input-box input[type=text],
.register-page__form-input-box input[type=email],
.register-page__form-input-box input[type=password] {
  height: 58px;
  width: 100%;
  border: 1px solid var(--careox-border-color, #dddddd);
  background-color: var(--careox-white, #fff);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--careox-text, #636363);
  display: block;
  font-weight: 400;
  border-radius: 5px;
  transition: all 400ms ease;
}
.register-page__form-input-box input[type=text]:focus,
.register-page__form-input-box input[type=email]:focus,
.register-page__form-input-box input[type=password]:focus {
  border-color: var(--careox-secondary, #ffa415);
}
.register-page__checked-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 27px;
}
.register-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 45px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--careox-text, #636363);
  font-size: 16px;
  text-transform: none;
  cursor: pointer;
}
.register-page__checked-box label span:before {
  position: absolute;
  top: 4px;
  left: 6px;
  display: block;
  border-bottom: 2px solid var(--careox-border-color, #dddddd);
  border-right: 2px solid var(--careox-border-color, #dddddd);
  content: "";
  width: 8px;
  height: 12px;
  pointer-events: none;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.register-page__checked-box input[type=checkbox] {
  display: none;
}
.register-page__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  background: transparent;
  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;
  border: 1px solid var(--careox-border-color, #dddddd);
}
.register-page__checked-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.register-page .careox-btn {
  border-radius: 5px;
}
.register-page .careox-btn::after, .register-page .careox-btn::before {
  border-radius: 5px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .error-404 {
    padding: 80px 0;
  }
}
.error-404__image {
  position: relative;
  margin-bottom: 45px;
}
.error-404__image img {
  max-width: 100%;
  height: auto;
  animation: leafMove 4s linear 0s infinite;
}
.error-404__title {
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.45px;
  margin-bottom: 15px;
  position: relative;
}
.error-404__text {
  margin: 0;
  margin-bottom: 40px;
}
.error-404__search {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  max-width: 550px;
}
.error-404__search input[type=text] {
  border: none;
  outline: none;
  display: block;
  background-color: var(--careox-gray, #f1f6f7);
  color: var(--careox-text, #636363);
  font-size: 16px;
  width: 100%;
  max-width: 550px;
  padding-left: 30px;
  height: 58px;
}
.error-404__search__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 20px;
}
@media (min-width: 768px) {
  .error-404__search__btn {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  padding: 120px 0;
  counter-reset: count;
}
@media (max-width: 767px) {
  .faq-one {
    padding: 80px 0;
  }
}
.faq-one--page {
  padding: 120px 0 90px;
}
@media (max-width: 767px) {
  .faq-one--page {
    padding: 80px 0 50px;
  }
}
.faq-one__content {
  position: relative;
}
@media (max-width: 991px) {
  .faq-one__content {
    margin-bottom: 35px;
  }
}
.faq-one__content .sec-title {
  padding-bottom: 20px;
}
.faq-one__content__text {
  max-width: 504px;
  margin: 0 0 34px;
}
.faq-one__accordion {
  position: relative;
}
.faq-one__accordion .accrodion {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  margin-bottom: 30px;
  border-radius: 10px;
  counter-increment: count;
}
.faq-one__accordion .accrodion-title {
  padding: 25px 30px 28px;
  padding-right: 45px;
  cursor: pointer;
}
.faq-one__accordion .accrodion-title h4 {
  font-weight: 800;
  color: var(--careox-black, #122f2a);
  font-size: 20px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
}
.faq-one__accordion .accrodion-title__number {
  display: inline-block;
  position: relative;
  color: var(--accent-color);
  width: 35px;
  height: 20px;
  top: 4px;
}
.faq-one__accordion .accrodion-title__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-one__accordion .accrodion-title__number::after {
  content: ".";
  position: absolute;
  top: -2px;
  right: -3px;
  bottom: 0;
  margin: auto;
}
.faq-one__accordion .accrodion-title__icon {
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  right: -33px;
  transform: translateY(-50%);
}
.faq-one__accordion .accrodion-title__icon::after {
  position: absolute;
  top: 8px;
  right: 0;
  content: "\eab2";
  font-family: IcoFont !important;
  font-size: 26px;
  font-weight: normal;
  color: var(--accent-color);
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-one__accordion .active .accrodion-title__icon::after {
  content: "\eab9";
}
.faq-one__accordion .accrodion-content .inner {
  padding: 0px 30px 24px;
  margin-top: -3px;
}
.faq-one__accordion .accrodion-content p {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
.faq-one__image {
  position: relative;
  z-index: 1;
  text-align: right;
  max-width: 570px;
  margin: 90px 0 0;
}
@media (max-width: 767px) {
  .faq-one__image {
    margin: 10px 0 0;
  }
}
.faq-one__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  clip-path: polygon(0 0, 100% 23%, 100% 100%, 0% 100%);
}
.faq-one__image__left {
  position: absolute;
  left: 0;
  bottom: -85px;
  max-width: 233px;
}
@media (max-width: 767px) {
  .faq-one__image__left {
    display: none;
  }
}
.faq-one__image__left img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 10px solid var(--careox-white, #fff);
  animation: movebounce2 3s linear 0s infinite;
}
.faq-one__image__right {
  position: absolute;
  right: -140px;
  top: -99px;
  max-width: 285px;
}
@media (max-width: 767px) {
  .faq-one__image__right {
    display: none;
  }
}
.faq-one__image__right img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 10px solid var(--careox-white, #fff);
  animation: movebounce3 4s linear infinite;
}
.faq-one__image__shape-top {
  position: absolute;
  right: 45px;
  top: 0;
  z-index: -1;
}
@media (max-width: 767px) {
  .faq-one__image__shape-top {
    display: none;
  }
}
.faq-one__image__shape-top img {
  max-width: 100%;
  height: auto;
  animation: rotated 10s infinite linear;
}
.faq-one__image__shape-bottom {
  position: absolute;
  right: -50px;
  bottom: -50px;
  z-index: -1;
}
@media (max-width: 767px) {
  .faq-one__image__shape-bottom {
    display: none;
  }
}
.faq-one__image__shape-bottom img {
  max-width: 100%;
  height: auto;
  opacity: 0.3;
  animation: zoomsIn 3s linear 0s infinite;
}
.faq-one__text {
  font-size: 24px;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 33px;
}
@media (max-width: 1199px) {
  .faq-one__text {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .faq-one__text {
    margin-top: 20px;
    display: block;
    text-align: center;
  }
}
.faq-one__text > span {
  color: var(--careox-base, #ff5528);
  margin-right: 7px;
}
.faq-one__text .careox-btn {
  margin-left: 16px;
  padding: 3px 32px;
}
.faq-one__text .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.pricing-one {
  position: relative;
  padding: 30px 0 120px;
}
.pricing-one--page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .pricing-one--page {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .pricing-one {
    padding: 80px 0;
  }
}
.pricing-one__card {
  position: relative;
  z-index: 2;
  background-color: var(--careox-white, #fff);
  border: 1px solid #ecf2fc;
  border-top: none;
  border-radius: 100px 100px 0 0;
  padding: 0 0 48px;
  transition: 500ms ease;
}
@media (max-width: 1199px) {
  .pricing-one__card {
    max-width: 370px;
    margin: auto;
  }
}
.pricing-one__card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}
.pricing-one__card__top {
  position: relative;
  z-index: 2;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 100px;
  padding: 52px 20px 52px 175px;
  overflow: hidden;
  margin-bottom: 45px;
  text-align: left;
}
.pricing-one__card__top__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  transition: all 500ms ease;
  height: 0;
  z-index: -1;
}
.pricing-one__card__top__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--careox-black, #122f2a);
  opacity: 0.7;
  content: "";
}
.pricing-one__card:hover .pricing-one__card__top__bg {
  height: 100%;
}
.pricing-one__card__icon {
  width: 102px;
  height: 102px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 54px;
  color: var(--accent-color);
  margin: auto;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 45px;
  bottom: 0;
  transition: 500ms ease;
}
.pricing-one__card__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.13;
  content: "";
  transition: 500ms ease;
  z-index: -1;
}
.pricing-one__card:hover .pricing-one__card__icon {
  color: var(--careox-white, #fff);
}
.pricing-one__card:hover .pricing-one__card__icon::after {
  opacity: 1;
}
.pricing-one__card__title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 12px;
  font-family: var(--careox-font, "Rubik", sans-serif);
  transition: 300ms ease;
}
.pricing-one__card__price {
  font-size: 43px;
  font-weight: 700;
  margin: 0;
  transition: 300ms ease;
}
.pricing-one__card__price span {
  display: inline-block;
  font-size: 16px;
  margin-left: 5px;
}
.pricing-one__card:hover .pricing-one__card__price, .pricing-one__card:hover .pricing-one__card__title {
  color: var(--careox-white, #fff);
}
.pricing-one__card__list {
  margin: 0 0 44px;
  padding: 0;
  list-style: none;
  transition: all 0.5s;
}
.pricing-one__card__list li {
  list-style: none;
  font-size: 16px;
  transition: 300ms ease;
  margin-bottom: 17px;
}
.pricing-one__card__list li i {
  font-size: 14px;
  margin-right: 7px;
}
.pricing-one__card .careox-btn::before {
  background-color: var(--accent-color);
}
.pricing-one__card .careox-btn::after {
  border-color: var(--accent-color);
}
.pricing-one__card .careox-btn:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Benefit
--------------------------------------------------------------*/
.benefit-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .benefit-one {
    padding: 80px 0;
  }
}
.benefit-one__content {
  position: relative;
}
.benefit-one__content .sec-title {
  padding-bottom: 19px;
}
.benefit-one__content__text {
  margin: 0 0 30px;
}
@media (min-width: 1200px) {
  .benefit-one__content__text {
    padding-right: 70px;
  }
}
.benefit-one__content__image {
  position: relative;
}
.benefit-one__content__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.benefit-one__right {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-radius: 10px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 991px) {
  .benefit-one__right {
    margin-top: 40px;
  }
}
@media (max-width: 530px) {
  .benefit-one__right {
    grid-template-columns: repeat(1, 1fr);
  }
}
.benefit-one__right::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--careox-border-color, #dddddd);
}
@media (max-width: 530px) {
  .benefit-one__right::after {
    display: none;
  }
}
.benefit-one__right::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--careox-border-color, #dddddd);
}
@media (max-width: 530px) {
  .benefit-one__right::before {
    display: none;
  }
}
.benefit-one__fact {
  position: relative;
  text-align: center;
  margin: 10px;
  padding: 30px 20px;
  overflow: hidden;
}
.benefit-one__fact:first-child {
  border-radius: 10px 0 0 0;
}
@media (max-width: 530px) {
  .benefit-one__fact:first-child {
    border-radius: 10px 10px 0 0;
  }
}
.benefit-one__fact:nth-child(2) {
  border-radius: 0 10px 0 0;
}
@media (max-width: 530px) {
  .benefit-one__fact:nth-child(2) {
    border-radius: 0;
  }
}
.benefit-one__fact:nth-child(3) {
  border-radius: 0 0 0 10px;
}
@media (max-width: 530px) {
  .benefit-one__fact:nth-child(3) {
    border-radius: 0;
  }
}
.benefit-one__fact:nth-child(4) {
  border-radius: 0 0 10px 0;
}
@media (max-width: 530px) {
  .benefit-one__fact:nth-child(4) {
    border-radius: 0 0 10px 10px;
  }
}
.benefit-one__fact__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.5s ease;
}
.benefit-one__fact__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.72);
}
.benefit-one__fact:hover .benefit-one__fact__bg {
  transform: scale(1);
  visibility: visible;
  opacity: 1;
}
.benefit-one__fact__icon {
  width: 70px;
  height: 70px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-size: 35px;
  color: var(--careox-white, #fff);
  margin-right: 20px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  transition: all 0.5s ease;
}
.benefit-one__fact__icon i {
  display: inline-block;
  transition: all 0.5s ease;
  transform: scale(1);
}
.benefit-one__fact:hover .benefit-one__fact__icon i {
  transform: scale(0.9);
}
.benefit-one__fact__count {
  margin: 36px auto 6px;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.54px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 400ms ease;
  position: relative;
}
.benefit-one__fact__count::after {
  width: 70px;
  height: 3px;
  position: absolute;
  left: 0;
  right: 0;
  top: -16px;
  margin: auto;
  content: "";
  background-color: var(--careox-border-color, #dddddd);
  transition: all 400ms ease;
  border-radius: 10px;
}
.benefit-one__fact:hover .benefit-one__fact__count {
  color: var(--careox-white, #fff);
}
.benefit-one__fact:hover .benefit-one__fact__count::after {
  background-color: var(--accent-color);
}
.benefit-one__fact__text {
  margin: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  transition: all 400ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.benefit-one__fact:hover .benefit-one__fact__text {
  color: var(--careox-white, #fff);
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes treeMove2 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-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 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 zumpX {
  0%, 100% {
    left: 0;
  }
  50% {
    left: 100%;
  }
}
@keyframes zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes shrinkAnim {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 0 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shrinkAnim2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

/*--------------------------------------------------------------
# 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(--careox-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(--careox-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(--careox-black, #122f2a);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--careox-black2, #121212);
  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(--careox-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--careox-base, #ff5528);
}

.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(--careox-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(--careox-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(--careox-white, #fff);
  font-size: 12px;
  font-family: var(--careox-font, "Rubik", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--careox-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

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

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--careox-base, #ff5528);
  border: none;
  outline: none;
  color: var(--careox-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(--careox-white, #fff);
  color: var(--careox-black, #122f2a);
}

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

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--careox-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(--careox-base, #ff5528);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--careox-base, #ff5528);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--careox-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: #000;
  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;
  overflow: hidden;
  border-radius: 10px;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--careox-white, #fff);
  font-size: 15px;
  color: var(--careox-text, #636363);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .careox-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup__form .careox-btn::before {
  border-radius: 0;
}
.search-popup__form .careox-btn::after {
  border-radius: 0;
  border: none;
  background-color: var(--careox-base, #ff5528);
}
.search-popup__form .careox-btn:hover {
  color: var(--careox-white, #fff);
}
.search-popup__form .careox-btn i {
  margin: 0;
}
.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;
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--careox-black3, #000);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  right: 25px;
  top: 20px;
  font-size: 24px;
  color: var(--careox-white, #fff);
  transition: all 0.4s ease;
  cursor: pointer;
}
.sidebar-one__close:hover {
  color: var(--careox-base, #ff5528);
}
.sidebar-one__content {
  width: 350px;
  background-color: var(--careox-black, #122f2a);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}
.sidebar-one__text {
  color: var(--careox-text-gray, #bcbcbc);
  margin: 35px 0 30px;
  line-height: 30px;
}
.sidebar-one__title {
  color: var(--careox-white, #fff);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}
.sidebar-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-one__info li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 10px;
  color: var(--careox-text-gray, #bcbcbc);
}
.sidebar-one__info li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--careox-base, #ff5528);
  line-height: inherit;
}
.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}
.sidebar-one__info li a:hover {
  background-size: 100% 1px;
}
.sidebar-one__info li a:hover {
  color: var(--careox-base, #ff5528);
}
.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 40px;
}
.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--careox-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-color);
}
.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-one__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.sidebar-one__newsletter {
  position: relative;
}
.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--careox-white-rgb, 255, 255, 255), 0.08);
  color: var(--careox-text-gray, #bcbcbc);
  font-size: 16px;
  font-weight: 400;
  padding-left: 30px;
  padding-right: 50px;
  transition: all 500ms ease;
  border-radius: 5px;
}
.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--careox-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--careox-black, #122f2a);
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  .page-header {
    padding-top: 185px;
    padding-bottom: 190px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
}
.page-header__bg::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header__title {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
  color: var(--careox-white, #fff);
  font-weight: 900;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 65px;
    line-height: 81px;
  }
}

.careox-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.careox-breadcrumb li {
  font-size: 18px;
  color: var(--careox-white, #fff);
  text-transform: capitalize;
  letter-spacing: 0.27px;
  display: flex;
  align-items: center;
}
.careox-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 10px;
  margin-right: 10px;
}
.careox-breadcrumb li span,
.careox-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1.1;
}
.careox-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.careox-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.careox-breadcrumb li a:hover {
  color: var(--careox-base, #ff5528);
}

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

.contact-map {
  position: relative;
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  padding: 70px 0;
}
@media (max-width: 767px) {
  .client-carousel {
    padding: 40px 0;
  }
}
.client-carousel--home-two {
  border-top: none;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
}
.client-carousel--about {
  border: none;
}
.client-carousel__one {
  position: relative;
}
.client-carousel__one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
  position: relative;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50px;
  max-width: 206px;
  height: 58px;
}
.client-carousel__one__item:hover .client-carousel__one__item__hover {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  visibility: visible;
  opacity: 1;
  transform: translateY(70%);
}
.client-carousel__one__item:hover {
  border-color: var(--careox-base, #ff5528);
}
.client-carousel__one__item:hover .client-carousel__one__item__normal {
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
}
.client-carousel__one__item img {
  transition: 500ms;
  max-width: 122px;
  width: auto;
  transition: all 500ms ease;
}
.client-carousel__one__item__hover {
  transition: all 500ms ease;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  visibility: hidden;
  opacity: 0;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
}
.main-slider-one__carousel {
  position: relative;
  width: 100%;
}
.main-slider-one__carousel .owl-dots {
  left: 60px;
  margin: auto 0;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .main-slider-one__carousel .owl-dots {
    width: 60px;
    left: 40px;
  }
}
@media (max-width: 1300px) {
  .main-slider-one__carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    left: 0;
    right: 0;
    top: auto;
    bottom: 30px;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 10px 0;
}
@media (max-width: 1300px) {
  .main-slider-one__carousel .owl-dots .owl-dot {
    margin: 0 5px;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--careox-base, #ff5528);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
  background-color: var(--careox-base, #ff5528);
}
.main-slider-one__item {
  background-color: var(--careox-gray, #f1f6f7);
  position: relative;
  z-index: 3;
  padding-top: 239px;
  padding-bottom: 181px;
}
@media (max-width: 991px) {
  .main-slider-one__item {
    padding-top: 200px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 160px;
    padding-bottom: 130px;
  }
}
.main-slider-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.main-slider-one__content {
  position: relative;
  z-index: 3;
}
.main-slider-one__image {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-one__image img {
  max-width: 100%;
  width: auto !important;
}
.main-slider-one__image img:nth-child(1) {
  animation: shrinkAnim 3s ease 0s infinite;
}
.main-slider-one__title {
  font-size: 66px;
  font-weight: 900;
  line-height: 81px;
  text-transform: capitalize;
  display: inline-block;
  overflow: hidden;
  margin: 0 0 5px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 50px;
    line-height: 60px;
  }
}
.main-slider-one__text {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.27px;
  margin: 0 0 51px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-one__text {
    margin-bottom: 30px;
  }
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 35px;
  z-index: 5;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-one__btn .video-popup {
  width: 50px;
  height: 50px;
  background-color: var(--careox-black, #122f2a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--careox-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.main-slider-one__btn .video-popup .ripple,
.main-slider-one__btn .video-popup .ripple:before,
.main-slider-one__btn .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-black-rgb, 18, 47, 42), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.main-slider-one__btn .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.main-slider-one__btn .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.main-slider-one__btn .video-popup:hover {
  color: var(--careox-white, #fff);
  background-color: var(--careox-secondary, #ffa415);
}
.main-slider-one__shape-one {
  position: absolute;
  left: 30px;
  bottom: 0;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-100%);
}
@media (max-width: 1199px) {
  .main-slider-one__shape-one {
    display: none;
  }
}
.main-slider-one__shape-one img {
  width: auto !important;
  max-width: 100%;
  opacity: 0.27;
  animation: movebounce2 3s linear 0s infinite;
}
.main-slider-one__shape-two {
  position: absolute;
  left: 44.7%;
  top: 39.7%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-300px);
}
@media (max-width: 1500px) {
  .main-slider-one__shape-two {
    left: 43%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__shape-two {
    left: 52%;
  }
}
@media (max-width: 991px) {
  .main-slider-one__shape-two {
    left: 70%;
  }
}
@media (max-width: 767px) {
  .main-slider-one__shape-two {
    display: none;
  }
}
.main-slider-one__shape-two img {
  width: auto !important;
  max-width: 100%;
  animation: treeMove 4s linear 0s infinite;
}
.main-slider-one__shape-three {
  position: absolute;
  left: 45%;
  bottom: 160px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(200px);
}
@media (max-width: 767px) {
  .main-slider-one__shape-three {
    display: none;
  }
}
.main-slider-one__shape-three img {
  width: auto !important;
  max-width: 100%;
  animation: vibrant 3s ease 0s infinite;
}
.main-slider-one__shape-four {
  position: absolute;
  right: 8%;
  top: 25%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-300px);
}
@media (max-width: 1500px) {
  .main-slider-one__shape-four {
    right: 5%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__shape-four {
    display: none;
  }
}
.main-slider-one__shape-four img {
  width: auto !important;
  max-width: 100%;
  animation: blinkAnim 3s ease 0s infinite;
}
.main-slider-one__layer {
  position: absolute;
  right: 7%;
  top: 45px;
  bottom: 0;
  margin: auto;
  width: 651px;
  height: 651px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 1500px) {
  .main-slider-one__layer {
    right: 1%;
    width: 600px;
    height: 600px;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__layer {
    display: none;
  }
}
.main-slider-one__layer__inner {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M4620 8985 c0 -8 -13 -21 -29 -30 -53 -27 -71 -60 -71 -134 0 -57 4 -71 32 -112 41 -60 108 -105 188 -125 36 -9 69 -20 74 -24 5 -5 -2 -25 -15 -46 -37 -60 -30 -130 21 -211 8 -12 11 -25 8 -28 -3 -4 -145 -7 -314 -9 -284 -2 -350 -7 -554 -37 -167 -25 -223 -36 -395 -80 -97 -25 -342 -103 -400 -128 -11 -5 -63 -27 -115 -49 -52 -22 -117 -51 -145 -63 -77 -35 -117 -50 -155 -59 -95 -24 -127 -32 -155 -42 -16 -6 -46 -13 -65 -16 -19 -2 -44 -11 -55 -18 -11 -8 -29 -14 -41 -14 -12 0 -35 -6 -51 -14 -15 -8 -53 -25 -83 -36 -94 -38 -222 -100 -268 -131 -58 -39 -103 -62 -109 -55 -5 5 2 22 44 99 25 48 88 82 156 84 44 1 65 7 81 22 12 12 29 21 38 21 16 0 31 16 131 140 55 67 97 90 97 52 0 -44 10 -52 65 -52 41 0 73 9 139 39 47 22 110 44 141 50 59 11 140 42 195 76 44 27 170 87 230 110 25 9 57 23 72 31 14 8 37 14 50 14 12 0 32 7 42 15 11 8 30 15 42 15 12 0 38 7 57 15 20 8 50 15 67 15 17 0 41 5 53 12 12 6 53 15 92 19 38 5 95 13 125 18 30 5 127 10 215 10 150 1 210 9 171 24 -8 3 -113 9 -233 13 -209 6 -219 8 -250 30 -34 26 -72 31 -91 12 -18 -18 -142 -60 -227 -77 -22 -5 -60 -13 -85 -19 -51 -12 -144 -31 -210 -42 -66 -11 -140 -30 -185 -49 -61 -25 -112 -20 -171 17 -76 48 -132 46 -369 -15 -195 -50 -368 -114 -529 -194 -66 -33 -128 -67 -137 -75 -8 -8 -19 -14 -22 -14 -12 0 -190 -135 -247 -186 -95 -87 -205 -215 -235 -272 -11 -20 -31 -55 -45 -77 -13 -22 -29 -48 -35 -57 -5 -9 -23 -38 -39 -65 -16 -26 -54 -81 -85 -121 -111 -145 -157 -212 -211 -309 -72 -128 -156 -213 -270 -273 -47 -25 -96 -48 -110 -52 -48 -15 -165 -105 -213 -163 -58 -73 -72 -118 -58 -186 26 -121 7 -174 -92 -254 -53 -44 -57 -50 -59 -94 -4 -90 3 -223 13 -250 6 -14 14 -44 19 -66 4 -22 19 -84 34 -139 14 -54 26 -111 26 -127 0 -36 31 -69 65 -69 16 0 39 -14 64 -39 21 -21 48 -42 60 -46 14 -4 25 -22 35 -58 29 -102 29 -100 -5 -142 -34 -44 -69 -116 -69 -145 0 -35 24 -71 54 -84 24 -10 35 -25 50 -67 26 -74 32 -79 86 -79 34 0 52 5 65 20 17 19 17 52 1 165 -2 11 -1 14 1 8 8 -24 33 -13 59 27 43 65 84 61 99 -10 10 -41 37 -90 51 -90 7 0 16 9 19 20 4 11 11 18 16 15 12 -8 12 -325 -1 -325 -5 0 -12 11 -16 25 -3 14 -10 25 -14 25 -5 0 -12 10 -15 23 -10 30 -75 97 -96 97 -21 0 -84 -93 -92 -137 -9 -48 10 -90 49 -109 27 -13 37 -25 45 -60 6 -24 22 -55 35 -70 22 -23 29 -25 74 -19 46 6 50 5 59 -17 4 -12 11 -57 15 -98 4 -41 13 -102 21 -135 7 -33 17 -87 20 -121 l7 -61 -62 -6 c-34 -4 -66 -4 -71 -1 -5 3 -9 36 -9 74 0 38 -5 81 -11 97 -6 15 -15 44 -19 63 -12 50 -32 101 -53 130 -16 24 -22 25 -105 24 -103 -2 -162 -24 -223 -85 l-39 -39 0 -99 c0 -90 2 -100 20 -106 24 -8 43 -72 34 -112 -4 -15 -21 -55 -38 -88 -26 -49 -31 -71 -31 -125 1 -59 6 -76 63 -189 34 -68 65 -143 69 -165 3 -23 16 -63 28 -91 12 -27 26 -66 29 -85 29 -140 119 -306 363 -668 29 -42 102 -151 162 -242 60 -91 117 -175 126 -188 10 -13 47 -43 84 -67 55 -34 73 -53 95 -96 39 -75 51 -87 76 -71 31 19 48 14 65 -18 8 -16 24 -34 34 -40 11 -5 23 -19 26 -30 3 -11 18 -23 33 -26 15 -3 34 -8 43 -10 9 -3 23 -22 31 -43 13 -31 23 -41 64 -55 75 -27 114 -31 114 -13 0 9 7 20 15 24 12 7 7 18 -26 58 -23 28 -55 70 -72 95 -17 25 -34 47 -38 50 -22 16 -92 131 -104 173 -8 27 -29 65 -46 85 -17 19 -38 49 -46 66 -8 17 -29 58 -48 91 -58 102 -191 377 -213 440 -30 85 -69 231 -78 290 -3 28 -30 124 -59 215 -62 194 -78 262 -73 310 4 47 33 54 43 9 22 -98 188 -457 276 -594 10 -16 23 -39 28 -50 5 -11 42 -69 83 -130 41 -60 103 -153 139 -205 72 -107 149 -223 164 -249 6 -9 37 -53 69 -96 207 -276 494 -564 771 -771 116 -87 453 -304 471 -304 11 0 266 -130 299 -153 22 -15 44 -27 48 -27 5 0 26 -14 47 -30 21 -17 40 -30 43 -30 4 0 23 -12 44 -26 39 -26 235 -124 250 -124 11 0 122 -46 130 -54 3 -3 13 -6 21 -6 16 0 36 -9 237 -105 181 -86 189 -89 290 -110 148 -31 228 -60 333 -121 34 -20 61 -26 140 -30 117 -7 144 1 171 55 38 74 35 152 -12 289 -14 40 -1 52 58 52 46 0 229 26 295 41 25 6 70 15 100 19 30 5 75 14 100 20 100 26 156 42 185 52 17 6 46 13 65 15 19 3 41 10 48 16 7 5 29 13 50 17 20 5 62 18 92 30 30 12 71 26 90 32 19 5 39 14 45 19 5 5 15 9 22 9 40 0 491 227 683 343 52 32 104 63 115 70 11 7 36 24 56 40 20 15 40 27 43 27 6 0 133 96 246 186 65 52 156 131 225 195 72 68 105 88 105 63 0 -28 -97 -140 -270 -313 -187 -186 -376 -327 -540 -402 -66 -31 -158 -59 -192 -59 -26 0 -158 -75 -418 -238 -94 -59 -189 -149 -193 -181 -3 -34 18 -37 168 -30 264 14 430 48 658 135 109 42 248 111 332 165 17 10 37 22 45 26 22 10 62 39 165 117 285 219 476 448 725 866 36 60 139 271 150 307 5 15 18 53 30 83 12 30 26 71 30 90 4 19 13 49 18 65 33 97 44 154 43 243 0 86 3 100 27 141 44 74 48 82 100 186 123 247 192 418 265 660 48 160 117 520 117 616 0 19 5 52 12 74 6 22 12 51 12 65 1 18 7 26 24 28 19 3 22 9 22 50 0 39 -4 49 -22 57 -32 15 -48 84 -48 210 0 139 -31 340 -82 535 -42 161 -130 446 -144 467 -8 12 -14 30 -14 40 0 24 -55 185 -85 248 -13 28 -27 64 -31 80 -4 17 -19 57 -35 90 -15 33 -37 81 -49 107 -12 26 -35 62 -51 79 -19 21 -27 38 -24 50 6 17 -26 85 -84 179 -11 19 -24 41 -27 49 -4 7 -41 64 -82 125 -42 61 -130 192 -196 291 -139 210 -204 297 -335 455 -137 165 -459 486 -635 635 -33 28 -78 66 -100 85 -133 115 -338 265 -436 319 -86 47 -270 135 -355 171 -55 22 -109 45 -120 50 -11 5 -76 32 -145 60 -127 52 -258 107 -340 143 -25 11 -72 32 -105 46 -105 47 -275 91 -350 91 -50 0 -89 15 -80 31 4 5 -72 9 -199 9 -175 0 -206 -2 -206 -15z m-3489 -2038 c-30 -30 -37 -14 -9 23 18 25 24 28 26 15 2 -10 -5 -27 -17 -38z"/> <path d="M1846 1481 c-7 -10 18 -34 27 -25 7 8 -3 34 -13 34 -5 0 -11 -4 -14 -9z"/> <path d="M1670 1239 c0 -13 41 -48 56 -49 6 0 17 -7 24 -15 13 -16 46 -20 54 -7 7 12 -90 82 -114 82 -11 0 -20 -5 -20 -11z"/> <path d="M1865 1140 c3 -5 13 -10 21 -10 8 0 14 5 14 10 0 6 -9 10 -21 10 -11 0 -17 -4 -14 -10z"/><path d="M2090 1101 c0 -22 25 -39 38 -27 8 8 -10 38 -26 44 -7 2 -12 -6 -12 -17z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 900.000000"><g transform="translate(0.000000,900.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M4620 8985 c0 -8 -13 -21 -29 -30 -53 -27 -71 -60 -71 -134 0 -57 4 -71 32 -112 41 -60 108 -105 188 -125 36 -9 69 -20 74 -24 5 -5 -2 -25 -15 -46 -37 -60 -30 -130 21 -211 8 -12 11 -25 8 -28 -3 -4 -145 -7 -314 -9 -284 -2 -350 -7 -554 -37 -167 -25 -223 -36 -395 -80 -97 -25 -342 -103 -400 -128 -11 -5 -63 -27 -115 -49 -52 -22 -117 -51 -145 -63 -77 -35 -117 -50 -155 -59 -95 -24 -127 -32 -155 -42 -16 -6 -46 -13 -65 -16 -19 -2 -44 -11 -55 -18 -11 -8 -29 -14 -41 -14 -12 0 -35 -6 -51 -14 -15 -8 -53 -25 -83 -36 -94 -38 -222 -100 -268 -131 -58 -39 -103 -62 -109 -55 -5 5 2 22 44 99 25 48 88 82 156 84 44 1 65 7 81 22 12 12 29 21 38 21 16 0 31 16 131 140 55 67 97 90 97 52 0 -44 10 -52 65 -52 41 0 73 9 139 39 47 22 110 44 141 50 59 11 140 42 195 76 44 27 170 87 230 110 25 9 57 23 72 31 14 8 37 14 50 14 12 0 32 7 42 15 11 8 30 15 42 15 12 0 38 7 57 15 20 8 50 15 67 15 17 0 41 5 53 12 12 6 53 15 92 19 38 5 95 13 125 18 30 5 127 10 215 10 150 1 210 9 171 24 -8 3 -113 9 -233 13 -209 6 -219 8 -250 30 -34 26 -72 31 -91 12 -18 -18 -142 -60 -227 -77 -22 -5 -60 -13 -85 -19 -51 -12 -144 -31 -210 -42 -66 -11 -140 -30 -185 -49 -61 -25 -112 -20 -171 17 -76 48 -132 46 -369 -15 -195 -50 -368 -114 -529 -194 -66 -33 -128 -67 -137 -75 -8 -8 -19 -14 -22 -14 -12 0 -190 -135 -247 -186 -95 -87 -205 -215 -235 -272 -11 -20 -31 -55 -45 -77 -13 -22 -29 -48 -35 -57 -5 -9 -23 -38 -39 -65 -16 -26 -54 -81 -85 -121 -111 -145 -157 -212 -211 -309 -72 -128 -156 -213 -270 -273 -47 -25 -96 -48 -110 -52 -48 -15 -165 -105 -213 -163 -58 -73 -72 -118 -58 -186 26 -121 7 -174 -92 -254 -53 -44 -57 -50 -59 -94 -4 -90 3 -223 13 -250 6 -14 14 -44 19 -66 4 -22 19 -84 34 -139 14 -54 26 -111 26 -127 0 -36 31 -69 65 -69 16 0 39 -14 64 -39 21 -21 48 -42 60 -46 14 -4 25 -22 35 -58 29 -102 29 -100 -5 -142 -34 -44 -69 -116 -69 -145 0 -35 24 -71 54 -84 24 -10 35 -25 50 -67 26 -74 32 -79 86 -79 34 0 52 5 65 20 17 19 17 52 1 165 -2 11 -1 14 1 8 8 -24 33 -13 59 27 43 65 84 61 99 -10 10 -41 37 -90 51 -90 7 0 16 9 19 20 4 11 11 18 16 15 12 -8 12 -325 -1 -325 -5 0 -12 11 -16 25 -3 14 -10 25 -14 25 -5 0 -12 10 -15 23 -10 30 -75 97 -96 97 -21 0 -84 -93 -92 -137 -9 -48 10 -90 49 -109 27 -13 37 -25 45 -60 6 -24 22 -55 35 -70 22 -23 29 -25 74 -19 46 6 50 5 59 -17 4 -12 11 -57 15 -98 4 -41 13 -102 21 -135 7 -33 17 -87 20 -121 l7 -61 -62 -6 c-34 -4 -66 -4 -71 -1 -5 3 -9 36 -9 74 0 38 -5 81 -11 97 -6 15 -15 44 -19 63 -12 50 -32 101 -53 130 -16 24 -22 25 -105 24 -103 -2 -162 -24 -223 -85 l-39 -39 0 -99 c0 -90 2 -100 20 -106 24 -8 43 -72 34 -112 -4 -15 -21 -55 -38 -88 -26 -49 -31 -71 -31 -125 1 -59 6 -76 63 -189 34 -68 65 -143 69 -165 3 -23 16 -63 28 -91 12 -27 26 -66 29 -85 29 -140 119 -306 363 -668 29 -42 102 -151 162 -242 60 -91 117 -175 126 -188 10 -13 47 -43 84 -67 55 -34 73 -53 95 -96 39 -75 51 -87 76 -71 31 19 48 14 65 -18 8 -16 24 -34 34 -40 11 -5 23 -19 26 -30 3 -11 18 -23 33 -26 15 -3 34 -8 43 -10 9 -3 23 -22 31 -43 13 -31 23 -41 64 -55 75 -27 114 -31 114 -13 0 9 7 20 15 24 12 7 7 18 -26 58 -23 28 -55 70 -72 95 -17 25 -34 47 -38 50 -22 16 -92 131 -104 173 -8 27 -29 65 -46 85 -17 19 -38 49 -46 66 -8 17 -29 58 -48 91 -58 102 -191 377 -213 440 -30 85 -69 231 -78 290 -3 28 -30 124 -59 215 -62 194 -78 262 -73 310 4 47 33 54 43 9 22 -98 188 -457 276 -594 10 -16 23 -39 28 -50 5 -11 42 -69 83 -130 41 -60 103 -153 139 -205 72 -107 149 -223 164 -249 6 -9 37 -53 69 -96 207 -276 494 -564 771 -771 116 -87 453 -304 471 -304 11 0 266 -130 299 -153 22 -15 44 -27 48 -27 5 0 26 -14 47 -30 21 -17 40 -30 43 -30 4 0 23 -12 44 -26 39 -26 235 -124 250 -124 11 0 122 -46 130 -54 3 -3 13 -6 21 -6 16 0 36 -9 237 -105 181 -86 189 -89 290 -110 148 -31 228 -60 333 -121 34 -20 61 -26 140 -30 117 -7 144 1 171 55 38 74 35 152 -12 289 -14 40 -1 52 58 52 46 0 229 26 295 41 25 6 70 15 100 19 30 5 75 14 100 20 100 26 156 42 185 52 17 6 46 13 65 15 19 3 41 10 48 16 7 5 29 13 50 17 20 5 62 18 92 30 30 12 71 26 90 32 19 5 39 14 45 19 5 5 15 9 22 9 40 0 491 227 683 343 52 32 104 63 115 70 11 7 36 24 56 40 20 15 40 27 43 27 6 0 133 96 246 186 65 52 156 131 225 195 72 68 105 88 105 63 0 -28 -97 -140 -270 -313 -187 -186 -376 -327 -540 -402 -66 -31 -158 -59 -192 -59 -26 0 -158 -75 -418 -238 -94 -59 -189 -149 -193 -181 -3 -34 18 -37 168 -30 264 14 430 48 658 135 109 42 248 111 332 165 17 10 37 22 45 26 22 10 62 39 165 117 285 219 476 448 725 866 36 60 139 271 150 307 5 15 18 53 30 83 12 30 26 71 30 90 4 19 13 49 18 65 33 97 44 154 43 243 0 86 3 100 27 141 44 74 48 82 100 186 123 247 192 418 265 660 48 160 117 520 117 616 0 19 5 52 12 74 6 22 12 51 12 65 1 18 7 26 24 28 19 3 22 9 22 50 0 39 -4 49 -22 57 -32 15 -48 84 -48 210 0 139 -31 340 -82 535 -42 161 -130 446 -144 467 -8 12 -14 30 -14 40 0 24 -55 185 -85 248 -13 28 -27 64 -31 80 -4 17 -19 57 -35 90 -15 33 -37 81 -49 107 -12 26 -35 62 -51 79 -19 21 -27 38 -24 50 6 17 -26 85 -84 179 -11 19 -24 41 -27 49 -4 7 -41 64 -82 125 -42 61 -130 192 -196 291 -139 210 -204 297 -335 455 -137 165 -459 486 -635 635 -33 28 -78 66 -100 85 -133 115 -338 265 -436 319 -86 47 -270 135 -355 171 -55 22 -109 45 -120 50 -11 5 -76 32 -145 60 -127 52 -258 107 -340 143 -25 11 -72 32 -105 46 -105 47 -275 91 -350 91 -50 0 -89 15 -80 31 4 5 -72 9 -199 9 -175 0 -206 -2 -206 -15z m-3489 -2038 c-30 -30 -37 -14 -9 23 18 25 24 28 26 15 2 -10 -5 -27 -17 -38z"/> <path d="M1846 1481 c-7 -10 18 -34 27 -25 7 8 -3 34 -13 34 -5 0 -11 -4 -14 -9z"/> <path d="M1670 1239 c0 -13 41 -48 56 -49 6 0 17 -7 24 -15 13 -16 46 -20 54 -7 7 12 -90 82 -114 82 -11 0 -20 -5 -20 -11z"/> <path d="M1865 1140 c3 -5 13 -10 21 -10 8 0 14 5 14 10 0 6 -9 10 -21 10 -11 0 -17 -4 -14 -10z"/><path d="M2090 1101 c0 -22 25 -39 38 -27 8 8 -10 38 -26 44 -7 2 -12 -6 -12 -17z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 100%;
  background-color: var(--careox-white, #fff);
}
.main-slider-one__layer__inner img {
  width: 100%;
  height: 100%;
  mix-blend-mode: luminosity;
}
.main-slider-one svg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.main-slider-one circle {
  stroke: var(--careox-black, #122f2a);
  fill: none;
  transition: 0.5s;
}
.main-slider-one .steap {
  stroke-width: 0;
}
.main-slider-one #svg2 circle {
  transition-timing-function: linear;
}
.main-slider-one .circle1 {
  transition-delay: 0.05s;
}
.main-slider-one .circle2 {
  transition-delay: 0.1s;
}
.main-slider-one .circle3 {
  transition-delay: 0.15s;
}
.main-slider-one .circle4 {
  transition-delay: 0.2s;
}
.main-slider-one .circle5 {
  transition-delay: 0.25s;
}
.main-slider-one .circle6 {
  transition-delay: 0.3s;
}
.main-slider-one .circle7 {
  transition-delay: 0.35s;
}
.main-slider-one .circle8 {
  transition-delay: 0.4s;
}
.main-slider-one .circle9 {
  transition-delay: 0.45s;
}
.main-slider-one .active .steap {
  animation: dash 0.5s linear;
}
@keyframes dash {
  0% {
    stroke-width: 0;
  }
  100% {
    stroke-width: 200px;
  }
}
.main-slider-one .active .main-slider-one__image {
  opacity: 1;
  animation-delay: 1.2s;
  animation-name: rotateInUpLeft;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  animation-delay: 1.3s;
  animation-name: rotateInUpRight;
}
.main-slider-one .active .main-slider-one__text {
  opacity: 1;
  animation-delay: 1.5s;
  animation-name: rotateInUpLeft;
}
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  animation-delay: 1.6s;
  animation-name: rotateInUpRight;
}
.main-slider-one .active .main-slider-one__shape-one {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 2000ms;
}
.main-slider-one .active .main-slider-one__shape-two {
  opacity: 1;
  transition-delay: 2000ms;
  transform: translateY(0);
}
.main-slider-one .active .main-slider-one__shape-three {
  opacity: 1;
  transition-delay: 2000ms;
  transform: translateY(0);
}
.main-slider-one .active .main-slider-one__shape-four {
  opacity: 1;
  transition-delay: 2000ms;
  transform: translateY(0);
}
.main-slider-one .active .main-slider-one__layer {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: rollInRight;
}

.main-slider-two {
  position: relative;
}
.main-slider-two__carousel {
  position: relative;
  width: 100%;
}
.main-slider-two__carousel .owl-dots {
  left: 60px;
  margin: auto 0;
  position: absolute;
  text-align: left;
  width: 60px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1400px) {
  .main-slider-two__carousel .owl-dots {
    left: 40px;
  }
}
@media (max-width: 1300px) {
  .main-slider-two__carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    left: 0;
    right: 0;
    top: auto;
    bottom: 30px;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot {
  display: block;
  margin: 10px 0;
}
@media (max-width: 1300px) {
  .main-slider-two__carousel .owl-dots .owl-dot {
    margin: 0 5px;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--careox-base, #ff5528);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
  background-color: var(--careox-base, #ff5528);
}
.main-slider-two__item {
  background-color: var(--careox-gray, #f1f6f7);
  position: relative;
  z-index: 3;
  padding-top: 265px;
  padding-bottom: 229px;
}
@media (max-width: 991px) {
  .main-slider-two__item {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: scale(1);
  transition: transform 10000ms ease, -webkit-transform 10000ms ease;
  overflow: hidden;
}
.main-slider-two__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--careox-black3-rgb, 0, 0, 0), 0.46);
}
.main-slider-two__content {
  position: relative;
  z-index: 3;
  padding: 0;
}
.main-slider-two__title {
  color: var(--careox-white, #fff);
  font-size: 65px;
  font-weight: 900;
  line-height: 68px;
  text-transform: capitalize;
  margin: 0 0 7px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
.main-slider-two__title__text {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.main-slider-two__title__text::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 0;
  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__title__text span {
  color: var(--careox-secondary, #ffa415);
  text-decoration: underline;
}
.main-slider-two__text {
  color: var(--careox-white, #fff);
  font-size: 18px;
  margin: 0 0 48px;
  letter-spacing: 0.27px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateX(-100px);
}
@media (max-width: 767px) {
  .main-slider-two__text {
    font-size: 16px;
  }
}
.main-slider-two__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 5;
  overflow: hidden;
}
@media (max-width: 767px) {
  .main-slider-two__btn {
    gap: 15px;
  }
}
.main-slider-two__btn .careox-btn {
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-two__volunter {
  position: relative;
  display: flex;
  align-items: center;
}
.main-slider-two__volunter img {
  width: 53px;
  height: 53px;
  border: 3px solid var(--careox-white, #fff);
  border-radius: 50%;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(100px);
}
.main-slider-two__volunter img + img {
  margin-left: -16px;
}
.main-slider-two__shape-one {
  position: absolute;
  left: 0;
  top: 0;
  width: 130px;
  height: 213px;
  opacity: 0;
  transition: transform 1000ms ease, -webkit-transform 1000ms ease;
  transform: translateX(-100%);
}
@media (max-width: 1199px) {
  .main-slider-two__shape-one {
    display: none;
  }
}
.main-slider-two__shape-two {
  position: absolute;
  left: 40px;
  bottom: 40px;
  width: 205px;
  height: 193px;
  opacity: 0;
  transition: transform 1000ms ease, -webkit-transform 1000ms ease;
  transform: translateY(100%);
}
.main-slider-two__shape-two img {
  width: 100%;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1299px) {
  .main-slider-two__shape-two {
    display: none;
  }
}
.main-slider-two__shape-three {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 214px;
  height: auto;
  opacity: 0;
  transition: transform 1000ms ease, -webkit-transform 1000ms ease;
  transform: translateY(100%);
}
.main-slider-two__shape-three img {
  width: 100%;
  height: auto;
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1299px) {
  .main-slider-two__shape-three {
    display: none;
  }
}
.main-slider-two .video-popup {
  width: 90px;
  height: 90px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 45px;
  color: var(--careox-black, #122f2a);
  transition: all 500ms ease;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-two .video-popup {
    display: none;
  }
}
.main-slider-two .video-popup .ripple,
.main-slider-two .video-popup .ripple:before,
.main-slider-two .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.main-slider-two .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.main-slider-two .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.main-slider-two .video-popup:hover {
  color: var(--careox-secondary, #ffa415);
}
.main-slider-two .active .main-slider-two__shape-one {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__shape-two {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1800ms;
}
.main-slider-two .active .main-slider-two__shape-three {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1900ms;
}
.main-slider-two .active .video-popup {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: zoomIn;
}
.main-slider-two .active .main-slider-two__bg {
  transform: scale(1.15);
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}
.main-slider-two .active .main-slider-two__title__text::after {
  transform: translateX(1%);
  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__btn .careox-btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1600ms;
}
.main-slider-two .active .main-slider-two__volunter img {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1700ms;
}
.main-slider-two .active .main-slider-two__volunter img:nth-child(2) {
  transition-delay: 1800ms;
}
.main-slider-two .active .main-slider-two__volunter img:nth-child(3) {
  transition-delay: 1800ms;
}

.main-slider-three {
  position: relative;
  overflow: hidden;
}
.main-slider-three__carousel.owl-carousel {
  position: relative;
  width: 100%;
}
.main-slider-three__carousel.owl-carousel .owl-nav {
  margin: auto 0;
  position: absolute;
  left: 60px;
  text-align: left;
  top: 55%;
  transform: translateY(-50%);
  z-index: 99;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 1700px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    left: 30px;
  }
}
@media (max-width: 1500px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    flex-direction: row;
    transform: none;
    top: auto;
    bottom: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
    justify-content: center;
  }
}
.main-slider-three__carousel.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--careox-white, #fff);
  transition: all 400ms ease;
}
.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--careox-base, #ff5528);
}
.main-slider-three__item {
  position: relative;
  padding-top: 267px;
  padding-bottom: 227px;
  background-color: var(--careox-black, #122f2a);
}
@media (max-width: 1199px) {
  .main-slider-three__item {
    padding-top: 223px;
    padding-bottom: 180px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__item {
    padding-top: 160px;
    padding-bottom: 130px;
  }
}
.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
  background-color: var(--careox-gray, #f1f6f7);
}
.main-slider-three__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(24, 24, 24, 0.91);
}
.main-slider-three__shape-two {
  opacity: 0;
  position: absolute;
  right: 4%;
  top: 170px;
  width: 160px;
  height: 160px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
  z-index: 1;
  display: none;
}
.main-slider-three__shape-two img {
  animation: zoomsIn 3s linear 0s infinite;
}
@media (min-width: 1400px) {
  .main-slider-three__shape-two {
    display: block;
  }
}
.main-slider-three__shape-three {
  opacity: 0;
  position: absolute;
  right: -15px;
  bottom: 0;
  width: 637px;
  height: 250px;
  opacity: 0;
  transform: scale(0.9);
  transition: transform 1000ms ease, -webkit-transform 1000ms ease;
  transform: translateY(100%);
  z-index: 1;
  display: none;
}
.main-slider-three__shape-three img {
  animation: movebounce2 3s linear 0s infinite;
}
@media (min-width: 1400px) {
  .main-slider-three__shape-three {
    display: block;
  }
}
.main-slider-three .container {
  position: relative;
  z-index: 3;
}
.main-slider-three__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
@media (min-width: 1300px) and (max-width: 1500px) {
  .main-slider-three__content {
    padding-left: 40px;
    margin-right: -40px;
  }
}
.main-slider-three__sub-title {
  color: var(--careox-secondary, #ffa415);
  font-size: 31px;
  font-weight: 700;
  font-family: var(--careox-special-font, "Caveat", cursive);
  text-transform: capitalize;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  line-height: 1;
  opacity: 0;
  margin: 0 0 14px;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
.main-slider-three__sub-title img {
  width: 65px !important;
  animation: zoomsIn 3s linear 0s infinite;
}
@media (max-width: 500px) {
  .main-slider-three__sub-title {
    letter-spacing: 0;
  }
}
.main-slider-three__sub-title__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main-slider-three__title {
  color: var(--careox-white, #fff);
  font-size: 65px;
  font-weight: 900;
  line-height: 81px;
  text-transform: capitalize;
  margin: 0 0 25px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
.main-slider-three__title span {
  color: var(--careox-base, #ff5528);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 50px;
    line-height: 62px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 40px;
    line-height: 45px;
  }
}
.main-slider-three__title__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main-slider-three__text {
  font-size: 18px;
  color: var(--careox-white, #fff);
  letter-spacing: 0.27px;
  margin: 0 0 47px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .main-slider-three__text br {
    display: none;
  }
}
.main-slider-three__text__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main-slider-three__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-three__layer {
  position: absolute;
  left: 10.5%;
  bottom: 0;
  width: 701px;
  height: 673px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 23px 0;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 1750px) {
  .main-slider-three__layer {
    left: 3%;
  }
}
@media (max-width: 1500px) {
  .main-slider-three__layer {
    left: 2%;
  }
}
@media (max-width: 1400px) {
  .main-slider-three__layer {
    left: 0%;
  }
}
@media (max-width: 1300px) {
  .main-slider-three__layer {
    left: 1%;
    width: 470px;
    height: 500px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__layer {
    display: none;
  }
}
.main-slider-three__layer__inner {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 325.000000"><g transform="translate(0.000000,325.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M937 3223 c-29 -7 -64 -10 -78 -7 -33 6 -146 -40 -224 -92 -82 -54 -207 -174 -262 -253 -56 -80 -105 -186 -140 -300 -24 -79 -26 -100 -25 -247 1 -88 6 -181 11 -205 14 -66 57 -218 75 -268 9 -25 23 -72 32 -105 21 -81 152 -437 168 -456 7 -8 30 -46 51 -85 21 -38 46 -78 57 -88 18 -18 18 -19 -11 -40 -328 -240 -494 -419 -535 -578 -15 -55 -46 -213 -46 -231 0 -20 34 -2 41 22 l7 25 1 -27 c1 -22 6 -28 24 -28 20 0 26 10 45 76 51 173 184 349 367 483 59 44 215 141 265 165 l35 17 -25 -21 c-14 -12 -72 -50 -129 -85 -57 -35 -109 -69 -115 -76 -8 -9 -8 -10 1 -5 31 17 7 -11 -69 -82 -79 -75 -138 -145 -138 -165 0 -5 7 -3 17 4 14 13 14 11 -1 -21 -17 -33 -15 -32 31 16 56 61 166 154 179 154 5 0 122 56 259 125 143 72 267 128 290 131 22 3 67 16 100 29 96 36 275 93 335 106 30 6 93 27 140 45 47 19 94 34 104 34 58 0 471 195 611 288 109 72 272 217 359 318 75 88 178 273 213 381 31 100 43 265 21 291 -9 9 -25 48 -37 86 -27 83 -57 129 -145 218 -66 67 -171 136 -247 163 -78 28 -212 39 -306 26 -127 -18 -299 -74 -433 -141 -66 -33 -124 -60 -129 -60 -5 0 -20 17 -32 38 -50 81 -168 183 -245 212 -15 6 -24 13 -21 16 6 7 85 -32 112 -56 11 -9 34 -25 50 -35 l30 -17 -27 25 c-16 14 -28 29 -28 32 0 12 78 -35 108 -66 17 -18 35 -29 39 -26 3 4 17 -3 30 -15 13 -12 23 -17 23 -11 0 14 -76 107 -121 149 -19 18 -45 46 -59 63 -32 41 -142 100 -250 136 -71 24 -103 28 -193 29 -60 1 -132 -4 -160 -11z m703 -288 c19 -19 32 -35 29 -35 -3 0 -20 16 -39 35 -19 19 -32 35 -29 35 3 0 20 -16 39 -35z m-1525 -2456 c-14 -30 -25 -48 -25 -42 0 15 42 104 47 99 2 -2 -8 -27 -22 -57z m-34 -90 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m-14 -61 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/><path d="M362 680 c-37 -35 -49 -50 -39 -50 2 0 23 20 47 45 55 56 50 59 -8 5z"/><path d="M30 30 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 325.000000"><g transform="translate(0.000000,325.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M937 3223 c-29 -7 -64 -10 -78 -7 -33 6 -146 -40 -224 -92 -82 -54 -207 -174 -262 -253 -56 -80 -105 -186 -140 -300 -24 -79 -26 -100 -25 -247 1 -88 6 -181 11 -205 14 -66 57 -218 75 -268 9 -25 23 -72 32 -105 21 -81 152 -437 168 -456 7 -8 30 -46 51 -85 21 -38 46 -78 57 -88 18 -18 18 -19 -11 -40 -328 -240 -494 -419 -535 -578 -15 -55 -46 -213 -46 -231 0 -20 34 -2 41 22 l7 25 1 -27 c1 -22 6 -28 24 -28 20 0 26 10 45 76 51 173 184 349 367 483 59 44 215 141 265 165 l35 17 -25 -21 c-14 -12 -72 -50 -129 -85 -57 -35 -109 -69 -115 -76 -8 -9 -8 -10 1 -5 31 17 7 -11 -69 -82 -79 -75 -138 -145 -138 -165 0 -5 7 -3 17 4 14 13 14 11 -1 -21 -17 -33 -15 -32 31 16 56 61 166 154 179 154 5 0 122 56 259 125 143 72 267 128 290 131 22 3 67 16 100 29 96 36 275 93 335 106 30 6 93 27 140 45 47 19 94 34 104 34 58 0 471 195 611 288 109 72 272 217 359 318 75 88 178 273 213 381 31 100 43 265 21 291 -9 9 -25 48 -37 86 -27 83 -57 129 -145 218 -66 67 -171 136 -247 163 -78 28 -212 39 -306 26 -127 -18 -299 -74 -433 -141 -66 -33 -124 -60 -129 -60 -5 0 -20 17 -32 38 -50 81 -168 183 -245 212 -15 6 -24 13 -21 16 6 7 85 -32 112 -56 11 -9 34 -25 50 -35 l30 -17 -27 25 c-16 14 -28 29 -28 32 0 12 78 -35 108 -66 17 -18 35 -29 39 -26 3 4 17 -3 30 -15 13 -12 23 -17 23 -11 0 14 -76 107 -121 149 -19 18 -45 46 -59 63 -32 41 -142 100 -250 136 -71 24 -103 28 -193 29 -60 1 -132 -4 -160 -11z m703 -288 c19 -19 32 -35 29 -35 -3 0 -20 16 -39 35 -19 19 -32 35 -29 35 3 0 20 -16 39 -35z m-1525 -2456 c-14 -30 -25 -48 -25 -42 0 15 42 104 47 99 2 -2 -8 -27 -22 -57z m-34 -90 c-5 -13 -10 -19 -10 -12 -1 15 10 45 15 40 3 -2 0 -15 -5 -28z m-14 -61 c-3 -8 -6 -5 -6 6 -1 11 2 17 5 13 3 -3 4 -12 1 -19z"/><path d="M362 680 c-37 -35 -49 -50 -39 -50 2 0 23 20 47 45 55 56 50 59 -8 5z"/><path d="M30 30 c0 -7 3 -10 7 -7 3 4 3 10 0 14 -4 3 -7 0 -7 -7z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
  width: 100%;
  height: 100%;
}
.main-slider-three__layer__inner img {
  width: 100%;
  height: 100%;
}
.main-slider-three .active .main-slider-three__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}
.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1200ms;
}
.main-slider-three .active .main-slider-three__text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1400ms;
}
.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1500ms;
}
.main-slider-three .active .main-slider-three__shape-two {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: rollInRight;
}
.main-slider-three .active .main-slider-three__shape-three {
  opacity: 1;
  transform: scale(1);
  transform: translateY(0);
  transition-delay: 1800ms;
}
.main-slider-three .active .main-slider-three__layer {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: rollIn;
}

.main-slider-four {
  position: relative;
}
.main-slider-four__carousel {
  position: relative;
  width: 100%;
}
.main-slider-four__carousel .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  bottom: 130px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .main-slider-four__carousel .owl-dots {
    bottom: 80px;
  }
}
.main-slider-four__carousel .owl-dots .owl-dot {
  display: block;
  margin: 0;
}
.main-slider-four__carousel .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  display: block;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--careox-base, #ff5528);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-four__carousel .owl-dots .owl-dot:hover span,
.main-slider-four__carousel .owl-dots .owl-dot.active span {
  background-color: var(--careox-base, #ff5528);
}
.main-slider-four__item {
  position: relative;
  z-index: 3;
  padding-top: 142px;
  padding-bottom: 270px;
}
@media (max-width: 767px) {
  .main-slider-four__item {
    padding-top: 100px;
    padding-bottom: 150px;
  }
}
.main-slider-four__bg {
  position: absolute;
  width: calc(100% + 1px);
  height: 100%;
  top: 0;
  left: -1px;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  background-color: var(--careox-gray, #f1f6f7);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 411.000000"><g transform="translate(0.000000,411.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 3937 l0 -173 30 -26 c17 -14 30 -31 30 -37 0 -6 -14 -14 -30 -17 -25 -5 -30 -11 -30 -34 0 -27 0 -27 48 -19 26 5 55 12 65 15 10 3 24 1 32 -6 11 -9 12 -7 9 8 -6 21 19 47 36 37 15 -9 12 -42 -6 -70 -13 -19 -25 -25 -54 -25 -21 0 -43 -7 -50 -15 -7 -8 -18 -15 -25 -15 -7 0 -15 7 -19 15 -3 8 -12 15 -21 15 -12 0 -15 -12 -15 -53 0 -29 5 -58 12 -65 9 -9 9 -15 0 -24 -9 -9 -12 -71 -12 -219 l0 -206 25 -26 c26 -25 21 -42 -9 -31 -15 6 -16 -116 -14 -1392 l3 -1399 40 -7 c22 -5 78 -10 125 -12 47 -3 112 -7 145 -10 35 -3 64 -1 72 6 9 7 17 7 27 -1 20 -17 168 -20 173 -3 7 19 30 14 50 -10 17 -22 26 -23 143 -23 128 0 190 -9 174 -25 -5 -5 -25 -10 -44 -12 -53 -5 -32 -23 27 -23 60 0 74 9 47 29 -18 14 -18 15 9 21 20 5 33 3 44 -8 13 -13 19 -13 42 -1 34 18 59 18 95 -1 15 -8 41 -15 57 -15 24 0 29 -4 29 -24 0 -25 28 -36 97 -36 54 0 35 23 -23 28 -56 4 -62 8 -46 24 13 13 267 12 287 0 5 -4 30 -7 55 -8 80 -1 175 -16 191 -31 13 -11 22 -11 41 -2 19 8 31 8 46 0 26 -14 397 -14 1057 -1 917 18 1020 20 1480 21 253 0 649 5 880 10 231 5 848 14 1370 20 1185 13 1491 17 1725 23 102 3 274 6 383 6 l197 0 0 2000 0 2000 -3933 0 c-2164 0 -3937 -3 -3940 -7 -14 -14 17 -33 54 -33 27 0 39 -4 39 -14 0 -11 -14 -14 -62 -12 -58 2 -83 15 -59 31 6 3 11 13 11 21 0 12 -29 14 -175 14 -143 0 -175 -3 -175 -14 0 -23 27 -27 169 -25 91 1 136 -2 139 -10 4 -12 1 -13 -220 -16 -100 -2 -163 -7 -172 -14 -10 -9 -16 -8 -26 4 -16 20 -6 31 39 42 19 5 36 14 39 21 3 9 -81 12 -362 12 l-366 0 0 -173z m494 -262 c3 -8 0 -17 -5 -21 -14 -8 -43 21 -35 35 8 13 33 4 40 -14z m-190 -15 c-5 -4 -21 -10 -36 -14 -41 -9 -36 19 5 31 31 9 49 0 31 -17z m266 -1 c0 -5 -7 -9 -15 -9 -9 0 -15 9 -15 21 0 18 2 19 15 9 8 -7 15 -16 15 -21z m260 5 c0 -8 -7 -14 -15 -14 -15 0 -21 21 -9 33 10 9 24 -2 24 -19z m458 -10 c12 -8 22 -19 22 -24 0 -15 -37 -30 -57 -23 -22 7 -63 55 -57 65 7 10 64 -2 92 -18z m172 -27 c0 -21 -12 -28 -27 -16 -19 16 -16 29 7 29 11 0 20 -6 20 -13z m163 -14 c8 -7 -21 -43 -35 -43 -10 0 -11 34 -1 43 8 9 28 9 36 0z m154 -31 c8 -5 7 -14 -6 -31 -20 -26 -41 -21 -41 8 0 29 21 40 47 23z m93 -18 c0 -12 -4 -14 -12 -7 -7 6 -20 13 -28 16 -9 3 -3 6 13 6 19 1 27 -4 27 -15z m2431 3 c-1 -12 -15 -9 -19 4 -3 6 1 10 8 8 6 -3 11 -8 11 -12z m129 -13 c0 -8 -4 -14 -10 -14 -5 0 -10 9 -10 21 0 11 5 17 10 14 6 -3 10 -13 10 -21z m150 -5 c0 -10 -7 -19 -15 -19 -15 0 -21 31 -9 43 11 10 24 -3 24 -24z m-545 7 c18 -13 17 -15 -16 -31 -49 -26 -369 -36 -369 -12 0 11 14 16 58 20 31 2 77 10 101 16 34 9 51 9 73 0 19 -8 32 -8 41 -1 28 23 86 27 112 8z m-2010 -26 c-6 -9 -9 -9 -16 1 -10 17 0 34 13 21 6 -6 7 -16 3 -22z m245 -15 c0 -34 -66 -48 -90 -20 -10 12 -10 21 -2 40 11 23 12 24 52 8 22 -9 40 -21 40 -28z m1905 36 c5 -9 -95 -22 -108 -14 -4 2 -5 8 -2 13 7 11 103 11 110 1z m70 -21 c-5 -8 -11 -8 -17 -2 -6 6 -7 16 -3 22 5 8 11 8 17 2 6 -6 7 -16 3 -22z m-2115 1 c0 -28 -21 -37 -37 -16 -19 27 -16 35 12 35 18 0 25 -5 25 -19z m1317 -45 c-9 -23 -147 -23 -147 -1 0 11 11 15 43 15 24 0 52 6 63 14 16 13 21 13 33 1 7 -7 11 -21 8 -29z m164 29 c0 -5 -11 -12 -23 -13 -13 -2 -28 -8 -34 -13 -6 -5 -18 -3 -30 6 -16 13 -17 16 -4 25 19 12 90 8 91 -5z m-1147 -10 c11 -8 17 -18 14 -21 -10 -9 -46 5 -52 21 -7 19 13 19 38 0z m156 -15 c0 -5 -9 -10 -20 -10 -11 0 -20 5 -20 10 0 6 9 10 20 10 11 0 20 -4 20 -10z m130 -10 c0 -28 -45 -38 -70 -15 -30 27 -24 35 25 35 38 0 45 -3 45 -20z m197 5 c2 -6 -7 -16 -18 -23 -18 -12 -24 -11 -36 1 -9 8 -12 20 -8 27 8 13 57 10 62 -5z m216 0 c-1 -5 -21 -16 -44 -22 -36 -11 -46 -10 -66 2 -12 8 -29 15 -38 15 -8 0 -15 5 -15 10 0 6 32 9 83 8 48 -2 81 -7 80 -13z m-1861 -527 c-15 -15 -26 -4 -18 18 5 13 9 15 18 6 9 -9 9 -15 0 -24z m157 -19 c-15 -9 -32 -2 -24 11 3 5 13 6 21 3 12 -4 13 -8 3 -14z m439 -56 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m-1773 -114 c10 -15 -1 -22 -24 -14 -12 3 -19 11 -16 16 8 12 32 11 40 -2z m106 -34 c-1 -15 -24 -12 -29 3 -3 9 2 13 12 10 10 -1 17 -7 17 -13z m83 9 c9 -3 16 -10 16 -15 0 -11 -41 -12 -66 -2 -16 6 -16 7 2 14 25 10 29 10 48 3z m101 -34 c4 -6 -5 -10 -19 -10 -14 0 -26 5 -26 10 0 6 9 10 19 10 11 0 23 -4 26 -10z m162 -12 c51 -18 37 -55 -16 -41 -12 3 -28 0 -36 -7 -12 -10 -15 -9 -15 4 0 20 18 56 27 56 4 0 22 -5 40 -12z m96 -34 c-4 -12 -8 -13 -14 -3 -9 15 -2 32 11 24 5 -3 6 -13 3 -21z m117 1 c15 -18 5 -35 -23 -35 -31 0 -51 15 -44 34 8 20 50 21 67 1z m105 -5 c4 -6 14 -10 23 -9 27 2 46 -1 40 -7 -3 -3 -26 -7 -51 -10 -45 -4 -64 6 -52 26 8 13 32 13 40 0z m230 -39 c3 -5 1 -12 -4 -15 -12 -8 -41 3 -41 15 0 12 37 12 45 0z m218 -2 c21 -6 37 -16 37 -25 0 -22 -28 -28 -48 -10 -12 10 -41 16 -82 18 -40 2 -65 8 -68 16 -5 15 106 17 161 1z m117 -29 c0 -5 -9 -10 -20 -10 -11 0 -20 5 -20 10 0 6 9 10 20 10 11 0 20 -4 20 -10z m172 -13 c32 -2 42 -11 35 -31 -10 -25 -117 8 -117 36 0 6 11 7 28 3 15 -4 39 -7 54 -8z m793 -106 c7 -12 -12 -24 -25 -16 -11 7 -4 25 10 25 5 0 11 -4 15 -9z m-1775 -2217 c0 -23 2 -24 74 -24 69 0 100 -10 77 -24 -5 -4 -48 -3 -95 0 l-86 7 0 32 c0 17 3 35 6 38 12 11 24 -3 24 -29z m295 -33 c3 -6 -4 -15 -16 -22 -24 -13 -75 4 -64 21 8 13 72 13 80 1z m279 -8 c4 -9 1 -20 -6 -24 -15 -9 -130 -1 -176 13 -56 17 -25 28 78 28 82 0 99 -3 104 -17z m76 -13 c0 -15 -7 -20 -25 -20 -29 0 -32 8 -7 26 24 19 32 17 32 -6z m340 -30 c0 -29 -15 -31 -39 -6 -21 23 -22 24 -4 28 27 6 43 -2 43 -22z m6775 -9 c8 -14 -10 -22 -30 -15 -13 5 -14 8 -3 15 17 11 26 11 33 0z"/><path d="M0 94 c0 -24 3 -26 32 -20 31 6 108 -19 108 -36 0 -4 11 -15 24 -23 19 -13 28 -14 51 -3 21 9 31 9 46 0 15 -10 30 -10 66 0 36 9 48 9 51 0 2 -7 10 -12 18 -12 12 0 12 4 4 20 -16 30 -46 43 -69 28 -15 -9 -23 -9 -35 1 -9 8 -16 19 -16 27 0 9 -10 11 -35 7 -20 -3 -41 -1 -49 6 -7 6 -21 9 -29 5 -9 -3 -31 -1 -49 4 -18 6 -52 13 -75 16 -41 6 -43 5 -43 -20z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 411.000000"><g transform="translate(0.000000,411.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M0 3937 l0 -173 30 -26 c17 -14 30 -31 30 -37 0 -6 -14 -14 -30 -17 -25 -5 -30 -11 -30 -34 0 -27 0 -27 48 -19 26 5 55 12 65 15 10 3 24 1 32 -6 11 -9 12 -7 9 8 -6 21 19 47 36 37 15 -9 12 -42 -6 -70 -13 -19 -25 -25 -54 -25 -21 0 -43 -7 -50 -15 -7 -8 -18 -15 -25 -15 -7 0 -15 7 -19 15 -3 8 -12 15 -21 15 -12 0 -15 -12 -15 -53 0 -29 5 -58 12 -65 9 -9 9 -15 0 -24 -9 -9 -12 -71 -12 -219 l0 -206 25 -26 c26 -25 21 -42 -9 -31 -15 6 -16 -116 -14 -1392 l3 -1399 40 -7 c22 -5 78 -10 125 -12 47 -3 112 -7 145 -10 35 -3 64 -1 72 6 9 7 17 7 27 -1 20 -17 168 -20 173 -3 7 19 30 14 50 -10 17 -22 26 -23 143 -23 128 0 190 -9 174 -25 -5 -5 -25 -10 -44 -12 -53 -5 -32 -23 27 -23 60 0 74 9 47 29 -18 14 -18 15 9 21 20 5 33 3 44 -8 13 -13 19 -13 42 -1 34 18 59 18 95 -1 15 -8 41 -15 57 -15 24 0 29 -4 29 -24 0 -25 28 -36 97 -36 54 0 35 23 -23 28 -56 4 -62 8 -46 24 13 13 267 12 287 0 5 -4 30 -7 55 -8 80 -1 175 -16 191 -31 13 -11 22 -11 41 -2 19 8 31 8 46 0 26 -14 397 -14 1057 -1 917 18 1020 20 1480 21 253 0 649 5 880 10 231 5 848 14 1370 20 1185 13 1491 17 1725 23 102 3 274 6 383 6 l197 0 0 2000 0 2000 -3933 0 c-2164 0 -3937 -3 -3940 -7 -14 -14 17 -33 54 -33 27 0 39 -4 39 -14 0 -11 -14 -14 -62 -12 -58 2 -83 15 -59 31 6 3 11 13 11 21 0 12 -29 14 -175 14 -143 0 -175 -3 -175 -14 0 -23 27 -27 169 -25 91 1 136 -2 139 -10 4 -12 1 -13 -220 -16 -100 -2 -163 -7 -172 -14 -10 -9 -16 -8 -26 4 -16 20 -6 31 39 42 19 5 36 14 39 21 3 9 -81 12 -362 12 l-366 0 0 -173z m494 -262 c3 -8 0 -17 -5 -21 -14 -8 -43 21 -35 35 8 13 33 4 40 -14z m-190 -15 c-5 -4 -21 -10 -36 -14 -41 -9 -36 19 5 31 31 9 49 0 31 -17z m266 -1 c0 -5 -7 -9 -15 -9 -9 0 -15 9 -15 21 0 18 2 19 15 9 8 -7 15 -16 15 -21z m260 5 c0 -8 -7 -14 -15 -14 -15 0 -21 21 -9 33 10 9 24 -2 24 -19z m458 -10 c12 -8 22 -19 22 -24 0 -15 -37 -30 -57 -23 -22 7 -63 55 -57 65 7 10 64 -2 92 -18z m172 -27 c0 -21 -12 -28 -27 -16 -19 16 -16 29 7 29 11 0 20 -6 20 -13z m163 -14 c8 -7 -21 -43 -35 -43 -10 0 -11 34 -1 43 8 9 28 9 36 0z m154 -31 c8 -5 7 -14 -6 -31 -20 -26 -41 -21 -41 8 0 29 21 40 47 23z m93 -18 c0 -12 -4 -14 -12 -7 -7 6 -20 13 -28 16 -9 3 -3 6 13 6 19 1 27 -4 27 -15z m2431 3 c-1 -12 -15 -9 -19 4 -3 6 1 10 8 8 6 -3 11 -8 11 -12z m129 -13 c0 -8 -4 -14 -10 -14 -5 0 -10 9 -10 21 0 11 5 17 10 14 6 -3 10 -13 10 -21z m150 -5 c0 -10 -7 -19 -15 -19 -15 0 -21 31 -9 43 11 10 24 -3 24 -24z m-545 7 c18 -13 17 -15 -16 -31 -49 -26 -369 -36 -369 -12 0 11 14 16 58 20 31 2 77 10 101 16 34 9 51 9 73 0 19 -8 32 -8 41 -1 28 23 86 27 112 8z m-2010 -26 c-6 -9 -9 -9 -16 1 -10 17 0 34 13 21 6 -6 7 -16 3 -22z m245 -15 c0 -34 -66 -48 -90 -20 -10 12 -10 21 -2 40 11 23 12 24 52 8 22 -9 40 -21 40 -28z m1905 36 c5 -9 -95 -22 -108 -14 -4 2 -5 8 -2 13 7 11 103 11 110 1z m70 -21 c-5 -8 -11 -8 -17 -2 -6 6 -7 16 -3 22 5 8 11 8 17 2 6 -6 7 -16 3 -22z m-2115 1 c0 -28 -21 -37 -37 -16 -19 27 -16 35 12 35 18 0 25 -5 25 -19z m1317 -45 c-9 -23 -147 -23 -147 -1 0 11 11 15 43 15 24 0 52 6 63 14 16 13 21 13 33 1 7 -7 11 -21 8 -29z m164 29 c0 -5 -11 -12 -23 -13 -13 -2 -28 -8 -34 -13 -6 -5 -18 -3 -30 6 -16 13 -17 16 -4 25 19 12 90 8 91 -5z m-1147 -10 c11 -8 17 -18 14 -21 -10 -9 -46 5 -52 21 -7 19 13 19 38 0z m156 -15 c0 -5 -9 -10 -20 -10 -11 0 -20 5 -20 10 0 6 9 10 20 10 11 0 20 -4 20 -10z m130 -10 c0 -28 -45 -38 -70 -15 -30 27 -24 35 25 35 38 0 45 -3 45 -20z m197 5 c2 -6 -7 -16 -18 -23 -18 -12 -24 -11 -36 1 -9 8 -12 20 -8 27 8 13 57 10 62 -5z m216 0 c-1 -5 -21 -16 -44 -22 -36 -11 -46 -10 -66 2 -12 8 -29 15 -38 15 -8 0 -15 5 -15 10 0 6 32 9 83 8 48 -2 81 -7 80 -13z m-1861 -527 c-15 -15 -26 -4 -18 18 5 13 9 15 18 6 9 -9 9 -15 0 -24z m157 -19 c-15 -9 -32 -2 -24 11 3 5 13 6 21 3 12 -4 13 -8 3 -14z m439 -56 c-10 -2 -28 -2 -40 0 -13 2 -5 4 17 4 22 1 32 -1 23 -4z m-1773 -114 c10 -15 -1 -22 -24 -14 -12 3 -19 11 -16 16 8 12 32 11 40 -2z m106 -34 c-1 -15 -24 -12 -29 3 -3 9 2 13 12 10 10 -1 17 -7 17 -13z m83 9 c9 -3 16 -10 16 -15 0 -11 -41 -12 -66 -2 -16 6 -16 7 2 14 25 10 29 10 48 3z m101 -34 c4 -6 -5 -10 -19 -10 -14 0 -26 5 -26 10 0 6 9 10 19 10 11 0 23 -4 26 -10z m162 -12 c51 -18 37 -55 -16 -41 -12 3 -28 0 -36 -7 -12 -10 -15 -9 -15 4 0 20 18 56 27 56 4 0 22 -5 40 -12z m96 -34 c-4 -12 -8 -13 -14 -3 -9 15 -2 32 11 24 5 -3 6 -13 3 -21z m117 1 c15 -18 5 -35 -23 -35 -31 0 -51 15 -44 34 8 20 50 21 67 1z m105 -5 c4 -6 14 -10 23 -9 27 2 46 -1 40 -7 -3 -3 -26 -7 -51 -10 -45 -4 -64 6 -52 26 8 13 32 13 40 0z m230 -39 c3 -5 1 -12 -4 -15 -12 -8 -41 3 -41 15 0 12 37 12 45 0z m218 -2 c21 -6 37 -16 37 -25 0 -22 -28 -28 -48 -10 -12 10 -41 16 -82 18 -40 2 -65 8 -68 16 -5 15 106 17 161 1z m117 -29 c0 -5 -9 -10 -20 -10 -11 0 -20 5 -20 10 0 6 9 10 20 10 11 0 20 -4 20 -10z m172 -13 c32 -2 42 -11 35 -31 -10 -25 -117 8 -117 36 0 6 11 7 28 3 15 -4 39 -7 54 -8z m793 -106 c7 -12 -12 -24 -25 -16 -11 7 -4 25 10 25 5 0 11 -4 15 -9z m-1775 -2217 c0 -23 2 -24 74 -24 69 0 100 -10 77 -24 -5 -4 -48 -3 -95 0 l-86 7 0 32 c0 17 3 35 6 38 12 11 24 -3 24 -29z m295 -33 c3 -6 -4 -15 -16 -22 -24 -13 -75 4 -64 21 8 13 72 13 80 1z m279 -8 c4 -9 1 -20 -6 -24 -15 -9 -130 -1 -176 13 -56 17 -25 28 78 28 82 0 99 -3 104 -17z m76 -13 c0 -15 -7 -20 -25 -20 -29 0 -32 8 -7 26 24 19 32 17 32 -6z m340 -30 c0 -29 -15 -31 -39 -6 -21 23 -22 24 -4 28 27 6 43 -2 43 -22z m6775 -9 c8 -14 -10 -22 -30 -15 -13 5 -14 8 -3 15 17 11 26 11 33 0z"/><path d="M0 94 c0 -24 3 -26 32 -20 31 6 108 -19 108 -36 0 -4 11 -15 24 -23 19 -13 28 -14 51 -3 21 9 31 9 46 0 15 -10 30 -10 66 0 36 9 48 9 51 0 2 -7 10 -12 18 -12 12 0 12 4 4 20 -16 30 -46 43 -69 28 -15 -9 -23 -9 -35 1 -9 8 -16 19 -16 27 0 9 -10 11 -35 7 -20 -3 -41 -1 -49 6 -7 6 -21 9 -29 5 -9 -3 -31 -1 -49 4 -18 6 -52 13 -75 16 -41 6 -43 5 -43 -20z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.main-slider-four__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
  background-size: cover;
}
.main-slider-four__bg img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-four__bg img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.main-slider-four__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black2-rgb, 18, 18, 18), 0.69);
}
.main-slider-four__content {
  position: relative;
  z-index: 3;
  padding: 0;
}
.main-slider-four__heart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 113px;
  margin: auto;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-four__heart img {
  animation: treeMove 4s linear 0s infinite;
}
.main-slider-four__title {
  color: var(--careox-white, #fff);
  font-size: 65px;
  font-weight: 900;
  line-height: 81px;
  text-transform: capitalize;
  margin: 18px 0 14px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 991px) {
  .main-slider-four__title {
    font-size: 52px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 10px;
  }
}
.main-slider-four__text {
  color: var(--careox-white, #fff);
  font-size: 18px;
  margin: 0 0 46px;
  letter-spacing: 0.27px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-four__text {
    font-size: 16px;
  }
}
.main-slider-four__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  z-index: 5;
}
.main-slider-four__btn .careox-btn {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-four__btn .video-popup {
  width: 50px;
  height: 50px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--careox-secondary, #ffa415);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-four__btn .video-popup .ripple,
.main-slider-four__btn .video-popup .ripple:before,
.main-slider-four__btn .video-popup .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(var(--careox-white-rgb, 255, 255, 255), 0.25);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.main-slider-four__btn .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.main-slider-four__btn .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.main-slider-four__btn .video-popup:hover {
  color: var(--careox-white, #fff);
  background-color: var(--careox-secondary, #ffa415);
}
.main-slider-four .active .main-slider-four__bg img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.main-slider-four .active .main-slider-four__bg img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.main-slider-four .active .main-slider-four__heart {
  opacity: 1;
  animation-delay: 1s;
  animation-name: backInUp;
}
.main-slider-four .active .main-slider-four__title {
  opacity: 1;
  animation-delay: 1.2s;
  animation-name: backInUp;
}
.main-slider-four .active .main-slider-four__text {
  opacity: 1;
  animation-delay: 1.5s;
  animation-name: backInUp;
}
.main-slider-four .active .main-slider-four__btn .careox-btn {
  opacity: 1;
  animation-delay: 1.7s;
  animation-name: bounceInLeft;
}
.main-slider-four .active .main-slider-four__btn .video-popup {
  opacity: 1;
  animation-delay: 1.7s;
  animation-name: bounceInRight;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  background-color: var(--careox-black, #122f2a);
  padding: 470px 0 120px;
  margin-top: -305px;
  counter-reset: count;
}
@media (max-width: 991px) {
  .feature-one {
    padding: 400px 0 120px;
  }
}
@media (max-width: 767px) {
  .feature-one {
    padding: 380px 0 80px;
  }
}
.feature-one--about {
  background-color: transparent;
  padding: 180px 0 120px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .feature-one--about {
    padding: 80px 0;
  }
}
.feature-one--about .feature-one__item__number,
.feature-one--about .feature-one__item {
  background-color: var(--careox-gray, #f1f6f7);
}
.feature-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.feature-one .container {
  position: relative;
}
.feature-one__shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -34px;
  margin: auto;
  width: 100%;
  height: 298px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: shapeMove 4s linear 0s infinite;
}
@media (max-width: 1199px) {
  .feature-one__shape {
    display: none;
  }
}
.feature-one__item {
  position: relative;
  z-index: 1;
  max-width: 352px;
  background-color: var(--careox-white, #fff);
  min-height: 117px;
  border-radius: 58px;
  counter-increment: count;
  padding: 24px 30px 20px 119px;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .feature-one__item {
    margin-right: 10px;
  }
}
.feature-one__item__inner {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.feature-one__item::after {
  background-color: var(--careox-black, #122f2a);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  border-radius: 58px;
  transition: all 700ms ease;
  z-index: -1;
}
.feature-one__item:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.feature-one__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--accent-color);
  position: absolute;
  left: 39px;
  top: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
  transition: 400ms ease;
}
.feature-one__item__icon::after {
  position: absolute;
  left: 0;
  top: -20px;
  margin: auto;
  bottom: 0;
  width: 38px;
  height: 33px;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  opacity: 0.13;
  transition: 400ms ease;
}
.feature-one__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
  position: relative;
  z-index: 1;
}
.feature-one__item:hover .feature-one__item__icon {
  color: var(--accent-color);
}
.feature-one__item:hover .feature-one__item__icon::after {
  background-color: var(--careox-white, #fff);
}
.feature-one__item:hover .feature-one__item__icon span {
  transform: scale(0.9);
}
.feature-one__item__title {
  font-size: 24px;
  font-weight: 800;
  transition: 300ms ease;
  margin: 0 0 9px;
}
.feature-one__item:hover .feature-one__item__title {
  color: var(--careox-white, #fff);
}
.feature-one__item__text {
  transition: 300ms ease;
  margin: 0;
}
.feature-one__item:hover .feature-one__item__text {
  color: var(--careox-white, #fff);
}
.feature-one__item__rm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
  position: absolute;
  font-size: 16px;
  right: -18px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 400ms ease;
}
.feature-one__item__rm:hover {
  transform: rotate(90deg);
}
.feature-one__item__shape {
  position: absolute;
  right: 27px;
  bottom: 0;
  width: 215px;
  height: 0;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.09;
  visibility: visible;
  transition: 600ms ease;
}
.feature-one__item:hover .feature-one__item__shape {
  height: 100px;
  visibility: visible;
}
.feature-one__item__number {
  width: 75px;
  height: 60px;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  margin: auto;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--accent-color);
  font-size: 34px;
  font-weight: 700;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}
.feature-one__item__number::after {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 9px;
  left: -4px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-one__item__number::before {
  background-color: var(--accent-color);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 700ms ease;
  z-index: -1;
}
.feature-one__item:hover .feature-one__item__number {
  color: var(--careox-white, #fff);
}
.feature-one__item:hover .feature-one__item__number::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.feature-one__item--reverse {
  position: relative;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .feature-one__item--reverse {
    margin-bottom: 60px;
  }
}
.feature-one__item--reverse .feature-one__item__number {
  bottom: auto;
  top: -60px;
  border-radius: 50px 50px 0 0;
}
@media (max-width: 767px) {
  .feature-one__item--reverse .feature-one__item__number {
    top: auto;
    bottom: -60px;
    border-radius: 0 0 50px 50px;
  }
}
.feature-one__item--reverse .feature-one__item__number::after {
  bottom: 0;
}
@media (max-width: 767px) {
  .feature-one__item--reverse .feature-one__item__number::after {
    bottom: 5px;
  }
}
.feature-one__item--reverse .feature-one__item__rm {
  transform: rotate(180deg);
}
.feature-one__item--reverse .feature-one__item__rm:hover {
  transform: rotate(90deg);
}
@media (max-width: 767px) {
  .feature-one__item--reverse .feature-one__item__rm:hover {
    transform: rotate(90deg);
  }
}
@media (max-width: 767px) {
  .feature-one__item--reverse .feature-one__item__rm {
    transform: rotate(0);
  }
}

.feature-two {
  position: relative;
  z-index: 2;
  margin-top: -95px;
  counter-reset: count;
}
@media (max-width: 1300px) {
  .feature-two {
    margin-top: 0;
    padding-top: 80px;
  }
}
.feature-two__item {
  position: relative;
  z-index: 1;
  counter-increment: count;
  padding: 64px 0 21px;
}
.feature-two__item__inner {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  min-height: 117px;
  width: 100%;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 58px;
  padding: 24px 30px 20px 119px;
}
.feature-two__item__inner::after {
  background-color: var(--accent-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  border-radius: 58px;
  transition: all 700ms ease;
  z-index: -1;
}
.feature-two__item:hover .feature-two__item__inner:after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.feature-two__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--accent-color);
  position: absolute;
  left: 39px;
  top: 0;
  margin: auto;
  bottom: 0;
  z-index: 1;
  transition: 400ms ease;
}
.feature-two__item__icon::after {
  position: absolute;
  left: 0;
  top: -20px;
  margin: auto;
  bottom: 0;
  width: 38px;
  height: 33px;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  opacity: 0.13;
  transition: 400ms ease;
}
.feature-two__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
  position: relative;
  z-index: 1;
}
.feature-two__item:hover .feature-two__item__icon {
  color: var(--careox-white, #fff);
}
.feature-two__item:hover .feature-two__item__icon::after {
  background-color: var(--careox-white, #fff);
}
.feature-two__item:hover .feature-two__item__icon span {
  transform: scale(0.9);
}
.feature-two__item__title {
  font-size: 24px;
  font-weight: 800;
  transition: 300ms ease;
  margin: 0 0 9px;
}
.feature-two__item:hover .feature-two__item__title {
  color: var(--careox-white, #fff);
}
.feature-two__item__text {
  transition: 300ms ease;
  margin: 0;
}
.feature-two__item:hover .feature-two__item__text {
  color: var(--careox-white, #fff);
}
.feature-two__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
  position: absolute;
  font-size: 16px;
  top: auto;
  right: 0;
  left: 0;
  bottom: -21px;
  margin: 0 auto;
  transform: rotate(90deg);
  transition: 400ms ease;
}
.feature-two__item__rm:hover {
  transform: rotate(0);
}
.feature-two__item__shape {
  position: absolute;
  right: 27px;
  bottom: 0;
  width: 215px;
  height: 0;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.11;
  visibility: visible;
  transition: 600ms ease;
}
.feature-two__item:hover .feature-two__item__shape {
  height: 100px;
  visibility: visible;
}
.feature-two__item__number {
  width: 75px;
  height: 60px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 117px;
  margin: auto;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--accent-color);
  font-size: 34px;
  font-weight: 700;
  z-index: 2;
  overflow: hidden;
  border-radius: 0 0 50px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .feature-two__item__number {
    top: 166px;
  }
}
.feature-two__item__number::after {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 9px;
  left: -4px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-two__item__number::before {
  background-color: var(--careox-white, #fff);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  content: "";
  opacity: 0;
  visibility: hidden;
  transition: all 700ms ease;
  z-index: -1;
}
.feature-two__item:hover .feature-two__item__number {
  color: var(--accent-color);
}
.feature-two__item:hover .feature-two__item__number::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.feature-two__item__image {
  position: relative;
}
.feature-two__item__image img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
}

.feature-three {
  position: relative;
  overflow: hidden;
}
.feature-three .col-xl-3 {
  padding: 0;
}
.feature-three__item {
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding: 47px 70px 50px 85px;
  background-color: var(--accent-color);
}
@media (max-width: 1700px) {
  .feature-three__item {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1500px) {
  .feature-three__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .feature-three__item {
    padding-left: 50px;
    padding-right: 45px;
  }
}
@media (max-width: 400px) {
  .feature-three__item {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.feature-three__item__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transition-timing-function: ease-in-out;
  transition-duration: 0.4s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}
.feature-three__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  opacity: 0.87;
  content: "";
  width: 100%;
  height: 100%;
}
.feature-three__item:hover .feature-three__item__hover {
  transform: scaleY(1);
}
.feature-three__item__top {
  display: flex;
  align-items: center;
  gap: 25px;
  position: relative;
  border-bottom: 1px solid var(--careox-white, #fff);
  padding-bottom: 16px;
  margin: 0 0 23px;
}
.feature-three__item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: var(--careox-white, #fff);
  z-index: 1;
  transition: 400ms ease;
}
.feature-three__item__icon::after {
  position: absolute;
  left: 0;
  top: -20px;
  margin: auto;
  bottom: 0;
  width: 38px;
  height: 33px;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 38 33"><path d="m27.9 7.4c-0.1-5-3-9.2-6.9-6.6-1.3 0.8-2.1 2.6-3.4 3.5-1.3 0.8-2.8 0.9-4.3 0.9-2.9 0-6.4-1.3-7.2 2.8-0.6 2.7 2.8 4.5 2 7.2-0.3 0.8-1.1 1.4-1.8 1.9-1.7 1.3-2.9 2.4-4.2 4.3-2.3 3.4-2.5 5-1.7 7.1 0.9 2.4 4.2 4.6 7 3.5 3.3-1.3 3-4.1 6.6-5.6 3.1-1.2 4.1 1.4 5.2 3.6 2.2 4 6.5 3.9 9.4 0.3 0.9-1.1 2.5-3.6 2.2-5.3-0.3-1.3-2-2.1-2.8-3-3-3.1 2-4.3 4.6-5.4 2.5-1.1 6.5-3.4 5.1-7.5-0.4-1.5-3.6-2.7-4.9-2.2-1.8 0.7-4.8 2.5-4.9 0.5z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--careox-white, #fff);
  opacity: 0.13;
  transition: 400ms ease;
}
.feature-three__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
  position: relative;
  z-index: 1;
}
.feature-three__item:hover .feature-three__item__icon span {
  transform: scale(0.9);
}
.feature-three__item__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--careox-white, #fff);
  transition: 300ms ease;
  margin: 0;
}
.feature-three__item__text {
  transition: 300ms ease;
  line-height: 24px;
  color: var(--careox-white, #fff);
  text-transform: uppercase;
  font-family: var(--careox-special-font, "Caveat", cursive);
  margin: 0 0 10px;
}
.feature-three__item__list {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}
.feature-three__item__list li {
  position: relative;
  padding-left: 25px;
  margin-top: 6px;
  color: var(--careox-white, #fff);
}
.feature-three__item__list__icon {
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  font-size: 17px;
}
.feature-three__item .careox-btn {
  padding: 7px 32px;
  color: var(--careox-black, #122f2a);
}
.feature-three__item .careox-btn:hover {
  color: var(--careox-white, #fff);
}
.feature-three__item .careox-btn::before {
  background-color: var(--careox-white, #fff);
}
.feature-three__item .careox-btn::after {
  border-color: var(--careox-white, #fff);
}
.feature-three__item__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 240px;
  height: 151px;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.1;
  transition: 600ms ease;
  z-index: -1;
}

.feature-four {
  position: relative;
  z-index: 2;
  margin-top: -83px;
  counter-reset: count;
}
.feature-four__item {
  position: relative;
  z-index: 1;
  counter-increment: count;
  min-height: 416px;
  margin-bottom: 23px;
}
.feature-four__item__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  border-radius: 200px 200px 0 0;
  transition: all ease 0.4s;
}
.feature-four__item__bg::after {
  background-color: var(--accent-color);
  opacity: 0.67;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
}
.feature-four__item:hover .feature-four__item__bg {
  transform: scale(1.01);
}
.feature-four__item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}
.feature-four__item__number {
  width: 50px;
  height: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--careox-white, #fff);
  font-size: 35px;
  font-weight: 700;
  z-index: 2;
  overflow: hidden;
}
.feature-four__item__number::after {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-four__item__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--careox-white, #fff);
  transition: 300ms ease;
  margin: 2px 0 6px;
}
.feature-four__item__text {
  transition: 300ms ease;
  color: var(--careox-white, #fff);
  margin: 0 0 31px;
}
.feature-four__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
  font-size: 16px;
  transition: 400ms ease;
}
.feature-four__item__rm span {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.feature-four__item__rm:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--accent-color);
}
.feature-four__item__rm:hover span {
  animation: iconTranslateX 0.4s forwards;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 120px 0 35px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0 0;
  }
}
.about-one__shape {
  position: absolute;
  right: 3%;
  bottom: 0;
  display: none;
}
@media (min-width: 1600px) {
  .about-one__shape {
    display: block;
  }
}
.about-one__shape img {
  max-width: 100%;
  height: auto;
  animation: movebounce3 4s linear infinite;
}
.about-one__image {
  position: relative;
  z-index: 2;
  padding-left: 76px;
  padding-bottom: 76px;
}
@media (max-width: 767px) {
  .about-one__image {
    padding: 0;
  }
}
.about-one__image__one {
  position: relative;
}
.about-one__image__one img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-one__image__shape-one {
  position: absolute;
  left: 12px;
  top: 5px;
}
@media (max-width: 767px) {
  .about-one__image__shape-one {
    display: none;
  }
}
.about-one__image__shape-one img {
  max-width: 100%;
  height: auto;
  animation: movebounce3 3s linear infinite;
}
.about-one__image__shape-two {
  position: absolute;
  left: -42px;
  bottom: -40px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-one__image__shape-two {
    display: none;
  }
}
.about-one__image__shape-two img {
  max-width: 100%;
  height: auto;
  animation: zoomsIn 3s linear 0s infinite;
}
.about-one__image__shape-three {
  position: absolute;
  left: 232px;
  bottom: -45px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-one__image__shape-three {
    display: none;
  }
}
.about-one__image__shape-three img {
  max-width: 100%;
  height: auto;
  animation: movebounce2 3s linear 0s infinite;
}
.about-one__image__two {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: end;
}
@media (max-width: 767px) {
  .about-one__image__two {
    display: block;
    position: relative;
  }
}
.about-one__image__two img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
  border: 10px solid var(--careox-white, #fff);
  border-left: none;
}
.about-one__image__video {
  display: flex;
  align-items: center;
  color: var(--careox-white, #fff);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-size: 22px;
  font-weight: 700;
  background-color: var(--careox-base, #ff5528);
  min-width: 246px;
  margin-bottom: 28px;
  gap: 15px;
}
@media (max-width: 767px) {
  .about-one__image__video {
    max-width: 246px;
  }
}
.about-one__image__video .video-popup {
  width: 53px;
  height: 48px;
  color: var(--careox-white, #fff);
  background-color: var(--careox-secondary, #ffa415);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms ease;
}
.about-one__image__video .video-popup:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.about-one__content {
  position: relative;
  padding-top: 33px;
}
@media (max-width: 1199px) {
  .about-one__content {
    padding-top: 40px;
  }
}
.about-one__content .sec-title {
  padding-bottom: 20px;
}
.about-one__content__text {
  margin: 0 0 23px;
}
@media (min-width: 1200px) {
  .about-one__content__text {
    padding-right: 70px;
  }
}
.about-one__content__box {
  position: relative;
}
.about-one__content__box__top {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-one__content__box__icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  font-size: 31px;
  color: var(--careox-white, #fff);
  overflow: hidden;
}
.about-one__content__box__icon span {
  display: inline-block;
  transform: scale(1);
  transition: 500ms ease;
}
.about-one__content__box:hover .about-one__content__box__icon span {
  transform: scale(0.9);
}
.about-one__content__box__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-one__content__box:hover .about-one__content__box__title {
  background-size: 100% 2px;
}
.about-one__content__box__text {
  margin: 13px 0 0;
  position: relative;
  padding-left: 25px;
}
.about-one__content__box__text__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 17px;
}
.about-one__content__border {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--careox-border-color, #dddddd);
  margin: 30px 0 24px;
}
.about-one__content__border::after {
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  left: 0;
  top: -3px;
  position: absolute;
  animation: zumpX 15s linear infinite;
}
.about-one__content__list {
  margin: 0 0 45px;
  padding: 0;
  list-style: none;
}
.about-one__content__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.about-one__content__list li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}
.about-one__content__list li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.about-one__content__list__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 15px;
}
.about-one__text {
  font-size: 24px;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
}
@media (max-width: 767px) {
  .about-one__text {
    margin-top: 44px;
    display: block;
    text-align: center;
  }
}
.about-one__text > span {
  color: var(--careox-base, #ff5528);
  margin-right: 7px;
}
.about-one__text .careox-btn {
  margin-left: 16px;
  padding: 3px 32px;
}
.about-one__text .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.about-one--about {
  position: relative;
}
.about-one--about .about-one__image {
  padding-left: 0;
}
.about-one--about .about-one__image__two {
  left: 30px;
}
@media (max-width: 767px) {
  .about-one--about .about-one__image__two {
    left: 0;
  }
}
.about-one--about .about-one__image__two img {
  max-width: 223px;
  border: 10px solid var(--careox-white, #fff);
}
.about-one--about .about-one__image__shape-three {
  left: 215px;
}
.about-one--about .about-one__image__shape-two {
  left: -29px;
  bottom: 45px;
}

.about-two {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}
.about-two__shape {
  position: absolute;
  right: 45px;
  bottom: 0;
  display: none;
}
@media (min-width: 1500px) {
  .about-two__shape {
    display: block;
  }
}
.about-two__shape img {
  max-width: 100%;
  height: auto;
  animation: movebounce2 4s linear infinite;
  opacity: 0.25;
}
.about-two__image {
  position: relative;
  z-index: 2;
  text-align: right;
}
@media (min-width: 1200px) {
  .about-two__image {
    padding-right: 20px;
  }
}
@media (max-width: 991px) {
  .about-two__image {
    max-width: 570px;
  }
}
@media (max-width: 767px) {
  .about-two__image {
    padding: 0;
  }
}
.about-two__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-two__image__text {
  display: flex;
  align-items: center;
  color: var(--careox-white, #fff);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-size: 22px;
  font-weight: 700;
  background-color: var(--careox-base, #ff5528);
  max-width: 246px;
  margin-left: auto;
  z-index: 2;
  position: relative;
  margin-top: -48px;
  gap: 15px;
  border-radius: 0 0 30px 0;
}
.about-two__image__text .video-popup {
  width: 53px;
  height: 48px;
  color: var(--careox-white, #fff);
  background-color: var(--careox-secondary, #ffa415);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms ease;
}
.about-two__image__text .video-popup:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.about-two__image__left {
  position: absolute;
  left: 0;
  top: 59px;
  max-width: 223px;
}
@media (min-width: 1300px) {
  .about-two__image__left {
    left: -40px;
  }
}
@media (max-width: 767px) {
  .about-two__image__left {
    display: none;
  }
}
.about-two__image__left img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  border: 10px solid var(--careox-white, #fff);
  animation: movebounce3 3s linear infinite;
}
.about-two__image__shape-one {
  position: absolute;
  left: -20px;
  bottom: 150px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-two__image__shape-one {
    display: none;
  }
}
.about-two__image__shape-one img {
  max-width: 100%;
  height: auto;
  animation: movebounce3 3s linear infinite;
}
.about-two__image__shape-two {
  position: absolute;
  left: 50px;
  bottom: -22px;
  z-index: -1;
}
@media (max-width: 767px) {
  .about-two__image__shape-two {
    display: none;
  }
}
.about-two__image__shape-two img {
  max-width: 100%;
  height: auto;
  animation: zoomsIn 3s linear 0s infinite;
  opacity: 0.3;
}
.about-two__content {
  position: relative;
}
@media (max-width: 991px) {
  .about-two__content {
    padding-top: 40px;
  }
}
.about-two__content .sec-title {
  padding-bottom: 25px;
}
.about-two__content__text {
  margin: 0 0 50px;
}
@media (min-width: 1200px) {
  .about-two__content__text {
    padding-right: 70px;
  }
}
.about-two__wrapper {
  margin: 0 0 40px;
  padding: 0 0 36px;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
}
.about-two__donate {
  width: 100%;
  text-align: center;
  position: relative;
}
.about-two__donate__icon {
  margin-bottom: 18px;
  transition: transform 400ms ease;
  font-size: 50px;
  line-height: 50px;
  color: var(--accent-color);
}
.about-two__donate:hover .about-two__donate__icon {
  transform: scale(1.1);
}
.about-two__donate__title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 5px;
}
.about-two__donate__text {
  text-align: center;
  font-size: 26px;
  color: var(--accent-color);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  margin: 0;
}
.about-two__author {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-two__author {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.about-two__author > img {
  max-width: 242px;
  height: auto;
}
@media (max-width: 1199px) {
  .about-two__author > img {
    max-width: 200px;
  }
}
.about-two__author__left {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}
.about-two__author__image {
  width: 73px;
  height: 73px;
  border-radius: 50%;
  overflow: hidden;
  padding: 6px;
  position: relative;
}
.about-two__author__image::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}
.about-two__author__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.about-two__author__name {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 5px;
}
.about-two__author__designation {
  margin: 0;
}

.about-three {
  position: relative;
  padding: 170px 0 120px;
}
@media (max-width: 991px) {
  .about-three {
    padding-top: 120px;
  }
}
@media (max-width: 767px) {
  .about-three {
    padding: 80px 0 80px;
  }
}
.about-three__content {
  position: relative;
}
.about-three__content .sec-title {
  padding-bottom: 20px;
}
.about-three__content__text {
  margin: 0 0 21px;
}
@media (min-width: 1200px) {
  .about-three__content__text {
    padding-right: 70px;
  }
}
.about-three__content__text-two {
  margin: 22px 0 45px;
}
@media (min-width: 1200px) {
  .about-three__content__text-two {
    padding-right: 70px;
  }
}
.about-three__content__list {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}
.about-three__content__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.about-three__content__list li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}
.about-three__content__list li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.about-three__content__list__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 15px;
}
.about-three__content__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-three__content__box__icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  font-size: 31px;
  color: var(--careox-white, #fff);
  overflow: hidden;
}
.about-three__content__box__icon span {
  display: inline-block;
  transform: scale(1);
  transition: 500ms ease;
}
.about-three__content__box:hover .about-three__content__box__icon span {
  transform: scale(0.9);
}
.about-three__content__box__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-three__content__box:hover .about-three__content__box__title {
  background-size: 100% 2px;
}
.about-three__image {
  position: relative;
  text-align: right;
  max-width: 525px;
  margin-left: auto;
  padding-top: 99px;
}
@media (max-width: 1340px) {
  .about-three__image {
    margin-left: 0;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .about-three__image {
    padding-top: 45px;
  }
}
.about-three__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 10px 10px 10px 200px;
}
.about-three__image__right {
  max-width: 243px;
  position: absolute;
  right: 0;
  top: -55px;
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .about-three__image__right {
    right: -35px;
  }
}
@media (min-width: 1341px) {
  .about-three__image__right {
    right: -85px;
  }
}
@media (max-width: 767px) {
  .about-three__image__right {
    display: none;
  }
}
.about-three__image__right img {
  width: 100%;
  height: auto;
  border: 5px solid var(--careox-white, #fff);
  border-radius: 50px;
}
.about-three__image__shape-one {
  position: absolute;
  right: 175px;
  top: -15px;
}
.about-three__image__shape-one img {
  max-width: 100%;
  height: auto;
  animation: zoomsIn 4s linear 0s infinite;
}
@media (max-width: 767px) {
  .about-three__image__shape-one {
    display: none;
  }
}
.about-three__image__shape-two {
  position: absolute;
  left: 0;
  bottom: -25px;
}
.about-three__image__shape-two img {
  max-width: 100%;
  height: auto;
  animation: treeMove 4s linear 0s infinite;
}

.about-four {
  position: relative;
  padding: 150px 0 110px;
}
@media (max-width: 767px) {
  .about-four {
    padding: 80px 0;
  }
}
.about-four__shape {
  position: absolute;
  right: 2%;
  bottom: 60px;
  opacity: 0.09;
}
.about-four__shape img {
  max-width: 100%;
  height: auto;
  animation: rotated 15s infinite linear;
}
@media (max-width: 1600px) {
  .about-four__shape {
    display: none;
  }
}
.about-four__image {
  position: relative;
  text-align: right;
  padding-top: 40px;
  padding-bottom: 95px;
}
@media (max-width: 1199px) {
  .about-four__image {
    max-width: 570px;
  }
}
@media (min-width: 1340px) {
  .about-four__image {
    margin-right: 20px;
  }
}
@media (max-width: 767px) {
  .about-four__image {
    padding-top: 0;
  }
}
.about-four__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 30px;
}
.about-four__image__one {
  position: absolute;
  left: -22px;
  top: -43px;
  max-width: 225px;
}
.about-four__image__one img {
  max-width: 100%;
  height: auto;
  border: 10px solid var(--careox-white, #fff);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .about-four__image__one {
    display: none;
  }
}
.about-four__image__two {
  position: absolute;
  left: -208px;
  top: 197px;
  max-width: 208px;
}
.about-four__image__two img {
  max-width: 100%;
  height: auto;
  border: 10px solid var(--careox-white, #fff);
  border-radius: 30px;
}
@media (max-width: 1499px) {
  .about-four__image__two {
    display: none;
  }
}
.about-four__image__three {
  display: flex;
  align-items: end;
  position: absolute;
  left: 15px;
  bottom: 0;
}
.about-four__image__three img {
  max-width: 262px;
  height: auto;
  border: 10px solid var(--careox-white, #fff);
  border-radius: 30px;
}
@media (max-width: 767px) {
  .about-four__image__three img {
    display: none;
  }
}
.about-four__image__text {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 12px 23px;
  margin-bottom: 24px;
}
.about-four__image__text span {
  display: inline-block;
  font-size: 27px;
}
.about-four__content {
  position: relative;
}
@media (max-width: 1199px) {
  .about-four__content {
    padding-top: 40px;
  }
}
.about-four__content .sec-title {
  padding-bottom: 20px;
}
.about-four__content__text {
  margin: 0 0 23px;
}
@media (min-width: 1200px) {
  .about-four__content__text {
    padding-right: 70px;
  }
}
.about-four__content__highlight {
  position: relative;
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 700;
  border-left: 6px solid var(--careox-secondary, #ffa415);
  text-transform: uppercase;
  padding: 4px 0 2px 16px;
  margin-bottom: 35px;
}
.about-four__content__border {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--careox-border-color, #dddddd);
  margin: 0 0 74px;
}
.about-four__content__border::after {
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  left: 0;
  top: -3px;
  position: absolute;
  animation: zumpX 15s linear infinite;
}
.about-four__content__progress {
  position: relative;
  margin-bottom: 42px;
}
.about-four__content__progress__bar {
  width: 100%;
  height: 12px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 20px;
  position: relative;
  margin-bottom: 13px;
}
.about-four__content__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--careox-base, #ff5528);
  transition: all 1500ms linear;
  border-radius: 20px;
  width: 0px;
  z-index: 1;
}
.about-four__content__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--careox-base, #ff5528);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.about-four__content__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.about-four__content__progress__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  padding: 235px 0 120px;
}
.service-one__shape-one {
  position: absolute;
  left: 60px;
  top: 114px;
  width: 248px;
  height: 248px;
  background-position: top left;
  background-repeat: no-repeat;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .service-one__shape-one {
    display: none;
  }
}
.service-one__shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.8;
}
@media (max-width: 767px) {
  .service-one {
    padding: 190px 0 80px;
  }
}
.service-one__item {
  position: relative;
  background-color: var(--careox-white, #fff);
  z-index: 2;
  border-radius: 20px;
  padding: 40px 25px 35px;
  transition: all 500ms ease;
}
.service-one__item::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 82px);
  border: 1px dashed var(--careox-border-color, #dddddd);
  content: "";
  border-radius: 20px;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: -1;
  transform: scale(0.9);
}
.service-one__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
}
.service-one__item:hover::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.service-one__item:hover .service-one__item__rm {
  border-color: transparent;
}
.service-one__item__icon {
  font-size: 42px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 23px;
  background-color: transparent;
  width: 105px;
  height: 105px;
  transition: 300ms ease;
}
.service-one__item__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  opacity: 0.14;
  transition: 500ms ease;
  z-index: -1;
}
.service-one__item__icon::before {
  position: absolute;
  left: 6px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: var(--accent-color);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}
.service-one__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transform: scale(1);
  color: var(--accent-color);
  margin-left: 5px;
}
.service-one__item:hover .service-one__item__icon::after {
  opacity: 1;
}
.service-one__item:hover .service-one__item__icon::before {
  border-color: var(--careox-white, #fff);
}
.service-one__item:hover .service-one__item__icon span {
  transform: scale(0.9);
  color: var(--careox-white, #fff);
}
.service-one__item__title {
  font-size: 24px;
  font-weight: 800;
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.service-one__item__title a:hover {
  color: var(--careox-base, #ff5528);
  background-size: 100% 1px;
}
.service-one__item__text {
  margin: 0 0 23px;
}
.service-one__item__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
  max-width: 151px;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  font-size: 16px;
  color: var(--careox-text, #636363);
  text-transform: capitalize;
  line-height: 1.1;
  padding-top: 17px;
  transition: all 500ms ease;
}
.service-one__item__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__rm a:hover {
  background-size: 100% 1px;
}
.service-one__item__rm a:hover {
  color: var(--accent-color);
}
.service-one__item__rm i {
  color: var(--accent-color);
  font-size: 20px;
  position: relative;
  top: 1px;
}

.service-two {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-two {
    padding: 80px 0;
  }
}
.service-two__shape {
  position: absolute;
  left: 88px;
  bottom: 140px;
  width: 154px;
  height: 129px;
  background-position: bottom left;
  background-repeat: no-repeat;
  animation: treeMove 4s linear 0s infinite;
}
@media (max-width: 1300px) {
  .service-two__shape {
    display: none;
  }
}
.service-two__item {
  position: relative;
  background-color: var(--careox-white, #fff);
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 10px 0;
  transition: all 500ms ease;
}
.service-two__item::after {
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--accent-color);
  border-radius: 20px;
  transition: all 500ms ease;
  transform: translate3d(0px, 100%, 0px);
  z-index: -1;
}
.service-two__item__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  opacity: 0.09;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 500ms ease;
}
.service-two__item:hover::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.service-two__item:hover .service-two__item__shape {
  width: 165px;
  height: 153px;
}
.service-two__item:hover .service-two__item__rm a,
.service-two__item:hover .service-two__item__text,
.service-two__item:hover .service-two__item__title {
  color: var(--careox-white, #fff);
}
.service-two__item:hover .service-two__item__rm {
  border-color: rgba(var(--careox-border-color-rgb, 221, 221, 221), 0.31);
}
.service-two__item:hover .service-two__item__rm i {
  color: var(--careox-white, #fff);
}
.service-two__item__image {
  position: relative;
}
.service-two__item__image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.service-two__item__icon {
  font-size: 42px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 23px;
  background-color: transparent;
  width: 105px;
  height: 105px;
  transition: 300ms ease;
}
.service-two__item__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 500ms ease;
}
.service-two__item__icon::before {
  position: absolute;
  left: 6px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: var(--careox-white, #fff);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}
.service-two__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transform: scale(1);
  color: var(--careox-white, #fff);
  margin-left: 5px;
}
.service-two__item:hover .service-two__item__icon::after {
  background-color: var(--careox-white, #fff);
}
.service-two__item:hover .service-two__item__icon::before {
  border-color: var(--accent-color);
}
.service-two__item:hover .service-two__item__icon span {
  transform: scale(0.9);
  color: var(--accent-color);
}
.service-two__item__title {
  font-size: 24px;
  font-weight: 800;
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}
.service-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.service-two__item__title a:hover {
  color: var(--careox-base, #ff5528);
  background-size: 100% 1px;
}
.service-two__item__text {
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
  padding: 0 20px;
  margin: 0 0 15px;
}
.service-two__item__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 20px;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  font-size: 16px;
  color: var(--careox-text, #636363);
  text-transform: capitalize;
  line-height: 1.1;
  padding: 16px 0;
  transition: all 300ms ease;
}
.service-two__item__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}
.service-two__item__rm a:hover {
  background-size: 100% 1px;
}
.service-two__item__rm a:hover {
  color: inherit;
}
.service-two__item__rm i {
  color: var(--accent-color);
  font-size: 20px;
  position: relative;
  top: 1px;
  transition: all 300ms ease;
}

.service-three {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  padding: 120px 0 110px;
}
@media (max-width: 767px) {
  .service-three {
    padding: 80px 0;
  }
}
.service-three__shape-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
}
.service-three__shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: auto;
}
.service-three__item {
  position: relative;
  background-color: transparent;
  border: 1px solid var(--careox-border-color, #dddddd);
  z-index: 2;
  border-radius: 20px;
  overflow: hidden;
  padding: 9px 9px 0;
  transition: all 500ms ease;
}
.service-three__item:hover {
  background-color: var(--careox-white, #fff);
  border-color: var(--careox-white, #fff);
}
.service-three__item__normal {
  position: relative;
  z-index: 1;
}
.service-three__item__image {
  position: relative;
}
.service-three__item__image img {
  width: 100%;
  height: 242px;
  object-position: top;
  object-fit: cover;
  border-radius: 10px;
}
.service-three__item__icon {
  font-size: 42px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 23px;
  background-color: transparent;
  width: 105px;
  height: 105px;
  transition: 300ms ease;
}
.service-three__item__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
  z-index: -1;
  transition: 500ms ease;
}
.service-three__item__icon::before {
  position: absolute;
  left: 6px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: var(--careox-white, #fff);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
}
.service-three__item__icon span {
  display: inline-block;
  transition: all 500ms linear;
  transform: scale(1);
  color: var(--careox-white, #fff);
  margin-left: 5px;
}
.service-three__item__title {
  font-size: 24px;
  font-weight: 800;
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}
.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.service-three__item__title a:hover {
  color: var(--careox-base, #ff5528);
  background-size: 100% 1px;
}
.service-three__item__text {
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
  padding: 0 20px;
  margin: 0 0 15px;
}
.service-three__item__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 20px;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  font-size: 16px;
  color: var(--careox-text, #636363);
  text-transform: capitalize;
  line-height: 1.1;
  padding: 16px 0;
  transition: all 300ms ease;
}
.service-three__item__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}
.service-three__item__rm a:hover {
  background-size: 100% 1px;
}
.service-three__item__rm a:hover {
  color: inherit;
}
.service-three__item__rm i {
  color: var(--accent-color);
  font-size: 20px;
  position: relative;
  top: 1px;
  transition: all 300ms ease;
}
.service-three__item__hover {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  margin: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 700ms ease, top 700ms ease;
  transform: translateY(0%) translateZ(150px) scaleY(0) rotateX(90deg);
  perspective: 300px;
  transform-origin: center center;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
}
.service-three__item__hover::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 368px;
  z-index: -1;
  background-image: url(../images/shapes/overlay-service.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  transition: all ease 0.5s;
}
.service-three__item__hover__icon {
  font-size: 42px;
  line-height: 1;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 23px;
  color: var(--careox-white, #fff);
  width: 105px;
  height: 105px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 252.000000 252.000000"><g transform="translate(0.000000,252.000000) scale(0.100000,-0.100000)" stroke="none"><path d="M1285 2478 c-10 -59 13 -74 163 -103 33 -7 92 -49 92 -66 0 -5 -81 -9 -186 -9 -201 0 -192 2 -394 -69 -19 -7 -50 -17 -69 -21 -18 -5 -38 -13 -44 -19 -6 -6 -19 -11 -30 -11 -40 0 -171 -75 -226 -129 -63 -63 -121 -133 -141 -171 -18 -35 -61 -80 -77 -80 -28 0 -23 30 16 112 52 109 141 206 255 279 80 50 111 87 92 106 -10 11 -133 -25 -201 -59 -97 -47 -157 -107 -252 -249 -85 -130 -107 -154 -183 -199 -49 -29 -62 -50 -65 -102 -1 -21 -10 -47 -19 -57 -20 -22 -21 -128 -2 -181 24 -66 115 -92 131 -37 4 12 15 31 25 42 10 11 23 32 29 48 6 15 15 27 21 27 14 0 13 -10 -6 -61 -10 -29 -15 -74 -14 -134 1 -49 1 -120 0 -156 0 -41 5 -76 15 -95 16 -31 19 -96 6 -129 -7 -18 -9 -18 -23 10 -9 17 -19 46 -23 65 -13 62 -41 76 -91 43 -24 -15 -25 -20 -19 -68 3 -31 2 -62 -5 -77 -9 -20 -8 -33 5 -64 9 -21 28 -70 41 -107 31 -90 85 -178 153 -252 31 -33 72 -78 91 -100 109 -123 147 -108 61 24 -27 42 -59 101 -71 131 -11 30 -34 82 -50 115 -47 96 -76 257 -32 176 10 -17 34 -55 55 -86 21 -30 52 -83 69 -117 80 -163 169 -269 259 -310 20 -9 104 -62 189 -117 113 -75 172 -107 229 -125 42 -14 108 -36 146 -50 111 -41 175 -33 175 20 0 42 40 74 101 83 42 5 80 22 150 63 52 31 137 77 189 102 56 27 121 69 158 101 65 56 88 66 98 41 16 -41 -97 -132 -270 -219 -139 -70 -159 -89 -110 -107 82 -32 197 19 382 168 113 90 146 130 206 248 38 75 46 99 46 146 0 49 5 63 43 119 50 74 51 76 83 189 26 93 31 198 14 293 -6 31 -15 89 -20 129 -8 67 -34 193 -59 292 -5 21 -14 43 -20 49 -6 6 -11 17 -11 24 0 37 -188 289 -273 367 -18 16 -53 48 -79 72 -85 80 -198 145 -358 208 -25 10 -56 24 -70 31 -14 7 -37 15 -52 19 -16 3 -28 13 -28 21 0 12 -19 15 -104 15 l-104 0 -7 -42z"/><path d="M72 1318 c-18 -18 -14 -44 11 -74 33 -37 57 -27 57 24 0 40 -14 62 -40 62 -9 0 -21 -5 -28 -12z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  background-color: var(--accent-color);
}
.service-three__item__hover__icon::after {
  position: absolute;
  left: 17px;
  top: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  content: "";
  border-style: dashed;
  border-width: 1px;
  border-color: var(--careox-white, #fff);
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  animation-play-state: running;
  z-index: 1;
}
.service-three__item__hover__icon span {
  position: relative;
  left: 4px;
  z-index: 2;
}
.service-three__item__hover__title {
  font-size: 24px;
  font-weight: 800;
  color: var(--careox-white, #fff);
  transition: all 300ms ease;
  position: relative;
  margin-bottom: 10px;
}
.service-three__item__hover__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.service-three__item__hover__title a:hover {
  color: var(--careox-base, #ff5528);
  background-size: 100% 1px;
}
.service-three__item__hover__text {
  position: relative;
  z-index: 2;
  color: var(--careox-white, #fff);
  padding: 0 20px;
  margin: 0 0 15px;
}
.service-three__item__hover__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: calc(100% - 60px);
  border-top: 1px solid var(--careox-white, #fff);
  font-size: 16px;
  color: var(--careox-white, #fff);
  text-transform: capitalize;
  line-height: 1.1;
  padding: 16px 0;
  transition: all 300ms ease;
}
.service-three__item__hover__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  transition: all 300ms ease;
}
.service-three__item__hover__rm a:hover {
  background-size: 100% 1px;
}
.service-three__item__hover__rm a:hover {
  color: inherit;
}
.service-three__item__hover__rm i {
  font-size: 20px;
  position: relative;
  top: 1px;
  transition: all 300ms ease;
}
.service-three__item:hover .service-three__item__hover {
  transition: transform 500ms ease, top 500ms ease;
  transform: translateY(0%) translateZ(0px) scaleY(1) rotateX(0deg);
}
.service-three__text {
  font-size: 24px;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 73px;
}
@media (max-width: 767px) {
  .service-three__text {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .service-three__text {
    margin-top: 20px;
    display: block;
    text-align: center;
  }
}
.service-three__text > span {
  color: var(--careox-base, #ff5528);
  margin-right: 7px;
}
.service-three__text .careox-btn {
  margin-left: 16px;
  padding: 3px 32px;
}
.service-three__text .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  padding: 120px 0;
  padding-top: 100px;
  background-color: var(--careox-white, #fff);
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.service-details__thumbnail {
  margin-bottom: 20px;
}
.service-details img {
  max-width: 100%;
}
.service-details__image__circle img {
  border-radius: 50%;
}
.service-details__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--careox-black, #122f2a);
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .service-details__title {
    font-size: 30px;
  }
}
@media (min-width: 992px) {
  .service-details__title {
    font-size: 36px;
  }
}
.service-details__sub-title {
  margin: 0;
  text-transform: uppercase;
  color: var(--careox-black, #122f2a);
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .service-details__sub-title {
    font-size: 26px;
  }
}
@media (min-width: 992px) {
  .service-details__sub-title {
    font-size: 30px;
  }
}
.service-details__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
}
.service-details__text + .service-details__title {
  margin-top: 40px;
}
.service-details__text + .service-details__list {
  margin-top: 40px;
}
.service-details__text + .service-details__text {
  margin-top: 35px;
}
.service-details__list {
  margin-bottom: 0;
  margin-bottom: 40px;
}
.service-details__list li {
  position: relative;
  font-size: 16px;
  line-height: 1.5em;
  padding-left: 27px;
  color: var(--careox-black, #122f2a);
  text-shadow: 0 0 0.5px currentColor;
}
@media (min-width: 768px) {
  .service-details__list li {
    line-height: 2.125em;
  }
}
.service-details__list li + li {
  margin-top: 10px;
}
@media (min-width: 768px) {
  .service-details__list li + li {
    margin-top: 0;
  }
}
.service-details__list li > i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--careox-base, #ff5528);
}
@media (min-width: 768px) {
  .service-details__process {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 20px;
  }
}
.service-details__process li + li {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .service-details__process li + li {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .service-details__process__top {
    display: flex;
    align-items: center;
  }
}
.service-details__process__icon {
  width: 57px;
  height: 57px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  font-size: 21px;
  border-radius: 50%;
  margin-right: 20px;
  transition: all 500ms ease;
  margin-bottom: 20px;
}
.service-details__process__icon::before {
  transform: scale(1);
  transition: transform 500ms ease;
}
@media (min-width: 768px) {
  .service-details__process__icon {
    margin-bottom: 0;
  }
}
.service-details__process__icon:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.service-details__process__icon:hover::before {
  transform: scale(0.9);
}
.service-details__process__title {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: var(--careox-black, #122f2a);
}
@media (min-width: 768px) {
  .service-details__process__title {
    font-size: 20px;
  }
}
.service-details__process__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  max-width: 220px;
  margin-top: 10px;
}
.service-details__post {
  margin-bottom: 0;
}
.service-details__post li + li {
  margin-top: 10px;
}
.service-details__post__date {
  text-transform: uppercase;
  letter-spacing: var(--careox-letter-space-xl, 0.2em);
  color: var(--careox-base, #ff5528);
  font-size: 14px;
  margin: 0;
  line-height: 2.1428571429em;
}
.service-details__post__title {
  margin: 0;
  line-height: 1.875em;
  color: var(--careox-black, #122f2a);
  text-shadow: 0 0 0.5px currentColor;
}
.service-details__post__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-details__post__title a:hover {
  background-size: 100% 1px;
}
.service-details__post__title a:hover {
  color: var(--careox-black, #122f2a);
}
.service-details__info {
  border-top: 1px solid var(--careox-border-color, #dddddd);
  padding-top: 55px;
  margin-top: 60px;
}
.service-details__info__title {
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
  color: var(--careox-black, #122f2a);
  font-size: 20px;
  margin-bottom: 24px;
}
.service-details__info__list {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .service-details__info__list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.service-details__info__list li + li {
  border-top: 1px solid var(--careox-border-color, #dddddd);
  margin-top: 20px;
  padding-top: 20px;
}
.service-details__info__list__date {
  color: var(--careox-black, #122f2a);
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.service-details__info__list__date > i {
  color: var(--careox-base, #ff5528);
  font-size: 22px;
  margin-right: 10px;
}
.service-details__info__list__space {
  font-size: 16px;
  line-height: 24px;
  color: var(--careox-text, #636363);
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .service-details__info__list__space {
    margin-bottom: 0;
    margin-top: 0;
  }
}
.service-details__info__list__btn {
  font-size: 10px;
  padding: 10.75px 30px;
}

/*--------------------------------------------------------------
# Donation
--------------------------------------------------------------*/
.donations-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donations-one {
    padding: 80px 0;
  }
}
.donations-one__carousel.owl-carousel {
  position: relative;
}
.donations-one__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -168px;
  flex-direction: column;
  display: flex;
  margin: 0;
  gap: 10px;
}
@media (max-width: 767px) {
  .donations-one__carousel.owl-carousel .owl-nav {
    flex-direction: row;
    top: 0;
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
}
.donations-one__carousel.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--careox-black, #122f2a);
  transition: all 400ms ease;
}
.donations-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.donations-one__item {
  position: relative;
}
.donations-one__item__image {
  position: relative;
}
.donations-one__item__image img {
  width: 100%;
  height: auto;
}
.donations-one__item__image__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  opacity: 0.3;
  transition: all 900ms ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform: scale(0, 1);
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}
.donations-one__item:hover .donations-one__item__image__link {
  transform: scale(1, 1);
  transform-origin: left center;
}
.donations-one__item__category {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 1;
  background-color: var(--careox-white, #fff);
  color: var(--accent-color);
  font-size: 20px;
  letter-spacing: 0.25px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  border-radius: 30px;
  text-transform: capitalize;
  padding: 0 25px;
  height: 32px;
  transition: 400ms ease;
  line-height: 30px;
}
.donations-one__item:hover .donations-one__item__category {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.donations-one__item__content {
  position: relative;
  padding: 26px 30px 24px;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-bottom: none;
  border-top: none;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donations-one__item__content {
    padding: 26px 20px 24px;
  }
}
.donations-one__item__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 3px;
}
.donations-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;
}
.donations-one__item__title a:hover {
  background-size: 100% 1px;
}
.donations-one__item__title a:hover {
  color: var(--accent-color);
}
.donations-one__item__text {
  margin: 0;
  padding-right: 10px;
}
.donations-one__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  position: absolute;
  right: 0;
  bottom: -42px;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms linear;
}
.donations-one__item__rm i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
.donations-one__item__rm:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.donations-one__item__rm:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.donations-one__item:hover .donations-one__item__rm {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.donations-one__item__bottom {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  padding: 70px 30px 14px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donations-one__item__bottom {
    padding: 70px 20px 14px;
  }
}
.donations-one__item__bottom__shape {
  position: absolute;
  left: 0;
  top: 0;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 0.12;
}
.donations-one__item__bottom__progress {
  width: 100%;
  height: 7px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 10px;
  position: relative;
  margin-bottom: 3px;
}
.donations-one__item__bottom__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  transition: all 1500ms linear;
  border-radius: 10px;
  width: 0px;
  z-index: 1;
}
.donations-one__item__bottom__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--accent-color);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.donations-one__item__bottom__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donations-one__item__bottom__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}

.donations-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donations-two {
    padding: 80px 0;
  }
}
.donations-two__item {
  position: relative;
}
.donations-two__item__image {
  position: relative;
  overflow: hidden;
}
.donations-two__item__image img {
  width: 100%;
  height: auto;
  transition: all 400ms ease;
  transform: scale(1);
}
.donations-two__item:hover .donations-two__item__image img {
  transform: scale(1.05);
}
.donations-two__item__btn {
  position: absolute;
  left: 20px;
  top: 10px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.donations-two__item__btn a {
  font-size: 22px;
  color: var(--careox-white, #fff);
  display: inline-block;
}
.donations-two__item__btn a:hover {
  color: var(--accent-color);
}
.donations-two__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  position: absolute;
  overflow: hidden;
  right: 0;
  top: -42px;
  transition: all 300ms linear;
  visibility: hidden;
  opacity: 0;
}
.donations-two__item__rm i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.donations-two__item__rm:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.donations-two__item__rm:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.donations-two__item:hover .donations-two__item__rm {
  visibility: visible;
  opacity: 1;
  top: 0;
}
.donations-two__item__content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 0 25px 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donations-two__item__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.donations-two__item__content::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  opacity: 0;
  background-image: url(../images/shapes/overlay-event.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  visibility: hidden;
  transition: all ease 0.5s;
}
.donations-two__item:hover .donations-two__item__content::after {
  opacity: 1;
  visibility: visible;
  height: 285px;
}
.donations-two__item__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  color: var(--careox-white, #fff);
  font-weight: 800;
  margin-bottom: 15px;
}
.donations-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donations-two__item__title a:hover {
  background-size: 100% 1px;
}
.donations-two__item__title a:hover {
  color: var(--accent-color);
}
.donations-two__item__category {
  display: inline-block;
  position: relative;
  background-color: var(--careox-white, #fff);
  color: var(--accent-color);
  font-size: 20px;
  letter-spacing: 0.25px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  border-radius: 30px;
  text-transform: capitalize;
  padding: 0 25px;
  height: 32px;
  transition: 400ms ease;
  line-height: 30px;
  margin-bottom: 15px;
}
.donations-two__item__bottom {
  position: relative;
}
.donations-two__item__bottom__progress {
  width: 100%;
  height: 7px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 10px;
  position: relative;
  margin-bottom: 3px;
}
.donations-two__item__bottom__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  transition: all 1500ms linear;
  border-radius: 10px;
  width: 0px;
  z-index: 1;
}
.donations-two__item__bottom__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--accent-color);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.donations-two__item__bottom__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donations-two__item__bottom__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--careox-white, #fff);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}

.donations-three {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donations-three {
    padding: 80px 0;
  }
}
.donations-three__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 560px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
}
.donations-three__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.88);
}
.donations-three .sec-title__title {
  color: var(--careox-white, #fff);
}
.donations-three--page {
  position: relative;
}
.donations-three--page .sec-title__title {
  color: var(--careox-black, #122f2a);
}
.donations-three__carousel.owl-carousel {
  position: relative;
  z-index: 2;
}
.donations-three__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -168px;
  flex-direction: column;
  display: flex;
  margin: 0;
  gap: 10px;
}
@media (max-width: 767px) {
  .donations-three__carousel.owl-carousel .owl-nav {
    flex-direction: row;
    top: 0;
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
}
.donations-three__carousel.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--careox-gray, #f1f6f7);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--careox-black, #122f2a);
  transition: all 400ms ease;
}
.donations-three__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.donations-three__item {
  position: relative;
  background-color: var(--careox-white, #fff);
  border: 1px solid var(--careox-border-color, #dddddd);
}
.donations-three__item__image {
  position: relative;
  margin: 9px;
  overflow: hidden;
}
.donations-three__item__image img {
  width: 100%;
  height: auto;
}
.donations-three__item__image__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  opacity: 0.3;
  transition: all 900ms ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform: scale(0, 1);
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}
.donations-three__item:hover .donations-three__item__image__link {
  transform: scale(1, 1);
  transform-origin: left center;
}
.donations-three__item__rm {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -42px;
  visibility: hidden;
  opacity: 0;
  transition: all 300ms linear;
}
.donations-three__item__rm i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.donations-three__item__rm:hover {
  background-color: var(--careox-black, #122f2a);
  color: var(--careox-white, #fff);
}
.donations-three__item__rm:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.donations-three__item:hover .donations-three__item__rm {
  visibility: visible;
  opacity: 1;
  bottom: 0;
}
.donations-three__item__category {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  background-color: var(--careox-white, #fff);
  color: var(--accent-color);
  font-size: 20px;
  letter-spacing: 0.25px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  border-radius: 30px;
  text-transform: capitalize;
  padding: 0 25px;
  height: 32px;
  transition: 400ms ease;
  line-height: 30px;
}
.donations-three__item:hover .donations-three__item__category {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.donations-three__item__content {
  position: relative;
  padding: 18px 25px 24px;
  text-align: center;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donations-three__item__content {
    padding: 18px 20px 24px;
  }
}
.donations-three__item__title {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  margin-bottom: 3px;
}
.donations-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donations-three__item__title a:hover {
  background-size: 100% 1px;
}
.donations-three__item__title a:hover {
  color: var(--accent-color);
}
.donations-three__item__text {
  margin: 0;
  padding-right: 10px;
}
.donations-three__item__border {
  position: relative;
  background-position: left top;
  background-repeat: no-repeat;
  width: 100%;
  height: 50px;
  background-color: var(--careox-border-color, #dddddd);
  transition: all 300ms linear;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 300.000000 41.000000" ><g transform="translate(0.000000,41.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M4050 799 c-615 -41 -1218 -226 -1660 -510 -524 -337 -1066 -334 -1825 10 -203 91 -455 228 -510 277 -19 17 -42 24 -49 16 -37 -37 486 -326 784 -432 641 -230 1137 -204 1600 82 713 442 1523 601 2590 509 312 -27 821 -108 948 -151 61 -21 93 -12 61 17 -11 10 -113 36 -229 60 -606 124 -1129 161 -1710 122z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"  viewBox="0 0 300.000000 41.000000" ><g transform="translate(0.000000,41.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M4050 799 c-615 -41 -1218 -226 -1660 -510 -524 -337 -1066 -334 -1825 10 -203 91 -455 228 -510 277 -19 17 -42 24 -49 16 -37 -37 486 -326 784 -432 641 -230 1137 -204 1600 82 713 442 1523 601 2590 509 312 -27 821 -108 948 -151 61 -21 93 -12 61 17 -11 10 -113 36 -229 60 -606 124 -1129 161 -1710 122z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donations-three__item__bottom {
  margin: -49px 0 0;
  position: relative;
  background-color: var(--careox-white, #fff);
  padding: 82px 25px 14px;
  transition: all 300ms linear;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 137"><path d="m0 13c0 0 86.5 61.7 144.9 22 89.2-60.6 225.1-22 225.1-22v124h-370z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 370 137"><path d="m0 13c0 0 86.5 61.7 144.9 22 89.2-60.6 225.1-22 225.1-22v124h-370z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donations-three__item__bottom {
    padding: 82px 20px 14px;
  }
}
.donations-three__item__bottom__progress {
  width: 100%;
  height: 7px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 10px;
  position: relative;
  margin-bottom: 3px;
}
.donations-three__item__bottom__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--accent-color);
  transition: all 1500ms linear;
  border-radius: 10px;
  width: 0px;
  z-index: 1;
}
.donations-three__item__bottom__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--accent-color);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.donations-three__item__bottom__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donations-three__item__bottom__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  transition: all 300ms linear;
}
.donations-three__item:hover .donations-three__item__border, .donations-three__item:hover .donations-three__item__bottom {
  background-color: var(--careox-black, #122f2a);
}
.donations-three__item:hover .donations-three__item__bottom {
  background-color: var(--careox-black, #122f2a);
  margin-left: -1px;
  margin-right: -1px;
  margin-bottom: -1px;
}
.donations-three__item:hover .donations-three__item__bottom__text {
  color: var(--careox-white, #fff);
}
.donations-three__text {
  font-size: 24px;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 84px;
}
@media (max-width: 767px) {
  .donations-three__text {
    margin-top: 44px;
    display: block;
    text-align: center;
  }
}
.donations-three__text > span {
  color: var(--careox-base, #ff5528);
  margin-right: 7px;
}
.donations-three__text .careox-btn {
  margin-left: 16px;
  padding: 3px 32px;
}
.donations-three__text .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}

.donation-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donation-details {
    padding: 80px 0;
  }
}
.donation-details__content {
  position: relative;
}
.donation-details__image {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px 20px 0 0;
  margin-bottom: 42px;
}
.donation-details__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.donation-details__image__bottom {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 85px 35px 40px;
}
.donation-details__image__progress {
  width: 100%;
  height: 12px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 20px;
  position: relative;
  margin-bottom: 12px;
}
.donation-details__image__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--careox-base, #ff5528);
  transition: all 1500ms linear;
  border-radius: 20px;
  width: 0px;
  z-index: 1;
}
.donation-details__image__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--careox-base, #ff5528);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.donation-details__image__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donation-details__image__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}
.donation-details__image__border {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--careox-border-color, #dddddd);
  margin-top: 26px;
  margin-bottom: 40px;
}
.donation-details__image__border::after {
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  left: 0;
  bottom: -3.5px;
  position: absolute;
  animation: zumpX 15s linear infinite;
}
.donation-details__title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .donation-details__title {
    font-size: 30px;
  }
}
.donation-details__text {
  margin: 0 0 25px;
}
@media (min-width: 1200px) {
  .donation-details__text {
    padding-right: 42px;
  }
}
.donation-details__image-two {
  position: relative;
}
.donation-details__image-two img {
  width: 100%;
  height: auto;
}
.donation-details__list {
  margin: 27px 0 45px;
  padding: 0;
  list-style: none;
}
.donation-details__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.donation-details__list li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}
.donation-details__list li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.donation-details__list__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 15px;
}
.donation-details .contact-one__form {
  position: relative;
  border-top: 1px solid var(--careox-border-color, #dddddd);
  padding-top: 72px;
  margin-top: 80px;
}
.donation-details .contact-one__form__title {
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 35px;
}
.donation-details .contact-one__form .bootstrap-select > .dropdown-toggle,
.donation-details .contact-one__form input[type=text],
.donation-details .contact-one__form input[type=email],
.donation-details .contact-one__form input[type=tel],
.donation-details .contact-one__form textarea {
  border-color: var(--careox-border-color, #dddddd);
}
.donation-details__author {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  border-top: 5px solid var(--careox-base, #ff5528);
  padding: 45px 60px 43px;
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__author {
    padding: 35px 22px;
  }
}
@media (max-width: 991px) {
  .donation-details__author {
    margin-top: 50px;
  }
}
.donation-details__author__top {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  padding-bottom: 30px;
  margin-bottom: 25px;
}
.donation-details__author__top img {
  width: 71px;
  height: 71px;
  border-radius: 50%;
}
.donation-details__author__title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 5px;
}
.donation-details__author__designation {
  margin: 0;
  font-size: 17px;
}
.donation-details__author__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.donation-details__author__list li {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.donation-details__author__list li i {
  color: var(--careox-secondary, #ffa415);
}
.donation-details__author__list li + li {
  margin-top: 13px;
}
.donation-details__posts {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  border-top: 5px solid var(--careox-base, #ff5528);
  padding: 45px 45px 50px;
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__posts {
    padding: 35px 22px;
  }
}
.donation-details__share {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  border-top: 5px solid var(--careox-base, #ff5528);
  padding: 45px 45px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__share {
    padding: 35px 22px;
  }
}
.donation-details__share__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.donation-details__share__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--careox-white, #fff);
  font-size: 15px;
  color: var(--careox-text-gray, #bcbcbc);
  transition: all 500ms ease;
  border-radius: 50%;
}
.donation-details__share__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.donation-details__share__social a:hover {
  background-color: var(--accent-color);
  color: var(--careox-white, #fff);
}
.donation-details__share__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

/*--------------------------------------------------------------
# Donate
--------------------------------------------------------------*/
.donate-one {
  position: relative;
}
.donate-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: top right;
  background-repeat: no-repeat;
  min-height: 742px;
  background-color: var(--careox-black, #122f2a);
  clip-path: polygon(0 0, 100% 42%, 100% 100%, 0 100%);
}
.donate-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-black-rgb, 18, 47, 42), 0.78);
}
.donate-one__image {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-color: var(--careox-white, #fff);
  margin-left: 145px;
  margin-bottom: 25px;
  margin-top: -114px;
  padding: 0 23px;
}
@media (max-width: 1599px) {
  .donate-one__image {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .donate-one__image {
    margin-top: 0;
    padding: 0 15px;
  }
}
.donate-one__image::after {
  position: absolute;
  left: -20px;
  bottom: 0;
  width: 20px;
  height: 83.8%;
  content: "";
  background-color: var(--careox-base, #ff5528);
}
.donate-one__image::before {
  position: absolute;
  left: -20px;
  bottom: -25px;
  width: 40%;
  height: 25px;
  content: "";
  background-color: var(--careox-base, #ff5528);
  z-index: -1;
}
.donate-one__image img {
  max-width: 100%;
  height: auto;
  margin-bottom: -25px;
}

.donate-info {
  position: relative;
}
.donate-info__shape {
  position: absolute;
  width: 225px;
  height: 212px;
  right: 30px;
  bottom: 30px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: treeMove 4s linear 0s infinite;
  display: none;
}
@media (min-width: 1600px) {
  .donate-info__shape {
    display: block;
  }
}
.donate-info__left {
  position: relative;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 0 50px;
  overflow: hidden;
  padding: 103px 30px 107px 190px;
  margin-right: -30px;
}
@media (max-width: 1199px) {
  .donate-info__left {
    padding: 103px 25px 107px 150px;
  }
}
@media (max-width: 991px) {
  .donate-info__left {
    margin-right: 0;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.donate-info__left::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--careox-white-rgb, 255, 255, 255), 0.88);
}
.donate-info__left__icon {
  width: 108px;
  height: 108px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 57px;
  color: var(--careox-secondary, #ffa415);
  overflow: hidden;
  position: absolute;
  left: 52px;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
  transition: all 0.3s 0s ease-out;
}
@media (max-width: 1199px) {
  .donate-info__left__icon {
    left: 22px;
  }
}
.donate-info__left__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 101%;
  height: 0;
  content: "";
  background-color: var(--careox-secondary, #ffa415);
  border-radius: 50%;
  transition: all 0.3s 0s ease-out;
  z-index: -1;
}
.donate-info__left:hover .donate-info__left__icon {
  color: var(--careox-white, #fff);
}
.donate-info__left:hover .donate-info__left__icon::after {
  height: 100%;
}
.donate-info__left__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.48px;
  margin: 0 0 6px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  position: relative;
  z-index: 1;
}
.donate-info__left__text {
  font-size: 17px;
  font-weight: 500;
  margin: 0;
  position: relative;
  z-index: 1;
}
.donate-info__area {
  position: relative;
  z-index: 2;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50px 50px 50px 0;
  box-shadow: 0px 0px 38px 0px rgba(0, 0, 0, 0.08);
  padding: 78px 70px 70px;
  margin-top: -312px;
}
@media (max-width: 1340px) {
  .donate-info__area {
    padding: 78px 40px 70px;
  }
}
@media (max-width: 1199px) {
  .donate-info__area {
    padding: 60px 40px 40px;
    margin-top: -241px;
  }
}
@media (min-width: 1300px) {
  .donate-info__area {
    margin-right: -70px;
  }
}
@media (max-width: 991px) {
  .donate-info__area {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .donate-info__area {
    padding: 60px 25px 40px;
  }
}
.donate-info__area__date {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
  font-family: var(--careox-special-font, "Caveat", cursive);
  gap: 10px;
  position: absolute;
  right: 65px;
  top: 150px;
}
@media (max-width: 767px) {
  .donate-info__area__date {
    position: relative;
    right: auto;
    top: 0;
    margin: -40px 0 30px;
  }
}
.donate-info__area__date i {
  color: var(--careox-secondary, #ffa415);
}
.donate-info__area .sec-title {
  padding-bottom: 58px;
}
.donate-info__area__progress {
  position: relative;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  padding-bottom: 24px;
  margin-bottom: 33px;
}
.donate-info__area__progress::after {
  width: 7px;
  height: 7px;
  content: "";
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  left: 0;
  bottom: -4px;
  position: absolute;
  animation: zumpX 15s linear infinite;
}
.donate-info__area__progress__bar {
  width: 100%;
  height: 12px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 20px;
  position: relative;
  margin-bottom: 13px;
}
.donate-info__area__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--careox-base, #ff5528);
  transition: all 1500ms linear;
  border-radius: 20px;
  width: 0px;
  z-index: 1;
}
.donate-info__area__progress__number {
  width: 40px;
  height: 31px;
  position: absolute;
  z-index: 1;
  background-color: var(--careox-base, #ff5528);
  bottom: calc(100% + 18px);
  right: -16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.21px;
  color: var(--careox-white, #fff);
}
.donate-info__area__progress__number::after {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -15px;
  width: 22px;
  height: 32px;
  content: "";
  background-color: inherit;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22.000000 32.000000"><g transform="translate(0.000000,32.000000) scale(0.050000,-0.050000)" stroke="none"><path d="M131 575 c-5 -25 -33 -151 -62 -281 -29 -131 -48 -242 -42 -248 9 -9 332 214 401 276 17 15 -247 298 -276 298 -6 0 -15 -20 -21 -45z"/></g></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.donate-info__area__progress__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
}
.donate-info__form {
  position: relative;
  width: 100%;
}
.donate-info__form__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media (max-width: 1199px) {
  .donate-info__form__top {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.donate-info__form__amount {
  position: relative;
  max-width: 250px;
}
@media (max-width: 1199px) {
  .donate-info__form__amount {
    max-width: 100%;
  }
}
.donate-info__form__amount__sign {
  position: absolute;
  text-transform: uppercase;
  font-family: var(--careox-special-font, "Caveat", cursive);
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--careox-black, #122f2a);
  font-size: 30px;
  display: flex;
  align-items: center;
  font-weight: 900;
}
.donate-info__form input {
  display: block;
  width: 100%;
  height: 55px;
  background-color: var(--careox-border-color, #dddddd);
  color: var(--careox-black, #122f2a);
  font-size: 22px;
  font-weight: 500;
  text-align: right;
  border: none;
  outline: none;
  border-radius: 50px;
  padding-left: 100px;
  padding-right: 30px;
}
.donate-info__form__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.donate-info__form__buttons__item {
  height: 48px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--careox-text, #636363);
  font-weight: 500;
  font-family: var(--careox-font, "Rubik", sans-serif);
  border: none;
  outline: none;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.donate-info__form__buttons__item.active, .donate-info__form__buttons__item:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.donate-info__form__submit {
  display: flex;
  align-items: baseline;
  position: relative;
  margin-top: 30px;
}
.donate-info__form__submit .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.donate-info__form__submit img {
  width: 54px;
  height: 80px;
  position: absolute;
  left: 200px;
  bottom: 0;
  animation: shrinkAnim2 3s ease 0s infinite;
}

.donate-two {
  position: relative;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .donate-two {
    padding-top: 80px;
  }
}
.donate-two__inner {
  position: relative;
  z-index: 2;
  padding: 9px;
  border: 1px solid var(--careox-border-color, #dddddd);
  background-color: var(--careox-white, #fff);
  border-radius: 30px;
  margin-bottom: -290px;
}
.donate-two__content {
  position: relative;
  padding: 61px 70px 50px;
}
@media (max-width: 767px) {
  .donate-two__content {
    padding: 60px 20px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-two__content {
    padding-left: 20px;
    padding-right: 10px;
  }
}
.donate-two__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 27px;
}
.donate-two__text {
  font-size: 16px;
  line-height: 25px;
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-radius: 10px;
  padding: 12px 30px 12px 40px;
  position: relative;
  margin-bottom: 26px;
}
.donate-two__text span {
  color: var(--careox-secondary, #ffa415);
}
.donate-two__text::after {
  position: absolute;
  left: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 3px;
  height: 39px;
  background-color: var(--careox-base, #ff5528);
}
.donate-two__donate-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.donate-two__form {
  position: relative;
  width: 100%;
}
.donate-two__form__amount {
  position: relative;
}
.donate-two__form__amount__sign {
  position: absolute;
  text-transform: uppercase;
  font-family: var(--careox-special-font, "Caveat", cursive);
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--careox-white, #fff);
  font-size: 30px;
  display: flex;
  align-items: center;
  font-weight: 900;
}
.donate-two__form input {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
  font-size: 25px;
  font-weight: 500;
  text-align: right;
  border: none;
  outline: none;
  border-radius: 50px;
  padding-left: 100px;
  padding-right: 30px;
}
.donate-two__form__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 45px;
}
@media (max-width: 767px) {
  .donate-two__form__buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.donate-two__form__buttons__item {
  height: 48px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--careox-text, #636363);
  font-weight: 500;
  font-family: var(--careox-font, "Rubik", sans-serif);
  border: none;
  outline: none;
  padding: 0 24px;
  transition: all 0.4s ease;
}
.donate-two__form__buttons__item.active, .donate-two__form__buttons__item:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.donate-two__form__submit {
  display: flex;
  align-items: baseline;
  position: relative;
}
.donate-two__form__submit img {
  width: 54px;
  height: 80px;
  position: absolute;
  left: 200px;
  bottom: 0;
  animation: shrinkAnim2 3s ease 0s infinite;
}
.donate-two__image {
  position: relative;
}
@media (min-width: 992px) {
  .donate-two__image {
    margin-left: -10px;
  }
}
@media (max-width: 991px) {
  .donate-two__image {
    text-align: center;
  }
}
.donate-two__image img {
  max-width: 100%;
  height: auto;
  border: 1px solid var(--careox-black, #122f2a);
  border-radius: 30px;
}

.donate-three {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .donate-three {
    padding: 0 0 80px;
  }
}
.donate-three__support {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.donate-three__support img {
  width: 100%;
  height: auto;
}
.donate-three__support__content {
  position: relative;
  padding: 30px 20px 30px;
  background-color: var(--careox-gray, #f1f6f7);
  text-align: center;
  overflow: hidden;
  z-index: 1;
}
.donate-three__support__content::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--careox-base, #ff5528);
  z-index: -1;
  position: absolute;
  top: 100%;
  left: 100%;
  transition: all 400ms ease;
}
.donate-three__support:hover .donate-three__support__content::after {
  top: 0%;
  left: 0%;
}
.donate-three__support__title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 10px;
  transition: all 300ms linear;
}
.donate-three__support:hover .donate-three__support__title {
  color: var(--careox-white, #fff);
}
.donate-three__support__collected {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--careox-secondary, #ffa415);
  font-family: var(--careox-special-font, "Caveat", cursive);
  color: var(--careox-white, #fff);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  border-radius: 100px;
  transition: all 300ms linear;
}
.donate-three__content {
  position: relative;
  padding-top: 25px;
}
@media (min-width: 1200px) {
  .donate-three__content {
    padding-left: 15px;
  }
}
@media (max-width: 991px) {
  .donate-three__content {
    padding-top: 40px;
  }
}
.donate-three__content .sec-title {
  padding-bottom: 30px;
}
.donate-three__form {
  position: relative;
  width: 100%;
}
.donate-three__form__amount {
  position: relative;
}
.donate-three__form__amount__sign {
  position: absolute;
  text-transform: uppercase;
  font-family: var(--careox-special-font, "Caveat", cursive);
  left: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--careox-white, #fff);
  font-size: 30px;
  display: flex;
  align-items: center;
  font-weight: 900;
}
.donate-three__form input {
  display: block;
  width: 100%;
  height: 60px;
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
  font-size: 25px;
  font-weight: 500;
  text-align: right;
  border: none;
  outline: none;
  border-radius: 50px;
  padding-left: 100px;
  padding-right: 30px;
}
.donate-three__form__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0 45px;
}
@media (max-width: 767px) {
  .donate-three__form__buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.donate-three__form__buttons__item {
  height: 48px;
  background-color: var(--careox-border-color, #dddddd);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--careox-text, #636363);
  font-weight: 500;
  font-family: var(--careox-font, "Rubik", sans-serif);
  border: none;
  outline: none;
  padding: 0 24px;
  transition: all 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-three__form__buttons__item {
    padding: 0 20px;
  }
}
.donate-three__form__buttons__item.active, .donate-three__form__buttons__item:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.donate-three__form__submit {
  display: flex;
  align-items: center;
  position: relative;
  gap: 25px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-three__form__submit .careox-btn {
    padding: 13px 22px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-three__form__submit {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .donate-three__form__submit {
    flex-direction: column;
    align-items: flex-start;
  }
}
.donate-three__form__volunter {
  position: relative;
  display: flex;
  align-items: center;
}
.donate-three__form__volunter img {
  width: 53px;
  height: 53px;
  border: 3px solid var(--careox-gray, #f1f6f7);
  border-radius: 50%;
}
.donate-three__form__volunter img + img {
  margin-left: -16px;
}
.donate-three__form__volunter__total {
  width: 53px;
  height: 53px;
  border: 3px solid var(--careox-gray, #f1f6f7);
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  color: var(--careox-black, #122f2a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 700;
  margin-left: -16px;
}
.donate-three__form__volunter__active {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 0 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-three__form__volunter__active {
    margin: 0 0 0 10px;
  }
}

.donate-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donate-page {
    padding: 80px 0;
  }
}
.donate-page__content {
  position: relative;
}
.donate-page__notice {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  background-color: var(--careox-gray, #f1f6f7);
  overflow: hidden;
  padding: 16px 15px;
  border-radius: 5px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .donate-page__notice {
    display: block;
    padding: 16px 25px;
  }
}
.donate-page__notice::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 38px;
  content: "";
  z-index: -1;
  background-color: var(--careox-secondary, #ffa415);
}
@media (max-width: 767px) {
  .donate-page__notice::after {
    display: none;
  }
}
.donate-page__notice span {
  font-weight: 500;
  color: var(--careox-black, #122f2a);
}
.donate-page__notice__icon {
  width: 41px;
  height: 41px;
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 22px;
  margin-right: 19px;
}
@media (max-width: 767px) {
  .donate-page__notice__icon {
    margin: 0 0 15px;
  }
}
.donate-page__form {
  position: relative;
  width: 100%;
}
.donate-page__form__amount {
  position: relative;
  width: 100%;
  margin: 0 0 30px;
}
.donate-page__form__amount__sign {
  position: absolute;
  text-transform: uppercase;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  color: var(--careox-white, #fff);
  font-size: 57px;
  display: flex;
  align-items: center;
  font-weight: 700;
}
@media (max-width: 767px) {
  .donate-page__form__amount__sign {
    left: 30px;
  }
}
.donate-page__form__amount input {
  display: block;
  width: 100%;
  height: 125px;
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
  font-size: 57px;
  font-weight: 700;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  text-align: right;
  border: none;
  outline: none;
  border-radius: 10px;
  padding-left: 100px;
  padding-right: 39px;
}
@media (max-width: 767px) {
  .donate-page__form__amount input {
    padding-right: 30px;
  }
}
.donate-page__form__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 53px;
}
@media (max-width: 767px) {
  .donate-page__form__buttons {
    margin-bottom: 33px;
  }
}
.donate-page__form__buttons__item {
  height: 74px;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--careox-text, #636363);
  font-weight: 500;
  font-family: var(--careox-font, "Rubik", sans-serif);
  border: none;
  outline: none;
  padding: 0 27px;
  transition: all 0.4s ease;
}
.donate-page__form__buttons__item.active, .donate-page__form__buttons__item:hover {
  background-color: var(--careox-base, #ff5528);
  color: var(--careox-white, #fff);
}
.donate-page__form__title {
  font-size: 30px;
  font-weight: 800;
  margin: 0 0 19px;
}
.donate-page__form__payment {
  position: relative;
  margin-bottom: 20px;
}
.donate-page__form__payment__method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 30px;
}
.donate-page__form__payment__method__item {
  position: relative;
}
.donate-page__form__payment__method__item label {
  position: relative;
  display: inline-block;
  padding-left: 28px;
  margin-right: 0px;
  text-transform: capitalize;
  margin-bottom: 0;
  color: var(--careox-text, #636363);
  font-size: 16px;
  cursor: pointer;
}
.donate-page__form__payment__method__item label span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-color: var(--careox-base, #ff5528);
  content: "";
  width: 7px;
  height: 7px;
  pointer-events: none;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.donate-page__form__payment__method__item input[type=radio] {
  display: none;
}
.donate-page__form__payment__method__item input[type=radio] + label span {
  position: absolute;
  top: 5px;
  left: 0;
  width: 17px;
  height: 17px;
  vertical-align: middle;
  background-color: var(--careox-gray, #f1f6f7);
  cursor: pointer;
  transition: all 300ms ease;
}
.donate-page__form__payment__method__item input[type=radio]:checked + label span:before {
  opacity: 1;
}
.donate-page__form .bootstrap-select > .dropdown-toggle,
.donate-page__form .form-one input[type=text],
.donate-page__form input[type=email],
.donate-page__form input[type=tel],
.donate-page__form textarea {
  border-color: var(--careox-border-color, #dddddd);
}
.donate-page__form__donate-amount {
  position: relative;
  font-size: 22px;
  font-weight: 700;
  color: var(--careox-black, #122f2a);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  margin: 24px 0 20px;
}
.donate-page__form .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.donate-page__sidebar {
  position: relative;
}
@media (max-width: 991px) {
  .donate-page__sidebar {
    margin-top: 50px;
  }
}
.donate-page__sidebar .donations-one__carousel.owl-carousel .owl-nav.disabled {
  display: none;
}
.donate-page__sidebar .donation-details__author {
  margin: 50px 0 0;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.instagram-one {
  position: relative;
  padding: 0 5px 20px;
}
.instagram-one--about {
  padding-top: 20px;
}
.instagram-one__sub-title {
  font-size: 22px;
  color: var(--careox-white, #fff);
  font-weight: 600;
  font-family: var(--careox-special-font, "Caveat", cursive);
  transition: all 800ms ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-80px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 57px;
  margin: auto;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}
.instagram-one__title {
  font-size: 24px;
  color: var(--careox-white, #fff);
  font-weight: 800;
  transition: all 800ms ease;
  opacity: 0;
  visibility: hidden;
  transform: translateX(80px);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  margin: auto;
  text-align: center;
  z-index: 2;
  padding: 0 20px;
}
.instagram-one a {
  overflow: hidden;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.instagram-one a:hover .instagram-one__sub-title {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.instagram-one a:hover .instagram-one__title {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.instagram-one a::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background-image: url(../images/shapes/overlay.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  visibility: hidden;
  transition: all ease 0.4s;
}
.instagram-one a:hover::after {
  opacity: 1;
  visibility: visible;
  height: 165px;
}
.instagram-one a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.instagram-one a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  transition: all 0.3s ease-out;
}

.instagram-two {
  position: relative;
  background-color: var(--careox-white, #fff);
  padding: 0 0;
  margin-bottom: -120px;
}
.instagram-two .container {
  max-width: 1670px;
  position: relative;
  z-index: 5;
}
.instagram-two a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  height: auto;
}
.instagram-two a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--careox-white, #fff);
  font-size: 40px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}
.instagram-two a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--careox-base-rgb, 255, 85, 40), 0.9);
  visibility: hidden;
  transition: all ease 0.4s;
}
.instagram-two a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.instagram-two a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}
.instagram-two a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.instagram-two a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

/*--------------------------------------------------------------
# Info
--------------------------------------------------------------*/
.info {
  position: relative;
  margin-bottom: -74px;
}
.info__wrapper {
  background-color: var(--careox-white, #fff);
  border-radius: 75px;
  filter: drop-shadow(0 0 19px rgba(0, 0, 0, 0.08));
  position: relative;
  z-index: 2;
  padding: 42px 40px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .info__wrapper {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
@media (max-width: 767px) {
  .info__wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 42px 25px;
    align-items: flex-start;
  }
}
.info__wrapper li {
  position: relative;
  display: flex;
  gap: 28px;
  align-items: center;
}
@media (max-width: 1199px) {
  .info__wrapper li {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .info__wrapper li {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px) {
  .info__wrapper li {
    flex: 0 0 100%;
  }
}
.info__wrapper li:hover .info__icon span {
  transform: scale(1.1);
  transition: all 300ms ease;
  color: var(--careox-white, #fff);
}
.info__wrapper li:hover .info__icon::after {
  opacity: 1;
}
.info__wrapper li:not(:first-of-type)::before {
  content: "";
  width: 3px;
  height: 80px;
  background-color: var(--careox-border-color, #dddddd);
  position: absolute;
  top: 50%;
  left: -74px;
  transform: translateY(-50%);
  border-radius: 5px;
}
@media (max-width: 1199px) {
  .info__wrapper li:not(:first-of-type)::before {
    display: none;
  }
}
.info__icon {
  width: 66px;
  height: 66px;
  font-size: 31px;
  background-color: transparent;
  transition: all 300ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.info__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transform: scale(1);
  color: var(--accent-color);
}
.info__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--accent-color);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 55 55" ><path d="m11.7 48.1q-20.7-15.8-4.8-36.4 15.8-20.7 36.5-4.8 20.6 15.8 4.7 36.5-15.8 20.6-36.4 4.7z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
  opacity: 0.16;
  z-index: -1;
  transition: all 500ms ease;
}
.info__title {
  text-transform: capitalize;
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.35px;
  margin: 0 0 11px;
  position: relative;
}
.info__text {
  display: block;
  font-size: 21px;
  line-height: 1;
  letter-spacing: 0.33px;
  margin: 0;
}
.info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.info__text a:hover {
  background-size: 100% 1px;
}
.info__text a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--careox-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.08);
}
body.boxed-wrapper .about-one__shape,
body.boxed-wrapper .topbar-one__bottom__button img,
body.boxed-wrapper .topbar-one__bottom__button .careox-btn,
body.boxed-wrapper .main-slider-one__shape-two {
  display: none;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  padding: 120px 0 90px;
  background-color: var(--careox-white, #fff);
}
@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0 50px;
  }
}
.work-process-one .sec-title {
  text-align: center;
}
.work-process-one__border {
  width: 100%;
  height: 2px;
  background-color: var(--careox-base, #ff5528);
  top: 103px;
  position: relative;
}
@media (max-width: 767px) {
  .work-process-one__border {
    display: none;
  }
}
.work-process-one__border::after {
  position: absolute;
  left: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: var(--careox-black, #122f2a);
  border-radius: 50%;
  content: "";
}
.work-process-one__border::before {
  position: absolute;
  right: 0;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: var(--careox-black, #122f2a);
  border-radius: 50%;
  content: "";
}
.work-process-one__gradiant-left {
  height: 100%;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 5%;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(-45deg, rgba(var(--careox-base-rgb, 255, 85, 40), 1) 0%, rgba(var(--careox-black-rgb, 18, 47, 42), 1) 100%) 1;
}
.work-process-one__gradiant-right {
  height: 100%;
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  width: 5%;
  border-width: 1px;
  border-style: solid;
  border-image: linear-gradient(-45deg, rgba(var(--careox-black-rgb, 18, 47, 42), 1) 0%, rgba(var(--careox-base-rgb, 255, 85, 40), 1) 100%) 1;
}
.work-process-one__item {
  position: relative;
  counter-increment: count;
  margin-bottom: 30px;
}
.work-process-one__item__thumb {
  display: inline-block;
  width: 202px;
  height: 202px;
  border: 2px solid var(--careox-base, #ff5528);
  background-color: var(--careox-white, #fff);
  border-radius: 50%;
  padding: 5px;
  position: relative;
  margin-bottom: 30px;
}
.work-process-one__item__thumb-wrap {
  background-color: var(--careox-black, #122f2a);
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.work-process-one__item__thumb-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  height: 0;
  background: rgba(var(--careox-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;
}
.work-process-one__item__thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.3;
}
.work-process-one__item__thumb__number {
  width: 67px;
  height: 67px;
  background-color: var(--careox-base, #ff5528);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--careox-white, #fff);
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  right: -9px;
  top: 5px;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.work-process-one__item__thumb__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: -6px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.work-process-one__item__thumb__icon {
  width: 60px;
  height: 60px;
  font-size: 60px;
  color: var(--careox-base, #ff5528);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.work-process-one__item:hover .work-process-one__item__thumb-wrap::after {
  -webkit-animation: zoom-hover 0.95s;
  animation: zoom-hover 0.95s;
}
.work-process-one__item:hover .work-process-one__item__thumb__number {
  transform: scale(0.95);
}
.work-process-one__item__content {
  position: relative;
  box-shadow: 0px 0px 60px 0px rgba(var(--careox-black3-rgb, 0, 0, 0), 0.07);
  background-color: var(--careox-white, #fff);
  border-radius: 100px;
  padding: 24px 20px 26px;
}
.work-process-one__item__content::after {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  content: "";
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 25px 10px 25px;
  border-color: transparent transparent var(--careox-white, #fff) transparent;
}
.work-process-one__item__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 5px;
}
.work-process-one__item__text {
  font-size: 15px;
  line-height: 26px;
  margin: 0;
}

/*--------------------------------------------------------------
# Tabs
--------------------------------------------------------------*/
.tab-one {
  padding-top: 120px;
  position: relative;
}
@media (max-width: 767px) {
  .tab-one {
    padding-top: 80px;
  }
}
.tab-one__wrapper {
  position: relative;
}
.tab-one__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  list-style: none;
  gap: 30px;
  margin: 0 0 45px;
}
@media (max-width: 991px) {
  .tab-one__list {
    flex-direction: column;
    gap: 15px;
  }
}
.tab-one__list li {
  display: flex;
  align-items: center;
  background-color: var(--careox-gray, #f1f6f7);
  transition: all 300ms linear;
  font-size: 24px;
  font-weight: 800;
  font-family: var(--careox-heading-font, "Nunito Sans", sans-serif);
  color: var(--careox-black, #122f2a);
  width: 100%;
  padding: 20px 30px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  cursor: pointer;
}
.tab-one__list li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: var(--accent-color);
  transform: scaley(0);
  transform-style: preserve-3d;
  transition: transform 0.4s ease-in-out;
  transform-origin: top center;
  z-index: -1;
}
.tab-one__list li:hover, .tab-one__list li.active-btn {
  color: var(--careox-white, #fff);
}
.tab-one__list li:hover .tab-one__list__icon, .tab-one__list li.active-btn .tab-one__list__icon {
  color: var(--careox-white, #fff);
}
.tab-one__list li:hover .tab-one__list__icon::after, .tab-one__list li.active-btn .tab-one__list__icon::after {
  background-color: var(--careox-white, #fff);
  opacity: 0.25;
}
.tab-one__list li:hover::after, .tab-one__list li.active-btn::after {
  transform: scaley(1);
  transform-origin: bottom center;
}
.tab-one__list__icon {
  border-right: 2px solid var(--careox-border-color, #dddddd);
  font-size: 60px;
  color: var(--accent-color);
  height: 69px;
  display: flex;
  align-items: center;
  padding-right: 25px;
  margin-right: 25px;
  transition: all 300ms linear;
  position: relative;
}
@media (max-width: 400px) {
  .tab-one__list__icon {
    padding-right: 15px;
    margin-right: 15px;
  }
}
.tab-one__list__icon::after {
  position: absolute;
  left: 2px;
  top: 16px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  content: "";
  background-color: var(--accent-color);
  opacity: 0.1;
  transition: all 300ms linear;
}
.tab-one__content {
  position: relative;
  border: 1px solid var(--careox-border-color, #dddddd);
  border-radius: 10px;
  overflow: hidden;
  padding: 9px;
}
.tab-one__content__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.58;
}
.tab-one__content__image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.tab-one__content__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.tab-one__content__image__shape {
  position: absolute;
  left: -10px;
  bottom: 0;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  animation: shapeMove 3s linear 0s infinite;
}
.tab-one__content__right {
  position: relative;
  padding: 30px 69px 30px 0;
  width: 100%;
}
@media (max-width: 1199px) {
  .tab-one__content__right {
    padding-right: 30px;
  }
}
@media (max-width: 991px) {
  .tab-one__content__right {
    padding: 30px 30px;
  }
}
@media (max-width: 767px) {
  .tab-one__content__right {
    padding: 30px 15px;
  }
}
.tab-one__content__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 50px;
}
@media (max-width: 1199px) {
  .tab-one__content__title {
    margin: 0 0 30px;
  }
}
.tab-one__content__box {
  position: relative;
  min-height: 44px;
  padding: 0 0 25px 64px;
  margin-top: 40px;
  border-bottom: 1px solid var(--careox-border-color, #dddddd);
  transition: all 500ms ease;
}
.tab-one__content__box:hover {
  border-color: var(--accent-color);
}
.tab-one__content__box__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 21px;
  color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  position: absolute;
  left: 0;
  top: 0;
}
.tab-one__content__box__icon i {
  display: inline-block;
  transition: all 500ms ease;
  transform: scale(1);
}
.tab-one__content__box:hover .tab-one__content__box__icon i {
  transform: scale(1.1);
}
.tab-one__content__box__title {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 5px;
}
.tab-one__content__box__text {
  margin: 0;
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.event-one {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
}
@media (max-width: 767px) {
  .event-one {
    padding-top: 80px;
  }
}
.event-one::before {
  position: absolute;
  right: -140px;
  top: -140px;
  width: 280px;
  height: 280px;
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  content: "";
  animation: zoomsIn 4s linear 0s infinite;
  z-index: 1;
}
@media (max-width: 1199px) {
  .event-one::before {
    display: none;
  }
}
.event-one::after {
  position: absolute;
  right: -125px;
  top: -125px;
  width: 280px;
  height: 280px;
  background-color: var(--careox-base, #ff5528);
  border-radius: 50%;
  opacity: 0.27;
  content: "";
  animation: zoomsIn 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .event-one::after {
    display: none;
  }
}
.event-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 747px;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 747"><path d="m0 0h1920v747c0 0-209.7-7.2-393.4-103.7-262.5-137.8-411.6-358.8-562.2-157.4-77 103.1-274.4-72.1-594.6 81.1-171.2 81.9-369.8-70-369.8-70z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 747"><path d="m0 0h1920v747c0 0-209.7-7.2-393.4-103.7-262.5-137.8-411.6-358.8-562.2-157.4-77 103.1-274.4-72.1-594.6 81.1-171.2 81.9-369.8-70-369.8-70z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  mask-position: center bottom;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.event-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(11, 11, 11, 0.85);
}
.event-one .sec-title__title {
  color: var(--careox-white, #fff);
}
.event-one--page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .event-one--page {
    padding: 80px 0;
  }
}
.event-one--page::after, .event-one--page::before {
  display: none;
}
.event-one--page .sec-title__title {
  color: var(--careox-black, #122f2a);
}
.event-one .container {
  max-width: 1450px;
  position: relative;
}
.event-one__carousel {
  position: relative;
}
.event-one__carousel .event-one__item img {
  height: 315px;
  object-fit: cover;
  object-position: top;
}
.event-one__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.event-one__item img {
  width: 100%;
  height: auto;
}
.event-one__item__rm {
  width: 55px;
  height: 55px;
  background-color: var(--careox-base, #ff5528);
  text-align: center;
  line-height: 53px;
  font-size: 22px;
  color: var(--careox-white, #fff);
  border-radius: 0 0 30px 30px;
  position: absolute;
  right: 30px;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transform: rotate(90deg);
  transform-origin: 100% 100%;
  transition: all 0.5s;
}
.event-one__item__rm i {
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.event-one__item__rm:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.event-one__item__rm:hover i {
  animation: iconTranslateX 0.4s forwards;
}
.event-one__item:hover .event-one__item__rm {
  visibility: visible;
  opacity: 1;
  transform: rotate(0deg);
  transform-origin: 100% 100%;
}
.event-one__item__content {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: center;
  width: 100%;
  z-index: 1;
  padding: 0 20px 15px;
}
.event-one__item__content::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  opacity: 0;
  background-image: url(../images/shapes/overlay.png);
  background-position: bottom center;
  background-repeat: no-repeat;
  visibility: hidden;
  transition: all ease 0.4s;
}
.event-one__item:hover .event-one__item__content:after {
  opacity: 1;
  visibility: visible;
  height: 165px;
}
.event-one__item__title {
  font-size: 24px;
  color: var(--careox-white, #fff);
  font-weight: 800;
  margin: 0 0 8px;
  opacity: 0;
  transform: translateX(-100%) skewX(5deg);
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.event-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;
}
.event-one__item__title a:hover {
  background-size: 100% 1px;
}
.event-one__item__title a:hover {
  color: inherit;
}
.event-one__item:hover .event-one__item__meta, .event-one__item:hover .event-one__item__title {
  opacity: 1;
  transform: translateX(0px) skewX(0deg);
}
.event-one__item__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  opacity: 0;
  transform: translateX(100%) skewX(5deg);
  transition: transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.event-one__item__meta li {
  font-size: 18px;
  font-weight: 600;
  color: var(--careox-white, #fff);
  font-family: var(--careox-special-font, "Caveat", cursive);
}
.event-one__item__meta li i {
  font-size: 16px;
  margin-right: 7px;
}

.event-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .event-details {
    padding: 80px 0;
  }
}
.event-details__content {
  position: relative;
}
.event-details__image {
  position: relative;
  margin-bottom: 40px;
}
.event-details__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.event-details__title {
  font-size: 40px;
  font-weight: 800;
  margin: 0 0 18px;
}
@media (max-width: 767px) {
  .event-details__title {
    font-size: 30px;
  }
}
.event-details__text {
  margin: 0 0 25px;
}
@media (min-width: 1200px) {
  .event-details__text {
    padding-right: 42px;
  }
}
.event-details .careox-btn {
  margin-top: 32px;
}
.event-details .careox-btn::before {
  background-color: var(--careox-base, #ff5528);
}
.event-details__info {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  border-radius: 20px;
  border-top: 5px solid var(--careox-base, #ff5528);
  padding: 45px 38px;
  margin-bottom: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .event-details__info {
    padding: 35px 22px;
  }
}
@media (max-width: 991px) {
  .event-details__info {
    margin-top: 50px;
  }
}
.event-details__info__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.event-details__info__list li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.event-details__info__list li span {
  font-weight: 400;
}
.event-details__info__list li + li {
  margin-top: 37px;
}
.event-details__map {
  position: relative;
}
.event-details__map .google-map iframe {
  height: 475px;
  width: 100%;
}

/*--------------------------------------------------------------
# Countries
--------------------------------------------------------------*/
.country-one {
  position: relative;
  background-color: var(--careox-gray, #f1f6f7);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .country-one {
    padding: 80px 0;
  }
}
.country-one__carousel.owl-carousel {
  position: relative;
}
.country-one__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -168px;
  flex-direction: column;
  display: flex;
  margin: 0;
  gap: 10px;
}
@media (max-width: 767px) {
  .country-one__carousel.owl-carousel .owl-nav {
    flex-direction: row;
    top: 0;
    position: relative;
    justify-content: center;
    margin-top: 30px;
  }
}
.country-one__carousel.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 17px;
  color: var(--careox-black, #122f2a);
  transition: all 400ms ease;
}
.country-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--careox-secondary, #ffa415);
  color: var(--careox-white, #fff);
}
.country-one__item {
  position: relative;
  z-index: 2;
  background-color: var(--careox-white, #fff);
  border-radius: 30px;
  padding: 42px 25px 37px;
}
.country-one__item::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: all 400ms ease;
  border: 1px dashed var(--accent-color);
  opacity: 0;
  transform: scale(0.9);
  border-radius: 30px;
  z-index: -1;
}
.country-one__item:hover::after {
  opacity: 1;
  transform: scale(1);
}
.country-one__item__flag {
  position: relative;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 19px;
}
.country-one__item__flag img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.country-one__item__count {
  position: absolute;
  left: -17px;
  bottom: 9px;
  width: 41px;
  height: 41px;
  background-color: var(--careox-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(-4.963px -0.609px 2.5px rgba(0, 0, 0, 0.07));
  border-radius: 50%;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--careox-special-font, "Caveat", cursive);
  transition: all 400ms ease;
}
.country-one__item:hover .country-one__item__count {
  color: var(--careox-white, #fff);
  background-color: var(--accent-color);
}
.country-one__item__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
}
.country-one__item__text {
  margin: 0 0 17px;
}
.country-one__item__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--careox-text, #636363);
  text-transform: capitalize;
  line-height: 1.1;
  transition: all 500ms ease;
}
.country-one__item__rm a {
  display: inline-block;
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.country-one__item__rm a:hover {
  background-size: 100% 1px;
}
.country-one__item__rm a:hover {
  color: var(--accent-color);
}
.country-one__item__rm i {
  color: var(--accent-color);
  font-size: 20px;
  position: relative;
  top: 1px;
}

/*--------------------------------------------------------------
# Become Volunter
--------------------------------------------------------------*/
.become-volunter {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .become-volunter {
    padding: 80px 0;
  }
}
.become-volunter__content {
  position: relative;
}
.become-volunter__title {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 24px;
}
.become-volunter__text {
  margin: 0 0 29px;
}
@media (min-width: 1200px) {
  .become-volunter__text {
    padding-right: 70px;
  }
}
.become-volunter__highlight {
  position: relative;
  font-family: var(--careox-special-font, "Caveat", cursive);
  font-weight: 700;
  border-left: 6px solid var(--careox-secondary, #ffa415);
  text-transform: uppercase;
  padding: 4px 0 2px 16px;
  margin-bottom: 32px;
}
.become-volunter__list {
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.become-volunter__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.become-volunter__list li a {
  color: inherit;
  font-weight: 500;
  border-bottom: 2px solid currentColor;
}
.become-volunter__list li a:hover {
  color: var(--careox-secondary, #ffa415);
}
.become-volunter__list__icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  line-height: 1;
  margin: auto;
  display: flex;
  align-items: center;
  color: var(--careox-secondary, #ffa415);
  font-size: 15px;
}
.become-volunter__image {
  position: relative;
}
@media (max-width: 767px) {
  .become-volunter__image {
    margin-top: 30px;
  }
}
.become-volunter__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.become-volunter .contact-one__form {
  position: relative;
}
@media (max-width: 991px) {
  .become-volunter .contact-one__form {
    margin-top: 40px;
  }
}
.become-volunter .contact-one__form .bootstrap-select > .dropdown-toggle,
.become-volunter .contact-one__form input[type=text],
.become-volunter .contact-one__form input[type=email],
.become-volunter .contact-one__form input[type=tel],
.become-volunter .contact-one__form textarea {
  border-color: var(--careox-border-color, #dddddd);
  border-radius: 30px;
}
/*# sourceMappingURL=careox.css.map */
