
:root {
  --cherito-font: "Jost", sans-serif;
  --cherito-heading-font: "Oswald", sans-serif;
  --cherito-special-font: "Caveat", cursive;
  --cherito-text: #727272;
  --cherito-text-rgb: 114, 114, 114;
  --cherito-base: #E23B33;
  --cherito-base-rgb: 226, 59, 51;
  --cherito-primary: #F2B42B;
  --cherito-primary-rgb: 242, 180, 43;
  --cherito-white: #ffffff;
  --cherito-white-rgb: 255, 255, 255;
  --cherito-white2: #F4F0ED;
  --cherito-white2-rgb: 244, 240, 237;
  --cherito-white3: #E5DED9;
  --cherito-white3-rgb: 229, 222, 217;
  --cherito-white4: #FAF6F0;
  --cherito-white4-rgb: 250, 246, 240;
  --cherito-white5: #F5F1EE;
  --cherito-white5-rgb: 245, 241, 238;
  --cherito-white6: #EFEFEF;
  --cherito-white6-rgb: 239, 239, 239;
  --cherito-gray: #DBDBDB;
  --cherito-gray-rgb: 219, 219, 219;
  --cherito-gray2: #7D8B90;
  --cherito-gray2-rgb: 125, 139, 144;
  --cherito-gray3: #E3DDD8;
  --cherito-gray3-rgb: 227, 221, 216;
  --cherito-gray4: #D2D2D2;
  --cherito-gray4-rgb: 210, 210, 210;
  --cherito-gray5: #EBEBEB;
  --cherito-gray5-rgb: 235, 235, 235;
  --cherito-black: #212226;
  --cherito-black-rgb: 33, 34, 38;
  --cherito-black2: #000000;
  --cherito-black2-rgb: 0, 0, 0;
  --cherito-orange: #EF8442;
  --cherito-orange-rgb: 239, 132, 66;
  --cherito-border-color: #E5DED9;
  --cherito-border-color-rgb: 229, 222, 217;
  --section-space: 120px;
}


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 17px;
  color: var(--cherito-black);
  font-weight: 400;
  line-height: 27px;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--cherito-base, #E23B33);
  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(--cherito-heading-font, "Oswald", sans-serif);
  color: var(--cherito-base);
}

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

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

.space {
  padding: 80px 0;
}

.space-top {
  padding-top: 80px;
}


.space-bottom {
  padding-bottom: 80px;
}


.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}


.logo-retina img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* template button */
.cherito-btn {
  cursor: pointer;
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  padding: 15px 25px;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  font-size: 18px;
  color: var(--cherito-black);
  line-height: 1.125;
  border-radius: 50px;
  z-index: 1;
  transition: all 500ms ease;
}
.cherito-btn__text {
  position: relative;
  color: inherit;
  z-index: 1;
  transition: all 150ms ease;
}
.cherito-btn__hover {
  display: block;
  width: calc(20% + 0.2px);
  height: 100%;
  position: absolute;
  top: 0;
  opacity: 1;
  -webkit-transform: translateY(101%);
  transform: translateY(101%);
  background-color: var(--cherito-primary, #212226);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.cherito-btn__hover--1 {
  left: 0;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}
.cherito-btn__hover--2 {
  left: 20%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.cherito-btn__hover--3 {
  left: 40%;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.cherito-btn__hover--4 {
  left: 60%;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.cherito-btn__hover--5 {
  left: 80%;
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.cherito-btn:hover .cherito-btn__hover {
  transform: translateY(0);
}
.cherito-btn--primary {
  color: var(--cherito-black);
  background-color: var(--cherito-primary, #F2B42B);
}
.cherito-btn--primary:hover {
  color: var(--cherito-white, #ffffff);
}
.cherito-btn--primary .cherito-btn__hover {
  background-color: var(--cherito-base, #E23B33);
}
.cherito-btn--white {
  color: var(--cherito-black, #212226);
  background-color: var(--cherito-white, #ffffff);
}
.cherito-btn--white:hover {
  color: var(--cherito-white, #ffffff);
}
.cherito-btn--white .cherito-btn__hover {
  background-color: var(--cherito-primary, #F2B42B);
}
.cherito-btn--black {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-black, #212226);
}
.cherito-btn--black:hover {
  color: var(--cherito-white, #ffffff);
}
.cherito-btn--black .cherito-btn__hover {
  background-color: var(--cherito-base, #E23B33);
}
.cherito-btn--border {
  color: var(--cherito-black, #212226);
  background-color: transparent;
  border: 1px solid var(--cherito-base, #E23B33);
}
.cherito-btn--border:hover {
  color: var(--cherito-white, #ffffff);
}
.cherito-btn--border .cherito-btn__hover {
  background-color: var(--cherito-base, #E23B33);
}

.sec-title--center {
  margin-bottom: 50px;
  text-align: center;
}
.sec-title--center .sec-title__top {
  justify-content: center;
}
.sec-title__top {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.sec-title__shape {
  max-width: 100%;
  height: auto;
}
.sec-title__tagline {
  margin: 0;
  margin-bottom: 5px;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 20px;
  color: var(--cherito-primary);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.2;
}
.sec-title__title {
  margin: 0;
  font-size: 42px;
  line-height: 1.25;
  color: transparent;
  background: #042b3c;
  background-clip: text;
}
.sec-title p{
  font-size: 18px;
  margin-top: 3px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 35px;
  }
}
@media (max-width: 430px) {
  .sec-title__title {
    font-size: 30px;
  }
}

.cherito-ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cherito-ratings__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--cherito-base, #E23B33);
  transition: all 500ms ease;
}
.cherito-ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.video-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background-color: var(--cherito-base, #E23B33);
  font-size: 13px;
  color: var(--cherito-white, #ffffff);
  border-radius: 50%;
  z-index: 1;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.video-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.video-btn:hover {
  background-color: var(--cherito-primary, #F2B42B);
}
.video-btn__ripple::before, .video-btn__ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 RGBA(var(--cherito-base-rgb, 226, 59, 51), 0.6);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-animation: videoRipple 3s infinite;
  animation: videoRipple 3s infinite;
}
.video-btn__ropple::before {
  position: absolute;
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.video-btn__ripple::after {
  position: absolute;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}
.video-btn:hover .video-btn__ripple::before, .video-btn:hover .video-btn__ripple::after {
  box-shadow: 0 0 0 0 RGBA(var(--cherito-primary-rgb, 242, 180, 43), 0.6);
}

@keyframes videoRipple {
  70% {
    box-shadow: 0 0 0 40px RGBA(var(--cherito-base-rgb, 226, 59, 51), 0);
  }
  100% {
    box-shadow: 0 0 0 0 RGBA(var(--cherito-base-rgb, 226, 59, 51), 0);
  }
}
.social-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.social-links a {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  color: var(--cherito-black);
  border-radius: 50%;
  overflow: hidden;
  transition: all 500ms ease;
}
.social-links__icon {
  display: inline-flex;
  font-size: 15px;
/*  color: var(--cherito-black);*/
  transition: all 500ms ease;
}
.social-links a.insta{
  background: linear-gradient(90deg, #eb0b4d, #d205da);
  color: var(--cherito-white);
}
.social-links a.link{
  background: #006ac2;
  color: var(--cherito-white);
}
.social-links a.yt{
  background: #de0505;
  color: var(--cherito-white);
}
.social-links__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.social-links a:hover {
  background: #38d1e0;
}
.social-links a:hover .social-links__icon {
  color: var(--cherito-white, #ffffff);
  animation: slideTop 400ms;
}


.preloader {
  position: fixed;
  background: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99991;
  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: 150px auto;
  width: 100%;
  height: 100%;
}


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

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

.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav {
  /*display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 60px;*/
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  margin: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-size: 16px;
  color: #fff;
  background: var(--cherito-primary);;
  border-radius: 50%;
  transition: all 400ms ease;

  position: absolute;
  top: 50%;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev{
  left: -50px;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-next{
  right: -50px;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary);;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button span {
  border: none;
  outline: none;
  color: inherit;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #38d1e0;
  transition: all 400ms ease;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  background-color: rgb(56 209 224 / 27%);
  transition: all 400ms ease;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover, .cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active {
  background-color: #38d1e0;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover::after, .cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .cherito-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 30px;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}


/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar {
  position: relative;
  background-color: var(--cherito-white2, #F4F0ED);
  z-index: 999;
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.topbar .container {
  position: relative;
}
.topbar .container::before {
  content: "";
  width: 3000px;
  height: calc(100% + 10px);
  background-color: var(--cherito-white3, #E5DED9);
  border-radius: 20px 0 0 20px;
  position: absolute;
  top: 50%;
  left: calc(50% - 449px + 505px);
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .topbar .container::before {
    left: calc(50% - 449px + 390px);
  }
}
@media (max-width: 991px) {
  .topbar .container::before {
    display: none;
  }
}
.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  z-index: 1;
}
@media (max-width: 991px) {
  .topbar__inner {
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: center;
  }
}
.topbar .social-links {
  gap: 2px;
}
@media (max-width: 991px) {
  .topbar .social-links {
    display: none;
  }
}
.topbar .social-links a {
  width: 20px;
  height: 20px;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 2px;
}
.topbar .social-links a:hover {
  background-color: var(--cherito-base, #E23B33);
}
.topbar .social-links a:hover .social-links__icon {
  font-size: 9px;
  color: var(--cherito-white, #ffffff);
  animation: slideTop 400ms;
}
.topbar__info {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
.topbar__info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--cherito-text, #727272);
  line-height: 1.285;
}
.topbar__info li:hover {
  color: var(--cherito-base, #E23B33);
}
.topbar__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__info li a:hover {
  background-size: 100% 1px;
}
.topbar__info__icon {
  position: relative;
  top: 1px;
  display: inline-flex;
  font-size: 14px;
  color: var(--cherito-base, #E23B33);
  transition: all 500ms ease;
}
.topbar__info__icon--email {
  top: 2px;
}
.topbar__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar--two {
  background-color: var(--cherito-black);
}
.topbar--two .container::before {
  display: none;
}
@media (max-width: 1199px) {
  .topbar--two .topbar__inner {
    padding-top: 15px;
    padding-bottom: 15px;
    justify-content: center;
  }
}
.topbar--two .topbar__info__icon {
  color: var(--cherito-primary);
}
.topbar--two .topbar__info li {
  color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.6);
}
.topbar--two .topbar__info li:hover {
  color: var(--cherito-primary);
}
.topbar--two .topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1199px) {
  .topbar--two .topbar__social {
    display: none;
  }
}
.topbar--two .topbar__social__title {
  margin: 0;
  font-size: 12px;
  color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.6);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
}
.topbar--two .social-links a {
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
}
.topbar--two .social-links a:hover {
  background-color: var(--cherito-primary);
}
.topbar--two .social-links a .social-links__icon {
  font-size: 9px;
  color: var(--cherito-primary);
}
.topbar--three {
  background-color: var(--cherito-white, #ffffff);
}
.topbar--three .topbar__logo {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 1799px) {
  .topbar--three .topbar__logo {
    left: 2.5%;
  }
}
@media (max-width: 1599px) {
  .topbar--three .topbar__logo {
    display: none;
  }
}
.topbar--three .container::before {
  display: none;
}
.topbar--three .topbar__inner {
  /*padding-top: 19px;
  padding-bottom: 60px;*/
}
.topbar--three .topbar__contact {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1199px) {
  .topbar--three .topbar__contact {
    gap: 30px;
  }
}
.topbar--three .topbar__contact__info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar--three .topbar__contact__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 17px;
  color: var(--cherito-base);
  background-color: var(--cherito-white2);
  transition: all 500ms ease;
}
.topbar--three .topbar__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar--three .topbar__contact__info:hover .topbar__contact__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-base);
}
.topbar--three .topbar__contact__title {
  margin: 0;
/*  font-family: var(--cherito-heading-font, "Oswald", sans-serif);*/
  font-size: 17px;
  color: #2d2079;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.5;
}
.topbar--three .topbar__contact__link {
  margin: 0;
  color: var(--cherito-black);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
  font-family: var(--cherito-font);
}
.topbar--three .topbar__contact__link:hover {
  color: var(--cherito-base);
}
.topbar--three .topbar__contact__link a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar--three .topbar__contact__link a:hover {
  background-size: 100% 1px;
  color: #2d2079;
}
.topbar--three .social-links {
  gap: 6px;
}
.topbar--three .social-links a {
  width: 30px;
  height: 30px;
  background-color: var(--cherito-white2);
  border-radius: 50%;
}
.topbar--three .social-links a:hover {
  background-color: var(--cherito-base);
}
.topbar--three .social-links a .social-links__icon {
  font-size: 13px;
  color: var(--cherito-base);
}
.topbar--four .topbar__inner {
  padding-top: 0px;
  padding-bottom: 0px;
}
@media (max-width: 1199px) {
  .topbar--four .topbar__inner {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.topbar--four .topbar__info__icon {
  color: var(--cherito-base);
}
.topbar--four .topbar__info li {
  color: var(--cherito-gray4, #D2D2D2);
}
.topbar--four .topbar__info li:hover {
  color: var(--cherito-base);
}
.topbar--four .topbar__social {
  padding: 14px 36px 14px 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 1199px) {
  .topbar--four .topbar__social {
    display: none;
  }
}
.topbar--four .topbar__social__title {
  color: var(--cherito-white, #ffffff);
}
.topbar--four .social-links a {
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.15);
}
.topbar--four .social-links a:hover {
  background-color: var(--cherito-base);
}
.topbar--four .social-links a .social-links__icon {
  color: var(--cherito-base);
}
.topbar--five {
  background-color: transparent;
  z-index: auto;
}
@media (max-width: 1199px) {
  .topbar--five {
    display: none;
  }
}
.topbar--five .topbar__inner {
/*  padding: 14.3px 0px 14.3px 40px;*/
  z-index: 1;
}
@media (max-width: 1299px) {
  .topbar--five .topbar__inner {
    padding-left: 20px;
  }
}
@media (max-width: 1399px) {
  .topbar--five .topbar__contact {
    gap: 35px;
  }
}
@media (max-width: 1299px) {
  .topbar--five .topbar__contact {
    gap: 30px;
  }
}
.topbar--five .topbar__contact__icon {
/*  color: var(--cherito-primary);*/
/*  background-color: var(--cherito-white, #ffffff);*/
}
.topbar--six {
  background-color: var(--cherito-black);
  z-index: 99;
}
@media (max-width: 991px) {
  .topbar--six {
    display: none;
  }
}
.topbar--six .container::before {
  display: none;
}
.topbar--six .topbar__inner {
  position: relative;
  z-index: 1;
  padding: 11.43px 13px 11.43px 30px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.08);
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 1199px) {
  .topbar--six .topbar__inner {
    padding-left: 20px;
  }
}
.topbar--six .topbar__inner::after {
  content: "";
  width: 284px;
  height: 100%;
  background-color: var(--cherito-base);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 0px 10px 10px 0px;
}
.topbar--six .topbar__info li {
  color: var(--cherito-gray3, #E3DDD8);
}
.topbar--six .topbar__info li:hover {
  color: var(--cherito-base);
}
.topbar--six .topbar__right {
  display: flex;
  align-items: center;
}
.topbar--six .topbar__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar--six .topbar__social a {
  display: inline-flex;
  font-size: 11px;
  color: var(--cherito-white, #ffffff);
  transition: all 500ms ease;
}
.topbar--six .topbar__social a svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar--six .topbar__social a:hover {
  color: var(--cherito-black);
}
.topbar--six .topbar__call {
  position: relative;
  margin-left: 33px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar--six .topbar__call::after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  position: absolute;
  top: 50%;
  left: -16.5px;
  transform: translateY(-50%);
}
.topbar--six .topbar__call__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 12px;
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-black);
  transition: all 500ms ease;
}
.topbar--six .topbar__call__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.topbar--six .topbar__call:hover .topbar__call__icon {
  color: var(--cherito-black);
  background-color: var(--cherito-white, #ffffff);
}
.topbar--six .topbar__call__title {
  margin: 0;
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  font-size: 10px;
  color: var(--cherito-white, #ffffff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.357;
}
.topbar--six .topbar__call__number {
  margin: 0;
  font-size: 16px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.35;
}
.topbar--six .topbar__call__number:hover {
  color: var(--cherito-black);
}
.topbar--six .topbar__call__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar--six .topbar__call__number a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
.header-two {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.main-header {
  position: relative;
/*  background-color: var(--cherito-black, #212226);*/
  z-index: 999;
}
/*.main-header::before {
  content: "";
  width: 309px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 0 20px 20px 0;
  z-index: 1;
}*/
@media (max-width: 1599px) {
  .main-header::before {
    width: 230px;
  }
}
@media (max-width: 1399px) {
  .main-header::before {
    width: 190px;
  }
}
@media (max-width: 390px) {
  .main-header::before {
    width: 180px;
  }
}
@media (max-width: 340px) {
  .main-header::before {
    width: 175px;
  }
}
.main-header .container-fluid {
  position: relative;
  background-color: var(--cherito-base, #E23B33);
}
@media only screen and (min-width: 1200px) {
  .main-header .container-fluid {
    padding-left: 15px;
    margin-right: calc((100% - 1200px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
  }
}
@media only screen and (min-width: 1400px) {
  .main-header .container-fluid {
    padding-left: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  .main-header .container-fluid {
    padding-left: 117px;
  }
}
.main-header .container-fluid::after {
  content: "";
  width: 633px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -355px;
  background-color: var(--cherito-black, #212226);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 150.000000"><g transform="translate(0.000000,150.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M480 1490 c0 -6 -15 -27 -34 -46 -42 -43 -48 -80 -45 -301 1 -90 -3 -169 -7 -173 -5 -5 -65 -11 -133 -12 -132 -3 -163 -16 -94 -39 44 -14 140 -108 164 -159 53 -116 71 -219 70 -415 -1 -235 3 -266 46 -310 l34 -35 4259 0 4260 0 0 750 0 750 -4260 0 c-2967 0 -4260 -3 -4260 -10z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 150.000000"><g transform="translate(0.000000,150.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M480 1490 c0 -6 -15 -27 -34 -46 -42 -43 -48 -80 -45 -301 1 -90 -3 -169 -7 -173 -5 -5 -65 -11 -133 -12 -132 -3 -163 -16 -94 -39 44 -14 140 -108 164 -159 53 -116 71 -219 70 -415 -1 -235 3 -266 46 -310 l34 -35 4259 0 4260 0 0 750 0 750 -4260 0 c-2967 0 -4260 -3 -4260 -10z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1199px) {
  .main-header .container-fluid::after {
    right: -285px;
  }
}
@media (max-width: 767px) {
  .main-header .container-fluid::after {
    display: none;
  }
}
.main-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding: 20px 0;
  }
}
.main-header__left {
  position: relative;
  z-index: 2;
}
@media (min-width: 1200px) {
  .main-header__left {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  .main-header__left {
    gap: 98px;
  }
}

.logo-area{
  display: flex;
  gap: 15px;
  align-items: center;
}
.logo-icon img{
  width: 150px;
}
.logo-text h1{
  font-size: 34px;
  margin-bottom: 0;
  color: transparent;
  background: #042b3c;
  background-clip: text;
}
.logo-text p{
  margin-bottom: 0;
  font-size: 20px;
  color: var(--cherito-black);
  font-weight: 500;
}
.main-header__logo img {
  max-width: 100%;
  height: auto;
}
.main-header__right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}
.main-header__search, .main-header__cart {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  overflow: hidden;
  transition: all 500ms ease;
}
@media (max-width: 390px) {
  .main-header__search, .main-header__cart {
    width: 35px;
    height: 35px;
  }
}
.main-header__search__icon, .main-header__cart__icon {
  display: inline-flex;
  position: relative;
  font-size: 20px;
  color: var(--cherito-white, #ffffff);
  transition: all 500ms ease;
}
.main-header__search__icon svg, .main-header__cart__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
@media (max-width: 390px) {
  .main-header__search__icon, .main-header__cart__icon {
    font-size: 15px;
  }
}
.main-header__search:hover, .main-header__cart:hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-header__search:hover .main-header__search__icon,
.main-header__search:hover .main-header__cart__icon, .main-header__cart:hover .main-header__search__icon,
.main-header__cart:hover .main-header__cart__icon {
  color: var(--cherito-base, #E23B33);
  animation: slideTop 400ms;
}
@media (max-width: 1199px) {
  .main-header__search {
    margin-left: 20px;
  }
}
@media (max-width: 390px) {
  .main-header__search {
    margin-left: 15px;
  }
}
.main-header__cart {
  margin-left: 14px;
}
.main-header__call {
  margin-left: 91px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1599px) {
  .main-header__call {
    margin-left: 70px;
  }
}
@media (max-width: 1399px) {
  .main-header__call {
    margin-left: 65px;
  }
}
@media (max-width: 1199px) {
  .main-header__call {
    margin-left: 90px;
  }
}
@media (max-width: 767px) {
  .main-header__call {
    display: none;
  }
}
.main-header__call__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--cherito-base, #E23B33);
  background-color: var(--cherito-white, #ffffff);
  transition: all 500ms ease;
}
.main-header__call__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.main-header__call:hover .main-header__call__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-base, #E23B33);
}
.main-header__call__title {
  margin: 0;
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  font-size: 12px;
  color: var(--cherito-white, #ffffff);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.357;
}
.main-header__call__number {
  margin: 0;
  font-size: 20px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.35;
}
.main-header__call__number:hover {
  color: var(--cherito-base, #E23B33);
}
.main-header__call__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__call__number a:hover {
  background-size: 100% 1px;
}
.main-header--two {
  background-color: transparent;
}
@media (max-width: 1299px) {
  .main-header--two {
    background-color: var(--cherito-primary);
  }
}
.main-header--two::before {
  content: "";
  width: 230px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 0 20px 20px 0;
  z-index: 1;
}
@media (max-width: 1299px) {
  .main-header--two::before {
    width: 190px;
  }
}
@media (max-width: 390px) {
  .main-header--two::before {
    width: 180px;
  }
}
@media (max-width: 340px) {
  .main-header--two::before {
    width: 175px;
  }
}
@media (min-width: 1300px) {
  .main-header--two::before {
    display: none;
  }
}
.main-header--two::after {
  content: "";
  width: 615px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0px;
  background-color: var(--cherito-base);
}
@media (max-width: 1850px) {
  .main-header--two::after {
    width: 452px;
  }
}
@media (max-width: 1599px) {
  .main-header--two::after {
    width: 405px;
  }
}
@media (max-width: 1399px) {
  .main-header--two::after {
    width: 385px;
  }
}
@media (max-width: 1199px) {
  .main-header--two::after {
    width: 465px;
  }
}
@media (max-width: 767px) {
  .main-header--two::after {
    display: none;
  }
}
.main-header--two .container-fluid {
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
  padding-left: 99.5px;
  padding-right: 242px;
  background-color: transparent;
}
@media (max-width: 1850px) {
  .main-header--two .container-fluid {
    padding-left: 70px;
    padding-right: 80px;
  }
}
@media (max-width: 1599px) {
  .main-header--two .container-fluid {
    padding-right: 25px;
  }
}
@media (max-width: 1399px) {
  .main-header--two .container-fluid {
    padding-left: 60px;
    padding-right: 15px;
  }
}
@media (max-width: 1299px) {
  .main-header--two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-header--two .container-fluid::after {
  display: none;
}
.main-header--two .main-header__inner::after {
  content: "";
  width: calc(100% - 76px);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--cherito-primary);
}
@media (max-width: 1299px) {
  .main-header--two .main-header__inner::after {
    display: none;
  }
}
.main-header--two .main-header__left {
  position: relative;
}
@media (min-width: 1200px) {
  .main-header--two .main-header__left {
    gap: 80px;
  }
}
@media (min-width: 1300px) {
  .main-header--two .main-header__left {
    gap: 125px;
  }
}
.main-header--two .main-header__left::before {
  content: "";
  width: 274px;
  height: 193px;
  background-color: var(--cherito-white2);
  position: absolute;
  top: -45px;
  left: -32px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 819.000000 558.000000"><g transform="translate(0.000000,558.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1340 5556 c0 -14 -5 -28 -10 -31 -6 -4 -17 -21 -25 -38 -8 -18 -28 -54 -44 -82 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -29 -50 -11 -16 -31 -50 -44 -75 -14 -25 -34 -61 -46 -80 -11 -19 -24 -42 -28 -50 -4 -8 -25 -46 -48 -85 -22 -38 -44 -77 -48 -85 -4 -8 -13 -24 -20 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -17 -31 -28 -50 -12 -19 -32 -55 -46 -80 -13 -25 -33 -58 -43 -75 -10 -16 -30 -50 -43 -75 -14 -25 -34 -61 -46 -80 -11 -19 -24 -42 -28 -50 -8 -16 -88 -156 -103 -180 -5 -8 -16 -28 -25 -45 -8 -16 -28 -52 -45 -80 -16 -27 -34 -59 -40 -70 -6 -11 -23 -42 -40 -70 -29 -50 -71 -133 -95 -190 -16 -37 -40 -123 -55 -195 -14 -66 -8 -393 8 -460 21 -89 38 -140 50 -152 7 -7 12 -19 12 -27 0 -16 30 -78 61 -126 10 -16 22 -37 26 -45 13 -28 108 -145 159 -196 46 -44 189 -149 239 -174 11 -6 34 -19 50 -29 17 -11 50 -31 75 -44 25 -14 61 -34 80 -46 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 41 -24 54 -30 13 -6 35 -19 50 -29 14 -10 49 -31 76 -45 28 -15 64 -36 80 -47 17 -10 37 -22 45 -26 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 17 -11 53 -32 80 -47 28 -14 62 -35 76 -45 15 -10 37 -23 50 -29 13 -6 38 -19 54 -30 17 -11 37 -23 45 -27 8 -4 44 -24 79 -46 35 -21 74 -43 85 -48 12 -5 35 -18 51 -29 17 -11 37 -23 45 -27 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 17 -11 53 -32 80 -47 28 -14 62 -35 76 -45 15 -10 37 -23 50 -29 13 -6 38 -19 54 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -26 17 -11 50 -31 75 -44 25 -14 61 -34 80 -46 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 41 -24 54 -30 13 -6 35 -19 50 -29 14 -10 49 -31 76 -45 28 -15 64 -36 80 -47 17 -10 37 -22 45 -26 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 39 -25 117 -68 180 -98 178 -87 281 -107 515 -100 171 5 249 15 287 35 12 7 29 12 38 12 17 0 199 87 247 118 131 85 299 268 373 408 15 27 35 63 46 79 10 17 23 39 29 50 5 11 26 47 45 80 19 33 38 67 42 75 4 8 26 47 48 85 23 39 45 77 49 85 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 6 11 19 34 27 50 9 17 29 53 46 80 16 28 34 59 40 70 6 11 24 43 40 70 17 28 37 64 45 80 9 17 24 44 35 60 11 17 26 44 35 60 8 17 28 53 44 80 16 28 42 73 57 100 14 28 35 62 45 76 10 15 23 37 29 50 6 13 19 38 30 54 11 17 26 44 35 60 8 17 28 53 44 80 16 28 42 73 57 100 47 85 55 99 74 130 10 17 31 53 46 80 48 87 55 99 74 130 10 17 31 53 46 80 48 87 55 99 74 130 10 17 30 50 43 75 14 25 34 61 46 80 11 19 24 42 28 50 4 8 26 47 48 85 23 39 45 77 49 85 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 7 11 16 27 20 35 9 19 90 160 103 180 6 8 13 22 17 30 4 8 26 47 48 85 23 39 44 77 48 85 4 8 21 38 38 65 16 28 37 64 45 80 8 17 23 44 34 60 11 17 24 39 30 50 5 11 26 47 45 80 19 33 39 69 45 80 6 11 24 43 41 70 16 28 37 64 45 80 8 17 19 37 24 45 14 21 95 162 104 180 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 6 11 19 34 27 50 9 17 29 53 46 80 16 28 34 59 40 70 6 11 24 43 40 70 17 28 37 64 45 80 9 17 24 44 35 60 11 17 26 44 35 60 8 17 28 53 45 80 16 28 34 60 39 72 6 11 15 24 20 28 6 3 11 17 11 31 l0 24 -3330 0 -3330 0 0 -24z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 819.000000 558.000000"><g transform="translate(0.000000,558.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1340 5556 c0 -14 -5 -28 -10 -31 -6 -4 -17 -21 -25 -38 -8 -18 -28 -54 -44 -82 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -29 -50 -11 -16 -31 -50 -44 -75 -14 -25 -34 -61 -46 -80 -11 -19 -24 -42 -28 -50 -4 -8 -25 -46 -48 -85 -22 -38 -44 -77 -48 -85 -4 -8 -13 -24 -20 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -17 -31 -28 -50 -12 -19 -32 -55 -46 -80 -13 -25 -33 -58 -43 -75 -10 -16 -30 -50 -43 -75 -14 -25 -34 -61 -46 -80 -11 -19 -24 -42 -28 -50 -8 -16 -88 -156 -103 -180 -5 -8 -16 -28 -25 -45 -8 -16 -28 -52 -45 -80 -16 -27 -34 -59 -40 -70 -6 -11 -23 -42 -40 -70 -29 -50 -71 -133 -95 -190 -16 -37 -40 -123 -55 -195 -14 -66 -8 -393 8 -460 21 -89 38 -140 50 -152 7 -7 12 -19 12 -27 0 -16 30 -78 61 -126 10 -16 22 -37 26 -45 13 -28 108 -145 159 -196 46 -44 189 -149 239 -174 11 -6 34 -19 50 -29 17 -11 50 -31 75 -44 25 -14 61 -34 80 -46 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 41 -24 54 -30 13 -6 35 -19 50 -29 14 -10 49 -31 76 -45 28 -15 64 -36 80 -47 17 -10 37 -22 45 -26 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 17 -11 53 -32 80 -47 28 -14 62 -35 76 -45 15 -10 37 -23 50 -29 13 -6 38 -19 54 -30 17 -11 37 -23 45 -27 8 -4 44 -24 79 -46 35 -21 74 -43 85 -48 12 -5 35 -18 51 -29 17 -11 37 -23 45 -27 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 17 -11 53 -32 80 -47 28 -14 62 -35 76 -45 15 -10 37 -23 50 -29 13 -6 38 -19 54 -30 17 -11 37 -23 45 -27 8 -4 58 -32 110 -63 52 -31 102 -59 110 -63 8 -4 29 -16 45 -26 17 -11 50 -31 75 -44 25 -14 61 -34 80 -46 19 -11 44 -25 55 -31 11 -6 34 -19 50 -30 17 -11 41 -24 54 -30 13 -6 35 -19 50 -29 14 -10 49 -31 76 -45 28 -15 64 -36 80 -47 17 -10 37 -22 45 -26 8 -4 47 -26 85 -48 39 -23 77 -44 85 -48 8 -4 29 -16 45 -26 39 -25 117 -68 180 -98 178 -87 281 -107 515 -100 171 5 249 15 287 35 12 7 29 12 38 12 17 0 199 87 247 118 131 85 299 268 373 408 15 27 35 63 46 79 10 17 23 39 29 50 5 11 26 47 45 80 19 33 38 67 42 75 4 8 26 47 48 85 23 39 45 77 49 85 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 6 11 19 34 27 50 9 17 29 53 46 80 16 28 34 59 40 70 6 11 24 43 40 70 17 28 37 64 45 80 9 17 24 44 35 60 11 17 26 44 35 60 8 17 28 53 44 80 16 28 42 73 57 100 14 28 35 62 45 76 10 15 23 37 29 50 6 13 19 38 30 54 11 17 26 44 35 60 8 17 28 53 44 80 16 28 42 73 57 100 47 85 55 99 74 130 10 17 31 53 46 80 48 87 55 99 74 130 10 17 31 53 46 80 48 87 55 99 74 130 10 17 30 50 43 75 14 25 34 61 46 80 11 19 24 42 28 50 4 8 26 47 48 85 23 39 45 77 49 85 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 7 11 16 27 20 35 9 19 90 160 103 180 6 8 13 22 17 30 4 8 26 47 48 85 23 39 44 77 48 85 4 8 21 38 38 65 16 28 37 64 45 80 8 17 23 44 34 60 11 17 24 39 30 50 5 11 26 47 45 80 19 33 39 69 45 80 6 11 24 43 41 70 16 28 37 64 45 80 8 17 19 37 24 45 14 21 95 162 104 180 4 8 12 24 19 35 7 11 30 51 52 90 22 38 45 79 52 90 6 11 19 34 27 50 9 17 29 53 46 80 16 28 34 59 40 70 6 11 24 43 40 70 17 28 37 64 45 80 9 17 24 44 35 60 11 17 26 44 35 60 8 17 28 53 45 80 16 28 34 60 39 72 6 11 15 24 20 28 6 3 11 17 11 31 l0 24 -3330 0 -3330 0 0 -24z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1850px) {
  .main-header--two .main-header__left::before {
    width: 260px;
    height: 193px;
    top: 0;
    left: -45px;
  }
}
@media (max-width: 1299px) {
  .main-header--two .main-header__left::before {
    display: none;
  }
}
.main-header--two .main-header__logo {
  position: relative;
}
.main-header--two .main-header__logo::after {
  content: "";
  width: 133px;
  height: 105px;
  background-color: var(--cherito-base);
  position: absolute;
  top: -29px;
  right: -112px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 279.000000 315.000000"><g transform="translate(0.000000,315.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1782 3082 c-18 -37 -41 -80 -52 -97 -19 -30 -25 -41 -74 -130 -15 -27 -36 -63 -47 -80 -10 -16 -22 -37 -26 -45 -8 -18 -89 -159 -103 -180 -6 -8 -13 -22 -17 -30 -4 -8 -26 -46 -48 -85 -23 -38 -45 -77 -49 -85 -4 -8 -12 -24 -19 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -13 -24 -20 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -16 -28 -27 -45 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -30 -50 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -30 -50 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -5 -11 -14 -27 -20 -35 -5 -8 -30 -51 -55 -95 -25 -44 -50 -87 -55 -95 -5 -8 -21 -37 -36 -65 -15 -27 -37 -66 -50 -85 l-24 -35 507 -3 c331 -1 510 1 517 8 5 5 16 10 24 10 18 0 107 70 121 95 6 11 20 34 31 50 11 17 23 37 27 45 4 8 52 92 108 185 56 94 105 177 108 185 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 24 39 30 50 6 11 19 34 30 50 11 17 23 37 27 45 4 8 40 70 80 137 40 68 73 125 73 127 0 3 12 24 28 48 44 69 51 82 62 103 6 11 19 34 30 50 11 17 24 39 29 50 5 11 21 37 35 58 14 21 26 40 26 42 0 2 40 70 88 152 49 81 92 155 95 163 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 24 39 30 50 6 11 19 34 30 50 11 17 23 37 27 45 4 8 53 92 108 185 56 94 105 177 108 185 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 35 63 55 103 29 60 35 83 34 135 -1 111 -65 216 -159 259 -28 13 -50 29 -50 35 0 10 -78 13 -362 13 l-363 -1 -33 -67z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 279.000000 315.000000"><g transform="translate(0.000000,315.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M1782 3082 c-18 -37 -41 -80 -52 -97 -19 -30 -25 -41 -74 -130 -15 -27 -36 -63 -47 -80 -10 -16 -22 -37 -26 -45 -8 -18 -89 -159 -103 -180 -6 -8 -13 -22 -17 -30 -4 -8 -26 -46 -48 -85 -23 -38 -45 -77 -49 -85 -4 -8 -12 -24 -19 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -13 -24 -20 -35 -7 -11 -30 -52 -52 -90 -22 -39 -45 -79 -52 -90 -7 -11 -15 -27 -19 -35 -4 -8 -26 -46 -49 -85 -22 -38 -44 -77 -48 -85 -4 -8 -16 -28 -27 -45 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -30 -50 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -6 -11 -26 -47 -45 -80 -19 -33 -40 -69 -45 -80 -6 -11 -19 -33 -30 -50 -11 -16 -26 -43 -34 -60 -8 -16 -29 -52 -45 -80 -17 -27 -35 -59 -41 -70 -5 -11 -14 -27 -20 -35 -5 -8 -30 -51 -55 -95 -25 -44 -50 -87 -55 -95 -5 -8 -21 -37 -36 -65 -15 -27 -37 -66 -50 -85 l-24 -35 507 -3 c331 -1 510 1 517 8 5 5 16 10 24 10 18 0 107 70 121 95 6 11 20 34 31 50 11 17 23 37 27 45 4 8 52 92 108 185 56 94 105 177 108 185 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 24 39 30 50 6 11 19 34 30 50 11 17 23 37 27 45 4 8 40 70 80 137 40 68 73 125 73 127 0 3 12 24 28 48 44 69 51 82 62 103 6 11 19 34 30 50 11 17 24 39 29 50 5 11 21 37 35 58 14 21 26 40 26 42 0 2 40 70 88 152 49 81 92 155 95 163 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 24 39 30 50 6 11 19 34 30 50 11 17 23 37 27 45 4 8 53 92 108 185 56 94 105 177 108 185 4 8 16 29 27 45 11 17 24 39 30 50 6 11 19 34 30 50 11 17 35 63 55 103 29 60 35 83 34 135 -1 111 -65 216 -159 259 -28 13 -50 29 -50 35 0 10 -78 13 -362 13 l-363 -1 -33 -67z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1299px) {
  .main-header--two .main-header__logo::after {
    display: none;
  }
}
.main-header--two .main-menu .main-menu__list > li > a {
  color: var(--cherito-white3);
}
.main-header--two .main-header__btn {
  padding: 15px 30.5px 16px;
  font-size: 14px;
}
@media (max-width: 1599px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}
.main-header--two .main-header__btn:hover {
  color: var(--cherito-black);
}
.main-header--two .main-header__btn .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-header--two .main-header__call {
  position: relative;
  margin-left: 67px;
  margin-right: 60px;
  gap: 10px;
}
@media (max-width: 1599px) {
  .main-header--two .main-header__call {
    margin-left: 0;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call {
    margin-left: 30px;
  }
}
.main-header--two .main-header__call::after {
  content: "";
  width: 1px;
  height: calc(100% + 61.72px);
  position: absolute;
  top: calc(50% - 1px);
  right: -30px;
  transform: translateY(-50%);
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.16);
}
@media (max-width: 1199px) {
  .main-header--two .main-header__call::after {
    height: calc(100% + 42.86px);
    top: 50%;
  }
}
.main-header--two .main-header__call__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-black);
}
.main-header--two .main-header__call:hover .main-header__call__icon {
  color: var(--cherito-black);
  background-color: var(--cherito-white, #ffffff);
}
.main-header--two .main-header__call:hover .main-header__call__number {
  color: var(--cherito-black);
}
.main-header--two .main-header__search,
.main-header--two .main-header__cart {
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.21);
}
.main-header--two .main-header__search:hover,
.main-header--two .main-header__cart:hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-header--two .main-header__search:hover .main-header__search__icon, .main-header--two .main-header__search:hover .main-header__cart__icon,
.main-header--two .main-header__cart:hover .main-header__search__icon,
.main-header--two .main-header__cart:hover .main-header__cart__icon {
  color: var(--cherito-black);
}
.main-header--three {
  width: 100%;
  position: absolute;
  top: 70px;
  left: 0;
  background-color: transparent;
}
@media (max-width: 767px) {
  .main-header--three {
    top: 20px;
  }
}
@media (max-width: 575px) {
  .main-header--three {
    top: 15px;
  }
}
.main-header--three::before {
  display: none;
}
.main-header--three .main-header__inner {
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  background-color: var(--cherito-base);
  border-radius: 10px;
}
@media (max-width: 1599px) {
  .main-header--three .main-header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .main-header--three .main-header__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-header--three .main-header__inner::after {
  content: "";
  width: 328px;
  height: 100%;
  border-radius: 0px 10px 10px 0px;
  background-color: var(--cherito-primary);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1599px) {
  .main-header--three .main-header__inner::after {
    width: 318px;
  }
}
@media (max-width: 767px) {
  .main-header--three .main-header__inner::after {
    width: 200px;
  }
}
@media (max-width: 575px) {
  .main-header--three .main-header__inner::after {
    width: 185px;
  }
}
@media (max-width: 430px) {
  .main-header--three .main-header__inner::after {
    display: none;
  }
}
.main-header--three .main-header__left {
  display: block;
}
@media (min-width: 1200px) and (max-width: 1599px) {
  .main-header--three .main-header__left {
    display: flex;
    align-items: center;
    gap: 60px;
  }
}
@media (min-width: 1600px) {
  .main-header--three .main-header__logo {
    display: none;
  }
}
.main-header--three .main-menu .main-menu__list > li {
  padding-top: 35px;
  padding-bottom: 35px;
}
.main-header--three .main-menu .main-menu__list > li > a {
  color: var(--cherito-white3);
}
@media (max-width: 1199px) {
  .main-header--three .main-header__search {
    margin-left: 50px;
  }
}
@media (max-width: 767px) {
  .main-header--three .main-header__search {
    margin-left: 20px;
  }
}
@media (max-width: 390px) {
  .main-header--three .main-header__search {
    margin-left: 15px;
  }
}
.main-header--three .main-header__btn {
  margin-left: 35px;
  padding: 15px 30.5px 16px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}
.main-header--three .main-header__btn:hover {
  color: var(--cherito-black);
}
.main-header--three .main-header__btn .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-header--four {
  background-color: var(--cherito-white, #ffffff);
  border-bottom: 1px solid var(--cherito-gray4, #D2D2D2);
}
.main-header--four::before {
  display: none;
}
.main-header--four .container-fluid {
  background-color: transparent;
}
.main-header--four .container-fluid::after {
  display: none;
}
@media (min-width: 1200px) {
  .main-header--four .main-header__left {
    gap: 70px;
  }
}
.main-header--four .main-menu .main-menu__list > li {
  padding-top: 43px;
  padding-bottom: 43px;
}
.main-header--four .main-menu .main-menu__list > li > a {
  color: var(--cherito-text, #727272);
}
.main-header--four .main-menu .main-menu__list > li.current > a,
.main-header--four .main-menu .main-menu__list > li:hover > a {
  color: var(--cherito-base);
}
.main-header--four .main-header__right::before {
  content: "";
  width: 1px;
  height: calc(100% + 59.25px);
  background-color: var(--cherito-gray4, #D2D2D2);
  position: absolute;
  top: 50%;
  left: -27px;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .main-header--four .main-header__right::before {
    display: none;
  }
}
.main-header--four .mobile-nav__btn span {
  background-color: var(--cherito-black);
}
.main-header--four .mobile-nav__btn:hover span {
  background-color: var(--cherito-base);
}
.main-header--four .main-header__search,
.main-header--four .main-header__cart {
  background-color: var(--cherito-white6, #EFEFEF);
}
.main-header--four .main-header__search:hover,
.main-header--four .main-header__cart:hover {
  background-color: var(--cherito-base);
}
.main-header--four .main-header__search:hover .main-header__search__icon,
.main-header--four .main-header__search:hover .main-header__cart__icon,
.main-header--four .main-header__cart:hover .main-header__search__icon,
.main-header--four .main-header__cart:hover .main-header__cart__icon {
  color: var(--cherito-white, #ffffff);
}
.main-header--four .main-header__search__icon,
.main-header--four .main-header__cart__icon {
  color: var(--cherito-base);
}
.main-header--four .main-header__btn {
  margin-left: 30px;
  padding: 15px 30.5px 16px;
  font-size: 14px;
}
@media (max-width: 767px) {
  .main-header--four .main-header__btn {
    display: none;
  }
}
.main-header--five {
  padding: 8px 0;
}
/*.main-header--five::before, .main-header--five::after {
  content: "";
  width: calc(100% - 360px);
  height: 61px;
  position: absolute;
  right: 0;
  border-radius: 10px 0px 0px 10px;
  z-index: -1;
}*/
@media (max-width: 1199px) {
  .main-header--five::before, .main-header--five::after {
    display: none;
  }
}
.main-header--five::before {
  top: 0;
  left: auto;
  background-color: var(--cherito-white2);
}
.main-header--five::after {
  bottom: 0;
  background-color: var(--cherito-white3);
}
.main-header--five .container {
  width: 100%;
  position: relative;
  background-color: transparent;
  margin: 0 auto;

  padding: 0;
}

/*.main-header--five .container::before {
  content: "";
  width: 645px;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -80px;
  background-color: var(--cherito-base);
  border-radius: 50px 0px 0px 50px;
  z-index: 1;
}*/
@media (max-width: 1799px) {
  .main-header--five .container::before {
    width: 430px;
  }
}
@media (max-width: 1599px) {
  .main-header--five .container::before {
    width: 280px;
  }
}
@media (max-width: 1199px) {
  .main-header--five .container::before {
    width: 400px;
  }
}
@media (max-width: 767px) {
  .main-header--five .container::before {
    display: none;
  }
}
.main-header--five .container::after {
  display: none;
}
.main-header--five .main-header__inner {
  padding: 0;
  /*background: #fff;
  border-radius: 150px;
  padding: 5px 20px;*/
}
.main-header--five .main-header__left {
/*  gap: 42px;*/
}
.main-header--five .main-header__nav {
  position: relative;
/*  padding-left: 40px;*/
  z-index: 1;
}
@media (max-width: 1299px) {
  .main-header--five .main-header__nav {
    padding-left: 20px;
  }
}
.main-header--five .main-menu .main-menu__list > li {
  padding: 32px 0;
}
.main-header--five .main-menu .main-menu__list > li > a {
  color: var(--cherito-black);
  background: linear-gradient(to right, #ff9f93 0%, #38d1e0 100%) 0px 95% / 0px 1px no-repeat;
}
.main-header--five .main-menu .main-menu__list > li.current > a,
.main-header--five .main-menu .main-menu__list > li:hover > a {
  color: #ff9f93;
  background-size: 100% 1px;
}
.main-header--five .main-header__right {
  z-index: 1;
}
.main-header--five .mobile-nav__btn:hover span {
/*  background-color: var(--cherito-primary);*/
}
@media (max-width: 767px) {
  .main-header--five .main-header__search,
  .main-header--five .main-header__cart {
    background-color: var(--cherito-white2);
  }
  .main-header--five .main-header__search:hover,
  .main-header--five .main-header__cart:hover {
    background-color: var(--cherito-base);
  }
  .main-header--five .main-header__search:hover .main-header__search__icon,
  .main-header--five .main-header__search:hover .main-header__cart__icon,
  .main-header--five .main-header__cart:hover .main-header__search__icon,
  .main-header--five .main-header__cart:hover .main-header__cart__icon {
    color: var(--cherito-white, #ffffff);
  }
  .main-header--five .main-header__search .main-header__search__icon,
  .main-header--five .main-header__search .main-header__cart__icon,
  .main-header--five .main-header__cart .main-header__search__icon,
  .main-header--five .main-header__cart .main-header__cart__icon {
    color: var(--cherito-base);
  }
}
.main-header--five .main-header__border {
  position: relative;
  margin-left: 26.5px;
  margin-right: 26.5px;
}
@media (max-width: 767px) {
  .main-header--five .main-header__border {
    display: none;
  }
}
/*.main-header--five .main-header__border::before {
  content: "";
  width: 1px;
  height: 122.05px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}*/
@media (max-width: 1199px) {
  .main-header--five .main-header__border::before {
    height: 90.03px;
  }
}
.main-header--five .main-header__btn {
  padding: 12px 22px 13px;
}
.main-header--five .main-header__btn:hover {
  color: var(--cherito-black);
}
.main-header--five .main-header__btn .cherito-btn__hover {
/*  background-color: var(--cherito-white, #ffffff);*/
}
.main-header--six {
  padding-left: 112px;
  background-color: var(--cherito-black);
  border-bottom: 1px solid RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 1399px) {
  .main-header--six {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .main-header--six {
    border: 0;
  }
}
.main-header--six::before {
  display: none;
}
@media (min-width: 1400px) {
  .main-header--six .main-header__container {
    padding-left: 0;
    margin-right: calc((100% - 1088px) / 2);
    width: auto;
    min-width: auto;
    max-width: inherit;
  }
}
@media (min-width: 1400px) {
  .main-header--six .main-header__left {
    gap: 80px;
  }
}
@media (min-width: 1600px) {
  .main-header--six .main-header__left {
    gap: 105px;
  }
}
.main-header--six .main-menu .main-menu__list > li {
  padding-top: 34px;
  padding-bottom: 34px;
}
.main-header--six .main-menu .main-menu__list > li > a {
  color: var(--cherito-gray3, #E3DDD8);
}
.main-header--six .main-menu .main-menu__list > li.current > a,
.main-header--six .main-menu .main-menu__list > li:hover > a {
  color: var(--cherito-base);
}
.main-header--six .mobile-nav__btn:hover span {
  background-color: var(--cherito-base);
}
.main-header--six .main-header__search:hover,
.main-header--six .main-header__cart:hover {
  background-color: var(--cherito-base);
}
.main-header--six .main-header__search:hover:hover .main-header__search__icon,
.main-header--six .main-header__search:hover:hover .main-header__cart__icon,
.main-header--six .main-header__cart:hover:hover .main-header__search__icon,
.main-header--six .main-header__cart:hover:hover .main-header__cart__icon {
  color: var(--cherito-white, #ffffff);
}
.main-header--six .main-header__border {
  position: relative;
  margin: 0 20px;
  width: 1px;
  height: 40px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
  .main-header--six .main-header__border {
    display: none;
  }
}
.main-header--six .main-header__btn {
  padding: 11.125px 13.5px;
  font-size: 14px;
  background-color: var(--cherito-black);
  border: 1px solid RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.06);
}
@media (max-width: 767px) {
  .main-header--six .main-header__btn {
    display: none;
  }
}
.main-header--six .main-header__btn:hover {
  border-color: var(--cherito-base);
}
.main-header--six .main-header__btn .cherito-btn__hover {
  background-color: var(--cherito-base);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--cherito-white, #ffffff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--cherito-black2-rgb, 0, 0, 0), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned.main-header--two {
  background-color: var(--cherito-primary);
}
.sticky-header--cloned.main-header--three {
  background-color: var(--cherito-base);
}
.sticky-header--cloned.main-header--three .main-header__inner::after {
  border-radius: 0;
}
@media (min-width: 1600px) {
  .sticky-header--cloned.main-header--three .main-header__left {
    display: flex;
    align-items: center;
    gap: 60px;
  }
}
@media (min-width: 1600px) {
  .sticky-header--cloned.main-header--three .main-header__logo {
    display: block;
  }
}
.sticky-header--cloned.main-header--five::before {
  display: none;
}
.sticky-header--cloned.main-header--five::after {
  height: 100%;
}
.sticky-header--cloned.main-header--five .topbar {
  display: none;
}
.sticky-header--cloned.main-header--five .main-menu .main-menu__list > li {
  /*padding-top: 43px;
  padding-bottom: 43px;*/
  padding: 10px 0;
}
.sticky-header--cloned.main-header--five .main-header__border::before {
  height: 106px;
}
.sticky-header--cloned.main-header--six {
  background-color: var(--cherito-black);
}

.mobile-nav__btn {
  width: 21px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--cherito-black);
  transition: all 500ms ease;
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}
.mobile-nav__btn:hover span {
/*  background-color: var(--cherito-black, #212226);*/
}

.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 {
  position: relative;
  padding-top: 42.5px;
  padding-bottom: 42.5px;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 35px;
}
.main-menu .main-menu__list > li > a {
  position: relative;
  font-size: 18px;
  display: flex;
  align-items: center;
  color: var(--cherito-white3, #E5DED9);
  font-weight: 500;
  text-transform: capitalize;
  line-height: 1.25;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--cherito-white, #ffffff);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 180px;
  width: max-content;
  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: #fff;
  box-shadow: 0px 10px 60px 0px RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.07);
  padding: 5px 5px;
  border-radius: 0 0 10px 10px;
  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);
}

/*@media (min-width:1200px){
  .main-menu .main-menu__list li ul.head-list{
    display: block;
    column-count: 2;
    width: 550px;
    left: -150px;
  }
}*/

.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 {
  margin-bottom: 0px;
  color: #101010;
  display: flex;
/*  text-transform: capitalize;*/
  padding: 7px 20px;
  padding-right: 35px;
  border-radius: 0px;
  transition: 400ms;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 15px;
  top: 8px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f061";
  color: var(--cherito-black);
  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: linear-gradient(180deg, #ff9f93, #fec6bf);
/*  color: #fff;*/
}
.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(--cherito-white, #ffffff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--cherito-black, #212226);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--cherito-base, #E23B33);
}
.megamenu-popup .megamenu-clickable--close .icon-close {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close .icon-close::before, .megamenu-popup .megamenu-clickable--close .icon-close::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 .icon-close::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(--cherito-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(var(--cherito-black-rgb, 33, 34, 38), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  text-transform: capitalize;
  font-size: 17px;
  color: var(--cherito-black, #212226);
  font-weight: 700;
}
.demo-one__title:hover {
  color: var(--cherito-base, #E23B33);
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.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(--cherito-black-rgb, 33, 34, 38), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transform-origin: bottom center;
  opacity: 0;
  transition: transform 500ms ease, opacity 600ms linear;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .demo-one__btns {
    flex-direction: column;
  }
}
@media (max-width: 360px) {
  .demo-one__btns {
    flex-direction: column;
  }
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  padding: 15px 27px 16px;
  font-size: 15px;
}
.demo-one__btn:hover {
  color: var(--cherito-black, #212226);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .demo-one__btn {
    min-width: 135px;
  }
}
@media (max-width: 360px) {
  .demo-one__btn {
    min-width: 135px;
  }
}
.demo-one__btn .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  margin-bottom: -20px;
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--cherito-white, #ffffff);
  box-shadow: 0px 10px 60px 0px rgba(var(--cherito-black-rgb, 33, 34, 38), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 165px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 17px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# 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(--cherito-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(--cherito-white, #ffffff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 400px;
  background-color: var(--cherito-black, #212226);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 60px;
  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;
  background: #fff;
  justify-content: center;
  padding: 15px;
  border-radius: 10px;
}

.mobile-nav__close {
  display: inline-flex;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--cherito-white, #ffffff);
  cursor: pointer;
  transition: all 500ms ease;
}
.mobile-nav__close svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.mobile-nav__close:hover {
  color: var(--cherito-base, #E23B33);
}

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

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 27px;
  color: var(--cherito-white, #ffffff);
  padding: 10px 0;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li:hover > a,
.mobile-nav__content .main-menu__list li.current > a{
  color: #38d1e0;
}

.mobile-nav__content .main-menu__list > li > ul > li > a {
  
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: #38d1e0;
}

.mobile-nav__content .main-menu__list li a button {
  width: 28px;
  height: 28px;
  font-size: 14px;
  background: linear-gradient(180deg, #38d1e0, #007ca1);
  border: none;
  outline: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
  border-radius: 50%;
}
.mobile-nav__content .main-menu__list li a button svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  color: #fff;
}

.mobile-nav__social {
  gap: 10px;
}
.mobile-nav__social a {
  border: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--cherito-base, #E23B33);
}
.mobile-nav__social a:hover {
  background-color: var(--cherito-white, #ffffff);
}
.mobile-nav__social .social-links__icon {
  font-size: 17px;
  color: var(--cherito-white, #ffffff);
}
.mobile-nav__social a:hover .social-links__icon {
  color: var(--cherito-base, #E23B33);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}
.mobile-nav__contact hr{
  border-color: #fff;
  margin: 12px 0;
}
.mobile-nav__contact li {
  color: var(--cherito-white, #ffffff);
  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(--cherito-base, #E23B33);
}
.mobile-nav__contact__icon {
  min-width: 35px;
  height: 35px;
  border-radius: 50%;
  background: linear-gradient(180deg, #38d1e0, #007ca1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 15px;
  margin-right: 10px;
  color: var(--cherito-white, #ffffff);
}
.mobile-nav__contact__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
.form-one__group {
  /*display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  margin: 0;*/
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;

  margin-bottom: 15px;
}
.form-one__control--full {
  /*grid-column-start: 1;
  grid-column-end: -1;*/
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--cherito-font, "Jost", sans-serif);
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 10px;
  border: 0;
  background-color: var(--cherito-white2, #F4F0ED) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--cherito-font, "Jost", sans-serif);
  color: var(--cherito-text, #727272) !important;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  line-height: 60px;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
@media (max-width: 430px) {
  .form-one .bootstrap-select > .dropdown-toggle {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.form-one .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: 18px;
  color: var(--cherito-text, #727272);
}
@media (max-width: 430px) {
  .form-one .bootstrap-select > .dropdown-toggle::before {
    right: 25px;
  }
}
.form-one .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--cherito-white3, #E5DED9);
}
.form-one .bootstrap-select .dropdown-menu {
  border: none;
}
.form-one .bootstrap-select .dropdown-menu > li > a {
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  color: var(--cherito-black, #212226);
  background-color: var(--cherito-white4, #FAF6F0);
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.form-one .bootstrap-select .dropdown-menu > li:hover > a,
.form-one .bootstrap-select .dropdown-menu > li.selected > a {
  background-color: var(--cherito-base, #E23B33);
  color: var(--cherito-white, #ffffff);
  border-color: var(--cherito-base, #E23B33);
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one input[type=text],
.form-one input[type=email],
.form-one input[type=password],
.form-one input[type=tel],
.form-one textarea,
.form-one select {
  display: block;
  border: none;
  outline: none;
  padding: 0 25px;
  width: 100%;
  height: 58px;
  font-family: var(--cherito-font, "Jost", sans-serif);
  color: #1e1e1e;
  background-color: var(--cherito-white2, #F4F0ED);
  border: 1px solid #38d1e01a;
  border-radius: 50px;
  transition: all 400ms ease;
}
.select-wrapper {
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  padding-right: 35px;
}

.select-wrapper::after {
  content: "\f107";
  font-family: 'FontAwesome';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #333;
}
.form-one input[type=text]:focus,
.form-one input[type=email]:focus,
.form-one input[type=password]:focus,
.form-one input[type=tel]:focus,
.form-one textarea:focus,
.form-one select:focus {
  color: var(--cherito-black, #212226);
  border-color: var(--cherito-base, #E23B33);
}
.form-one textarea {
  height: 130px;
  padding-top: 18px;
  resize: none;
  border-radius: 35px;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.7;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--cherito-white, #ffffff);
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--cherito-text, #727272);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 25px;
  border-radius: 60px;
  transition: all 500ms ease;
}
.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--cherito-black, #212226);
}
.search-popup__form .cherito-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0 60px 60px 0;
}
.search-popup__form .cherito-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.search-popup__form .cherito-btn:hover {
  background-color: var(--cherito-primary, #F2B42B);
}
.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.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  padding: 80px 0;
  background-color: var(--cherito-black, #212226);
}
.page-header__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url(../images/banners/inner-banner.jpg);
  background-attachment: fixed;
}
.page-header__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2f9ffe8;
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header__content {
/*  text-align: center;*/
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-header__title {
  margin-bottom: 0px;
  font-size: 48px;
  color: var(--cherito-white, #ffffff);
  line-height: 1.3;

  color: transparent;
  background: #042b3c;
  background-clip: text;
}
.cherito-breadcrumb {
  margin: 0;
  padding: 13px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px 0;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 48px;
}
.cherito-breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--cherito-black);
  text-transform: capitalize;
  line-height: 1.25;
}
@media (max-width: 575px) {
  .cherito-breadcrumb li {
    font-size: 15px;
  }
}
.cherito-breadcrumb li:not(:last-of-type)::after {
  content: "\f054";
  font-family: 'FontAwesome';
  position: relative;
  top: 1px;
  margin-left: 12px;
  margin-right: 12px;
  font-size: 15px;
}
.cherito-breadcrumb li span,
.cherito-breadcrumb li a {
  display: inline-flex;
}
.cherito-breadcrumb li:not(:first-child) span {
  color: var(--cherito-black);
}
.cherito-breadcrumb li a {
  color: inherit;
  background: linear-gradient(to right, #161616 0%, #161616 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cherito-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.cherito-breadcrumb li a:hover {
  color: var(--cherito-black);
}
.cherito-breadcrumb li a i{
  margin-right: 8px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
  padding: 35px 40px 40px;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 10px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
}
@media (max-width: 390px) {
  .sidebar__single {
    padding: 25px 30px 30px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.083;
  border-bottom: 1px solid var(--cherito-base, #E23B33);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  border: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
  color: var(--cherito-text, #727272);
  font-weight: 500;
  height: 60px;
  padding-left: 53px;
  background-color: var(--cherito-white2, #F4F0ED);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 400ms ease;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  color: var(--cherito-black, #212226);
  border-color: var(--cherito-base, #E23B33);
}
.sidebar__search button[type=submit] {
  padding: 0;
  border: none;
  outline: none;
  display: inline-flex;
  background-color: transparent;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--cherito-text, #727272);
  transition: all 400ms ease;
}
.sidebar__search button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__search button[type=submit]:hover {
  color: var(--cherito-base, #E23B33);
}
.sidebar__posts {
  margin: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: flex-start;
  gap: 20px 15px;
}
@media (max-width: 360px) {
  .sidebar__posts__item {
    flex-direction: column;
  }
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid RGBA(var(--cherito-black-rgb, 33, 34, 38), 0.15);
}
@media (max-width: 360px) {
  .sidebar__posts__item:not(:last-of-type) {
    margin-bottom: 19px;
  }
}
.sidebar__posts__image {
  width: 70px;
  flex-shrink: 0;
}
.sidebar__posts__image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.sidebar__posts__content {
  width: calc(100% - 70px);
}
@media (max-width: 360px) {
  .sidebar__posts__content {
    margin: 0;
    width: 100%;
  }
}
.sidebar__posts__meta {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--cherito-font, "Jost", sans-serif);
  color: var(--cherito-text, #727272);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.sidebar__posts__meta__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--cherito-base, #E23B33);
}
.sidebar__posts__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__posts__title {
  margin: 0;
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.sidebar__posts__title:hover {
  color: var(--cherito-base, #E23B33);
}
.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__categories-wrapper {
  padding-bottom: 35px;
}
@media (max-width: 390px) {
  .sidebar__categories-wrapper {
    padding-bottom: 25px;
  }
}
.sidebar__categories {
  margin: 0;
}
.sidebar__categories-title {
  margin-bottom: 28px;
}
.sidebar__categories li:not(:last-child) {
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--cherito-white3, #E5DED9);
}
.sidebar__categories li a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 14px;
  color: var(--cherito-text, #727272);
  text-transform: capitalize;
  font-weight: 500;
  line-height: 1.428;
  transition: all 500ms ease;
}
.sidebar__categories li a:hover {
  color: var(--cherito-base, #E23B33);
}
.sidebar__categories li a .sidebar__categories__icon {
  position: relative;
  top: 3px;
  display: inline-flex;
  font-size: 13px;
  color: var(--cherito-base, #E23B33);
  overflow: hidden;
}
.sidebar__categories li a .sidebar__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar__categories a:hover .sidebar__categories__icon > * {
  animation: slideLeft 400ms;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  padding: 12px 16px 13px;
  font-size: 14px;
  color: var(--cherito-text, #727272);
  text-transform: capitalize;
  font-weight: 600;
  background-color: var(--cherito-white2, #F4F0ED);
}
.sidebar__tags a:hover {
  color: var(--cherito-white, #ffffff);
}
.sidebar__tags a .cherito-btn__hover {
  background-color: var(--cherito-base, #E23B33);
}
.sidebar__comments {
  margin: 0;
  padding: 0;
}
.sidebar__comments li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sidebar__comments li:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__comments__icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cherito-white2, #F4F0ED);
  font-size: 18px;
  color: var(--cherito-black, #212226);
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
li:hover .sidebar__comments__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-base, #E23B33);
}
.sidebar__comments__title {
  margin: 0;
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 14px;
  line-height: 1.562;
  font-weight: 500;
  color: var(--cherito-text, #727272);
}
.sidebar__comments__title:hover {
  color: var(--cherito-base, #E23B33);
}
.sidebar__comments__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: grid;
  gap: 15px;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  width: 100%;
  height: 252px;
  border-radius: 25px;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--cherito-white, #ffffff);
/*  mix-blend-mode: luminosity;*/
}
.google-map__event-details iframe {
  height: 329px;
  border-radius: 10px;
}

.contact-map {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
}
.contact-map .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
}
.client-carousel .container {
  position: relative;
  z-index: 1;
}
.client-carousel__content {
  text-align: center;
}
.client-carousel__title {
  position: relative;
  margin-bottom: 30px;
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1.625;
  font-weight: 600;

  color: transparent;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  background-clip: text;
}
.client-carousel__title::before, .client-carousel__title::after {
  content: "";
  width: calc(50% - 94px);
  height: 2px;
  background-color: var(--cherito-gray5, #EBEBEB);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.client-carousel__title::before {
  left: 0px;
}
.client-carousel__title::after {
  right: 0px;
}
.client-carousel__carousel {
  position: relative;
}
.client-carousel__carousel .owl-stage {
  display: flex;
  align-items: center;
}
.client-carousel__item {
  position: relative;
  text-align: center;
}
.client-carousel__item img {
  max-width: 100%;
  width: auto !important;
}
.client-carousel__image {
  margin: auto;
}
.client-carousel__hover-image {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 300ms ease;
}
.client-carousel__item:hover .client-carousel__hover-image {
  opacity: 1;
}
.client-carousel .owl-theme .owl-nav {
  margin-top: 30px;
}
.client-carousel .owl-carousel .owl-nav button.owl-next,
.client-carousel .owl-carousel .owl-nav button.owl-prev{
  width: 45px;
  height: 45px;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--cherito-white, #ffffff);
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  transition: all 400ms ease;
  margin: 0 5px;
}
.client-carousel .owl-carousel .owl-nav button.owl-next:hover,
.client-carousel .owl-carousel .owl-nav button.owl-prev:hover{
  background: linear-gradient(180deg, #38d1e0, #38d1e0);
}
.client-carousel--home2 {
  padding-top: 0;
}
.client-carousel--home3 .client-carousel__title::before,
.client-carousel--home3 .client-carousel__title::after {
  background-color: var(--cherito-base);
}
.client-carousel--home4 {
  padding-bottom: 238px;
  background-color: var(--cherito-base);
}
@media (max-width: 767px) {
  .client-carousel--home4 {
    padding-bottom: 218px;
  }
}
@media (max-width: 575px) {
  .client-carousel--home4 {
    padding-bottom: 198px;
  }
}
.client-carousel--home4 .client-carousel__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: multiply;
}
.client-carousel--home4 .client-carousel__title {
  color: var(--cherito-white, #ffffff);
}
.client-carousel--home4 .client-carousel__title::before,
.client-carousel--home4 .client-carousel__title::after {
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.5);
}
.client-carousel--home5 {
  padding-top: 344px;
  padding-bottom: 92px;
}
@media (max-width: 575px) {
  .client-carousel--home5 {
    padding-top: 321px;
    padding-bottom: 60px;
  }
}
.client-carousel--home5 .client-carousel__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cherito-black2, #000000);
}
.client-carousel--home5 .client-carousel__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-base-rgb), 0.9);
  z-index: 1;
}
.client-carousel--home5 .client-carousel__bg::after {
  content: "";
  width: 100%;
  max-width: 1561px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(var(--cherito-black-rgb), 0.25);
  z-index: 2;
}
.client-carousel--home5 .client-carousel__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: luminosity;
}
.client-carousel--home5 .container {
  z-index: 3;
}
.client-carousel--home5 .client-carousel__title {
  color: var(--cherito-white, #ffffff);
}
.client-carousel--home5 .client-carousel__title::before,
.client-carousel--home5 .client-carousel__title::after {
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.5);
}
.client-carousel--home6 {
  padding-top: 80px;
  padding-bottom: 272px;
  background-color: var(--cherito-base);
  overflow: hidden;
}
@media (max-width: 575px) {
  .client-carousel--home6 {
    padding-top: 60px;
    padding-bottom: 254px;
  }
}
.client-carousel--home6 .container::after {
  content: "";
  width: calc(100% - 30px);
  height: 1px;
  position: absolute;
  left: 50%;
  bottom: -80px;
  transform: translateX(-50%);
  background-color: RGBA(var(--cherito-white5-rgb, 245, 241, 238), 0.5);
}
@media (max-width: 575px) {
  .client-carousel--home6 .container::after {
    bottom: -60px;
  }
}
.client-carousel--home6 .client-carousel__shape {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-three {
  position: relative;
  background-color: var(--cherito-base);
}
.testimonials-three-page{
  background: #fff;
}
.testimonials-three-inner{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.testimonials-three-inner .testimonial-card-two__identity::after,
.testimonials-three-inner .testimonial-card-two__content::after{
  display: none;
}
.testimonials-three-inner .testimonial-card-two{
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  height: 100%;
  border-bottom: 2px solid #ff9f93;
  box-shadow: 10px 10px 100px #e7e7e7;
}
.testimonials-three-inner .testimonial-card-two p{
  margin-bottom: 0;
}
.testimonials-three-inner .testimonial-card-two__identity__info{
  width: auto;
}
.testimonials-three-inner .testimonial-card-two__identity__inner{
  justify-content: center;
}
.testimonials-three-inner .testimonial-card-two .cherito-ratings{
  margin-bottom: 6px;
}
.testimonial-card-two__icon{
  position: relative;
  margin: 0 auto;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--cherito-white);
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.testimonial-card-two__icon-box{
  position: relative;
  margin-bottom: 18px;
}
.testimonial-card-two__content {
  position: relative;
  text-align: center;
}
.testimonials-three-inner .testimonial-card-two .cherito-ratings {
  margin-bottom: 15px;
}
.testimonial-card-two .cherito-ratings {
  margin-bottom: 20px;
  justify-content: center;
  gap: 4px;
}
.testimonial-card-two .cherito-ratings__icon {
  font-size: 13px;
  color: #f5a615;
  background: #f3f3f3;
  padding: 4px 2px;
  border-radius: 3px;
}
.testimonial-card-two__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.5);
  opacity: 0;
  background: linear-gradient(180deg, #0cbed0, #38d1e0);
  transition: transform 400ms ease, opacity 400ms ease;
}
.testimonial-card-two:hover .testimonial-card-two__icon::after {
  opacity: 1;
  transform: scale(1);
}
.testimonials-three-inner .testimonial-card-two__name {
  font-size: 26px;
  text-align: center;
  margin-bottom: 10px;
}
.testimonials-three .sec-title__title{
  color: #fff;
}


.testimonials-five {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
/*  background: url(../images/shapes/why-choose-bg.webp);*/
}
.testimonials-five__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.6;
}
.testimonials-five__bg::after {
  content: "";
  width: 100%;
  max-width: 1561px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
/*  background-color: #38d1e00d;*/
  z-index: 1;
}
.testimonials-five .container {
  position: relative;
  z-index: 2;
}
.testimonials-five__inner {
  position: relative;
  padding: 81px 100px 78px 115px;
  display: flex;
  align-items: center;
  gap: 70px 84px;
  border-radius: 15px 15px 0px 0px;
}
@media (max-width: 1199px) {
  .testimonials-five__inner {
    padding-left: 65px;
    padding-right: 50px;
    gap: 70px 60px;
  }
}
@media (max-width: 991px) {
  .testimonials-five__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
@media (max-width: 575px) {
  .testimonials-five__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 412px) {
  .testimonials-five__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.testimonials-five__inner__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cherito-black2, #000000);
  border-radius: 35px 35px 0px 0px;
}
.testimonials-five__inner__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.8);
  border-radius: inherit;
  z-index: 1;
}
.testimonials-five__inner__bg__inner {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: luminosity;
  border-radius: inherit;
}
.testimonials-five__thumb {
  flex-shrink: 0;
  position: relative;
  width: 256px;
  height: 256px;
  border-radius: 50%;
  border: 20px solid transparent;
  z-index: 2;
}
@media (max-width: 575px) {
  .testimonials-five__thumb {
    margin: 0 auto;
  }
}
@media (max-width: 412px) {
  .testimonials-five__thumb {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 375px) {
  .testimonials-five__thumb {
    width: 200px;
    height: 200px;
  }
}
.testimonials-five__thumb__item {
  position: relative;
  width: 53.33px;
  height: 53.33px;
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
.testimonials-five__thumb__item--1 {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-five__thumb__item--2 {
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
}
.testimonials-five__thumb__item--3 {
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
}
.testimonials-five__thumb__item--4 {
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
}
.testimonials-five__thumb__item--5 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.testimonials-five__thumb__item img {
  cursor: pointer;
  width: 53.33px !important;
  height: 53.33px;
  border-radius: inherit;
  transition: all 500ms ease;
}
.testimonials-five__thumb__item:hover.testimonials-five__thumb__item--1, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--1 {
  transform: translateX(-50%) scale(1.98);
}
@media (max-width: 375px) {
  .testimonials-five__thumb__item:hover.testimonials-five__thumb__item--1, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--1 {
    transform: translateX(-50%) scale(1.5);
  }
}
.testimonials-five__thumb__item:hover.testimonials-five__thumb__item--2, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--2 {
  transform: translateY(-50%) scale(1.98);
}
@media (max-width: 375px) {
  .testimonials-five__thumb__item:hover.testimonials-five__thumb__item--2, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--2 {
    transform: translateY(-50%) scale(1.5);
  }
}
.testimonials-five__thumb__item:hover.testimonials-five__thumb__item--3, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--3 {
  transform: translateX(-50%) scale(1.98);
}
@media (max-width: 375px) {
  .testimonials-five__thumb__item:hover.testimonials-five__thumb__item--3, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--3 {
    transform: translateX(-50%) scale(1.5);
  }
}
.testimonials-five__thumb__item:hover.testimonials-five__thumb__item--4, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--4 {
  transform: translateY(-50%) scale(1.98);
}
@media (max-width: 375px) {
  .testimonials-five__thumb__item:hover.testimonials-five__thumb__item--4, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--4 {
    transform: translateY(-50%) scale(1.5);
  }
}
.testimonials-five__thumb__item:hover.testimonials-five__thumb__item--5, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--5 {
  transform: translate(-50%, -50%) scale(1.98);
}
@media (max-width: 375px) {
  .testimonials-five__thumb__item:hover.testimonials-five__thumb__item--5, .testimonials-five__thumb__item.owl-dot.active.testimonials-five__thumb__item--5 {
    transform: translate(-50%, -50%) scale(1.5);
  }
}
.testimonials-five__thumb__item:hover img, .testimonials-five__thumb__item.owl-dot.active img {
  transform: scale(infinite);
}
.testimonials-five__thumb__border {
  width: 256px;
  height: 256px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 412px) {
  .testimonials-five__thumb__border {
    width: 220px;
    height: 220px;
  }
}
@media (max-width: 375px) {
  .testimonials-five__thumb__border {
    width: 200px;
    height: 200px;
  }
}
.testimonials-five__carousel {
  position: relative;
  width: calc(100% - 340px);
  z-index: 2;
}
@media (max-width: 1199px) {
  .testimonials-five__carousel {
    width: calc(100% - 316px);
  }
}
@media (max-width: 991px) {
  .testimonials-five__carousel {
    width: 100%;
  }
}
.testimonials-five__carousel.owl-carousel .owl-nav {
  position: relative;
  margin-top: 50px;
  justify-content: flex-end;
  gap: 10px;
}
.testimonials-five__carousel.owl-carousel .owl-nav::before {
  content: "";
  width: calc(100% - 15px);
  height: 1px;
  background-color: rgba(var(--cherito-white2-rgb), 0.2);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.testimonials-five__carousel.owl-carousel .owl-nav button {
  width: 40px;
  height: 40px;
  font-size: 15px;
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary);

  top: -20px;
}
.testimonials-five__carousel.owl-carousel .owl-nav button:hover{
  background: #ff9f93;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-prev{
  left: -10px;
}
.cherito-owl__carousel--basic-nav.owl-carousel .owl-nav button.owl-next{
  right: -10px;
}
.testimonials-five__top {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px 30px;
}
.testimonials-five__identity {
  display: flex;
  align-items: center;
  gap: 30px 15px;
}
.testimonials-five__icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 28px;
  color: var(--cherito-primary);
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  border-radius: 50%;
  transition: all 500ms ease;
}
.testimonials-five__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.testimonials-five__content:hover .testimonials-five__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary);
}
.testimonials-five__name {
  margin-bottom: 3px;
  font-size: 26px;
  color: var(--cherito-white, #ffffff);
  text-transform: capitalize;
  line-height: 1.333;
}
.testimonials-five__designation {
  margin: 0;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 20px;
  color: #ff9f93;
  font-weight: 400;
  line-height: 1.25;
}
.testimonials-five__ratings {
  display: flex;
  align-items: center;
  gap: 5px;
}
.testimonials-five__ratings__icon {
  display: inline-flex;
  font-size: 20px;
  color: var(--cherito-primary);
  transition: all 500ms ease;
}
.testimonials-five__ratings__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.testimonials-five__quote {
  margin: 0;
  color: var(--cherito-white);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
/*  background-color: var(--cherito-black, #212226);*/
  overflow: hidden;
}
.main-footer__top {
  padding: 50px 0 65px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
}
.main-footer__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background-color: var(--cherito-base);*/
}
.main-footer__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.08;
/*  mix-blend-mode: luminosity;*/
}
.main-footer .container {
  position: relative;
  z-index: 2;
}
.main-footer__bottom {
  text-align: center;
  background-color: var(--cherito-primary);
}
.main-footer__bottom__inner {
  padding: 15px 0;
  text-align: center;
}
.main-footer__copyright {
  margin: 0;
  color: var(--cherito-black);
}
.main-footer--home2 .footer-widget__links li, .main-footer--home3 .footer-widget__links li, .main-footer--home4 .footer-widget__links li, .main-footer--home5 .footer-widget__links li, .main-footer--home6 .footer-widget__links li {
  color: var(--cherito-black);
}
.main-footer--home2 .main-footer__bottom {
  background-color: var(--cherito-primary);
}
.main-footer--home2 .footer-widget__info li:not(:first-child) .footer-widget__info__text {
  color: var(--cherito-gray4, #D2D2D2);
}
.main-footer--home2 .footer-widget__info li:not(:first-child) .footer-widget__info__text:hover {
  color: var(--cherito-base);
}
.main-footer--home3 .social-links a:hover {
  background-color: var(--cherito-primary) !important;
}
.main-footer--home3 .footer-widget__links li a:hover {
  color: var(--cherito-primary);
}
.main-footer--home3 .footer-widget__info li:first-child:hover .footer-widget__info__icon-box,
.main-footer--home3 .footer-widget__info li:hover .footer-widget__info__icon-box {
  background-color: var(--cherito-primary);
}
.main-footer--home3 .footer-widget__info li:not(:first-child) .footer-widget__info__text {
  color: var(--cherito-white2);
}
.main-footer--home3 .footer-widget__info li:not(:first-child) .footer-widget__info__text:hover {
  color: var(--cherito-primary);
}
.main-footer--home3 .footer-widget__info__text:hover {
  color: var(--cherito-primary);
}
.main-footer--home4 .main-footer__bg__inner {
  opacity: 0.15;
}
.main-footer--home4 .footer-widget__info li:not(:first-child) .footer-widget__info__text {
  color: var(--cherito-gray4, #D2D2D2);
}
.main-footer--home4 .footer-widget__info li:not(:first-child) .footer-widget__info__text:hover {
  color: var(--cherito-base);
}
.main-footer--home5 .social-links a:hover {
  background-color: var(--cherito-primary) !important;
}
.main-footer--home5 .footer-widget__links li a:hover,
.main-footer--home5 .footer-widget__info__text:hover {
  color: var(--cherito-primary);
}
.main-footer--home5 .footer-widget__info li:first-child:hover .footer-widget__info__icon-box,
.main-footer--home5 .footer-widget__info li:hover .footer-widget__info__icon-box {
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}
.main-footer--home5 .footer-widget__info li:not(:first-child) .footer-widget__info__text {
  color: var(--cherito-gray4, #D2D2D2);
}
.main-footer--home5 .footer-widget__info li:not(:first-child) .footer-widget__info__text:hover {
  color: var(--cherito-primary);
}
.main-footer--home6 .main-footer__bg__inner {
  opacity: 0.06;
}
.main-footer--home6 .footer-widget__info li:not(:first-child) .footer-widget__info__text {
  color: var(--cherito-gray4, #D2D2D2);
}
.main-footer--home6 .footer-widget__info li:not(:first-child) .footer-widget__info__text:hover {
  color: var(--cherito-base);
}

.footer-widget {
  position: relative;
  margin-top: 25px;
}
/*.footer-widget--about::after, .footer-widget--info::after, .footer-widget--border::after {
  content: "";
  width: 1px;
  height: 525px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.15);
  position: absolute;
}*/
@media (max-width: 1199px) {
  .footer-widget--about::after, .footer-widget--info::after, .footer-widget--border::after {
    display: none;
  }
}
.footer-widget--about {
/*  padding-right: 20px;*/
}
/*.footer-widget--about::after {
  top: calc(50% - 22px);
  right: 0;
  transform: translateY(-50%);
}*/
.footer-widget--links-1 {
  padding-left: 15px;
}
.footer-widget--links-2 {
  padding-left: 20px;
}
.footer-widget--info {
/*  padding-left: 55px;*/
}

/*.footer-widget--info::after {
  top: calc(50% - 18px);
  left: -5px;
  transform: translateY(-50%);
}*/
.footer-widget--info .footer-widget__title {
  margin-bottom: 24px;
}
.footer-widget--border::after {
  top: calc(50% + 123px);
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-widget__title {
  margin-bottom: 15px;
  font-size: 28px;
/*  color: #fff;*/
  line-height: 1.25;
}
.footer-widget__logo {
  display: inline-flex;
}
.footer-widget__logo img{
  width: 130px;
  padding: 8px;
  background: #fff;
  border-radius: 15px;
  margin-top: 25px;
}
.footer-widget__about {
  margin: 15px 0 20px;
/*  color: #fff;*/
}
.footer-widget__about a{
  color: #38d1e0;
  font-weight: 500;
  display: block;
  margin-top: 10px;
  text-decoration: underline;
}
.footer-widget__subscribe {
  padding: 0 18px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 6px;
}
.footer-widget__subscribe input[type=email] {
  width: calc(100% - 14px);
  padding: 0;
  border: none;
  outline: none;
  font-size: 14px;
  color: var(--cherito-text, #727272);
  font-weight: 700;
  background-color: transparent;
  transition: all 500ms ease;
}
.footer-widget__subscribe input[type=email]:focus {
  color: var(--cherito-black, #212226);
}
.footer-widget__subscribe button[type=submit] {
  padding: 0;
  display: inline-flex;
  border: none;
  outline: none;
  background-color: transparent;
  font-size: 14px;
  color: var(--cherito-base, #E23B33);
  transition: all 400ms ease;
}
.footer-widget__subscribe button[type=submit] svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.footer-widget__subscribe button[type=submit]:hover {
  color: var(--cherito-black, #212226);
}
.footer-widget .social-links {
  gap: 5px;
}
.footer-widget .social-links a {
  width: 40px;
  height: 40px;
/*  background-color: #38d1e0;*/
}
.footer-widget .social-links a:hover {
  background-color: var(--cherito-base, #E23B33);
}
.footer-widget .social-links .social-links__icon {
  color: var(--cherito-white, #ffffff);
}
.footer-widget__links {
  margin: 0;
}
.footer-widget__links li + li {
  margin-top: 10px;
}
.footer-widget__links li {
  color: var(--cherito-text, #727272);
  text-transform: capitalize;
}
.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(--cherito-base, #E23B33);
}
.footer-widget__info {
  margin: 0;
/*  margin-left: 12px;*/
}
.footer-widget__info li + li {
  margin-top: 15px;
}
.footer-widget__info li {
  display: flex;
/*  align-items: center;*/
  gap: 15px;
}
.footer-widget__info__icon-box {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.footer-widget__info__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--cherito-black);
  transition: all 500ms ease;
}
.footer-widget__info__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.footer-widget__info__text-box {
  position: relative;
  z-index: 1;
}
.footer-widget__info__text {
  margin: 0;
  font-size: 17px;
  color: var(--cherito-text, #727272);
  font-weight: 400;
  line-height: 26px;
  font-family: var(--cherito-font);
}
.footer-widget__info__text:hover {
  color: var(--cherito-base, #E23B33);
}
.footer-widget__info__text b{
  font-weight: 500;
  font-size: 19px;
  font-family: var(--cherito-heading-font);
  color: var(--cherito-black);
}
.footer-widget__info__text a {
  color: var(--cherito-black);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info__text a:hover, .footer-widget__info__text a b:hover {
  color: #38d1e0;
  background-size: 100% 1px;
}
li:hover .footer-widget__info__icon-box {
  background-color: var(--cherito-base, #E23B33);
}
li:hover .footer-widget__info__icon {
  color: var(--cherito-black);
  animation: slideTop 400ms;
}
.footer-widget__info li:first-child {
  position: relative;
}
.footer-widget__info li:first-child .footer-widget__info__icon-box {
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}
.footer-widget__info li:first-child:hover .footer-widget__info__icon-box {
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}


/*--------------------------------------------------------------
# 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 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 shapeRotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(90deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zumpBottom {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes zoomIn {
  0% {
    transform: scale(1.15);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes zoomOut {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes moveHorizontal {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes moveHorizontal2 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  50% {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
@keyframes wobble-horizontal-hover {
  16.65% {
    transform: translateX(5px);
  }
  33.3% {
    transform: translateX(-3px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -190deg);
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 50px) rotate3d(0, 1, 0, -170deg);
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes smartMove {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove2 {
  0% {
    width: 0;
  }
  15% {
    width: 126px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 126px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes smartMove3 {
  0% {
    width: 0;
  }
  15% {
    width: 173px;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 173px;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes rectMove {
  0%, 50%, 100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25%, 75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@keyframes moveBackground {
  0% {
    background-position: -1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes moveBackgroundY {
  0% {
    background-position: 100% 1920px;
  }
  100% {
    background-position: 100% 0;
  }
}
@keyframes slideTop {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes slideLeft {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animatedCircle {
  0% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}
/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  background-color: var(--cherito-black, #212226);
  overflow: hidden;
  z-index: 1;
}
.main-slider-one__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
}
@media (max-width: 1399px) {
  .main-slider-one__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1400px) {
  .main-slider-one__carousel.owl-carousel .owl-nav {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1500px) {
  .main-slider-one__carousel.owl-carousel .owl-nav {
    left: 80px;
  }
}
.main-slider-one__item {
  position: relative;
  padding-top: 153px;
  padding-bottom: 141px;
  background-color: var(--cherito-black, #212226);
}
@media (max-width: 1399px) {
  .main-slider-one__item {
    padding-bottom: 240px;
  }
}
@media (max-width: 430px) {
  .main-slider-one__item {
    padding-top: 130px;
  }
}
.main-slider-one__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
}
.main-slider-one__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  mix-blend-mode: color-burn;
  opacity: 0.2;
}
.main-slider-one__bg__left, .main-slider-one__bg__right {
  height: 100%;
  flex: 0 0 auto;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.main-slider-one__bg__left img, .main-slider-one__bg__right img {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
}
.main-slider-one__bg__left {
  width: 54.9658%;
}
@media (max-width: 1599px) {
  .main-slider-one__bg__left {
    width: 57%;
  }
}
@media (max-width: 1399px) {
  .main-slider-one__bg__left {
    width: 57.5%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__bg__left {
    width: 100%;
  }
}
.main-slider-one__bg__right {
  width: 45.0342%;
  background-color: var(--cherito-black2, #000000);
}
@media (max-width: 1599px) {
  .main-slider-one__bg__right {
    width: 43%;
  }
}
@media (max-width: 1399px) {
  .main-slider-one__bg__right {
    width: 42.5%;
  }
}
@media (max-width: 1199px) {
  .main-slider-one__bg__right {
    display: none;
  }
}
.main-slider-one__bg__right__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform: scale(1);
  mix-blend-mode: luminosity;
  transition: transform 10s ease;
}
.main-slider-one__bg__right__shape {
  width: 822px;
  height: 237px;
  position: absolute;
  right: 0;
  bottom: -5px;
  z-index: 1;
  background-color: var(--cherito-white, #ffffff);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 258.000000"><g transform="translate(0.000000,258.000000) scale(0.100000,-0.100000)"  stroke="none"> <path d="M8060 1805 c0 -12 8 -16 33 -13 17 2 32 8 32 13 0 6 -15 11 -32 13 -25 3 -33 -1 -33 -13z"/> <path d="M7820 1791 c-20 -4 -41 -11 -48 -15 -22 -13 -13 -45 18 -61 28 -14 33 -14 59 1 28 16 59 59 50 68 -11 10 -47 13 -79 7z"/> <path d="M7591 1744 c-59 -18 -70 -30 -49 -51 15 -15 24 -15 75 -4 74 16 88 24 88 47 0 25 -52 28 -114 8z"/> <path d="M8148 1589 c-9 -5 -66 -10 -127 -11 -80 -1 -114 -5 -122 -14 -6 -8 -30 -14 -54 -14 -24 0 -56 -6 -72 -14 -96 -48 -146 -57 -182 -34 -15 9 -28 9 -59 0 -22 -7 -84 -12 -139 -12 -67 0 -113 -5 -136 -15 -20 -8 -48 -15 -62 -15 -15 0 -33 -7 -41 -15 -10 -10 -35 -15 -70 -15 -58 0 -114 -18 -141 -46 -13 -12 -27 -15 -59 -10 -33 4 -48 1 -67 -14 -17 -13 -41 -20 -70 -20 -27 0 -49 -6 -57 -15 -7 -8 -24 -15 -37 -15 -25 0 -114 -20 -209 -46 -28 -8 -58 -14 -67 -14 -16 0 -37 -28 -37 -48 0 -16 238 -12 284 4 21 8 49 14 63 14 13 0 49 10 81 21 31 12 71 23 87 23 34 2 79 10 180 32 147 33 195 46 206 60 6 8 30 14 53 14 23 0 48 6 55 13 6 6 33 13 59 14 80 3 162 15 168 24 7 12 61 11 69 -1 4 -6 13 -7 24 -1 9 5 42 10 73 10 31 0 81 7 110 15 29 8 74 18 100 21 26 3 63 17 84 31 26 18 44 23 64 19 19 -4 38 2 68 21 23 15 42 31 42 34 0 14 -46 28 -62 19z"/> <path d="M8525 1447 c-14 -9 -64 -14 -163 -16 -127 -2 -148 -5 -195 -26 -29 -14 -60 -22 -70 -19 -25 8 -113 -14 -128 -32 -6 -8 -21 -14 -32 -14 -11 0 -29 -7 -39 -17 -15 -13 -23 -14 -44 -5 -34 16 -55 15 -100 -5 -22 -9 -53 -15 -71 -14 -44 3 -73 -14 -73 -45 0 -18 8 -27 28 -35 36 -14 126 -2 171 22 42 22 61 24 85 6 25 -18 13 -67 -15 -60 -13 4 -25 -2 -35 -15 -18 -26 -107 -72 -140 -72 -14 0 -36 8 -50 17 -24 16 -30 16 -89 0 -82 -22 -101 -21 -122 3 -24 27 -35 25 -58 -13 -15 -24 -28 -32 -53 -33 -21 -1 -43 -12 -65 -34 l-32 -32 -96 5 c-57 3 -101 1 -107 -5 -6 -6 -23 -4 -47 6 -26 11 -42 13 -55 6 -10 -6 -30 -10 -43 -10 -14 0 -27 -6 -30 -14 -7 -17 -76 -31 -89 -18 -21 21 -92 0 -135 -39 -24 -22 -46 -40 -50 -40 -5 -1 -53 -3 -108 -4 -55 -2 -120 -8 -145 -15 -25 -7 -58 -13 -75 -14 -25 -1 -31 -6 -33 -28 -4 -37 -28 -36 -50 2 -9 16 -20 30 -23 30 -3 0 -12 -15 -20 -32 -13 -32 -17 -33 -77 -36 -43 -2 -71 2 -85 11 -12 8 -42 17 -67 20 -25 3 -55 9 -67 12 -16 5 -23 2 -28 -14 -3 -12 -16 -26 -27 -32 -16 -9 -26 -7 -49 10 -27 20 -30 20 -81 5 -29 -9 -60 -20 -68 -25 -8 -5 -22 -12 -30 -15 -8 -3 -26 -11 -38 -17 -20 -9 -25 -8 -33 6 -13 22 -38 22 -69 0 -28 -20 -124 -53 -156 -53 -34 0 -117 -32 -151 -57 -27 -21 -39 -23 -76 -18 -41 6 -50 3 -103 -31 -64 -42 -161 -75 -194 -67 -11 3 -38 -4 -60 -16 -22 -11 -53 -21 -68 -21 -16 0 -51 -6 -78 -14 -27 -7 -75 -19 -106 -25 -31 -7 -68 -21 -82 -32 -17 -13 -41 -19 -83 -20 -48 -1 -67 -6 -110 -35 -29 -19 -61 -34 -72 -34 -11 0 -23 -5 -26 -10 -3 -6 -24 -10 -47 -10 -28 0 -53 -9 -85 -30 -44 -30 -96 -39 -108 -20 -11 17 -25 11 -35 -15 -8 -22 -12 -24 -35 -13 -18 8 -32 8 -48 1 -36 -17 -132 -43 -158 -43 -43 -1 -169 -39 -200 -61 -23 -16 -38 -20 -65 -15 -23 5 -41 2 -56 -9 -29 -19 -47 -19 -70 2 -17 15 -18 14 -18 -21 0 -43 -21 -57 -49 -32 -25 23 -46 20 -69 -9 -18 -23 -36 -26 -104 -16 -4 1 -16 11 -28 23 -19 21 -21 21 -33 3 -10 -13 -22 -16 -43 -12 -16 3 -36 1 -46 -4 -21 -11 -48 23 -48 59 0 21 2 23 15 12 20 -16 32 -4 37 34 4 38 71 76 133 76 35 0 47 6 80 41 39 40 41 40 92 34 44 -5 60 -2 105 20 29 15 60 33 69 41 8 8 20 14 26 14 18 0 36 29 29 46 -6 16 -8 16 -24 0 -10 -9 -27 -16 -38 -16 -11 0 -30 -7 -43 -16 -15 -11 -41 -16 -74 -15 -28 0 -56 -4 -62 -9 -19 -16 -126 -50 -156 -50 -34 0 -118 -27 -139 -45 -19 -16 -80 -8 -80 11 0 18 32 34 69 34 16 0 34 6 38 14 10 17 67 46 91 46 41 0 113 33 122 55 5 12 20 25 34 29 14 3 26 13 26 21 0 11 12 15 43 15 23 0 51 7 61 15 12 9 42 15 73 15 53 0 125 22 154 47 8 7 25 13 37 13 11 0 24 5 27 10 3 6 16 10 28 10 12 0 28 9 35 20 8 14 23 20 47 20 20 0 46 6 58 13 12 8 58 22 102 31 44 10 107 30 140 46 56 26 100 40 230 70 86 20 99 30 109 83 11 56 -1 100 -27 105 -10 2 -33 -10 -52 -26 -18 -17 -50 -36 -69 -43 -23 -8 -36 -20 -36 -30 0 -27 -14 -30 -49 -13 -34 17 -76 14 -165 -12 -27 -8 -62 -14 -77 -14 -14 0 -32 -7 -39 -15 -7 -8 -25 -15 -39 -15 -15 0 -36 -7 -47 -15 -10 -8 -29 -15 -40 -15 -12 0 -27 -7 -34 -15 -7 -8 -18 -15 -24 -15 -7 0 -18 -6 -25 -12 -7 -8 -37 -13 -70 -13 -44 0 -64 -5 -81 -20 -14 -13 -36 -19 -68 -20 -29 0 -63 -9 -89 -23 -24 -12 -64 -25 -90 -29 -27 -3 -65 -14 -85 -24 -21 -11 -56 -19 -78 -19 -23 0 -65 -11 -95 -25 -29 -14 -67 -24 -83 -23 -17 1 -39 -5 -49 -14 -23 -20 -108 -48 -146 -48 -35 0 -165 -38 -173 -51 -3 -5 -23 -9 -45 -9 -21 0 -47 -4 -57 -10 -56 -30 -114 -46 -202 -53 -28 -2 -38 -30 -19 -53 13 -16 75 -12 109 6 9 6 21 3 32 -7 16 -14 18 -13 28 11 11 29 45 46 94 46 39 0 50 -8 35 -26 -14 -17 -3 -34 22 -34 29 0 18 -24 -12 -28 -13 -2 -30 -9 -38 -15 -8 -7 -50 -12 -97 -13 -63 0 -88 -5 -102 -17 -10 -9 -24 -17 -30 -17 -6 0 -18 -13 -26 -28 -17 -33 -53 -52 -116 -62 -116 -18 -252 -59 -274 -82 -14 -15 -26 -18 -49 -14 -29 6 -67 -14 -67 -36 0 -13 7204 -10 7217 3 7 7 55 11 122 12 l111 0 0 265 0 264 -22 -6 c-66 -19 -130 -24 -194 -14 -84 12 -93 12 -169 1 -58 -9 -118 -33 -130 -53 -3 -5 -21 -9 -40 -8 -19 1 -43 -5 -52 -13 -29 -24 -71 -39 -112 -39 -34 0 -41 4 -55 35 -10 20 -16 52 -14 73 l3 37 52 -3 c65 -5 93 18 93 77 0 23 6 44 16 52 19 16 120 49 150 49 11 0 42 7 69 16 36 13 50 24 59 45 11 30 37 38 65 20 9 -6 37 -2 75 8 45 12 70 14 94 7 23 -6 44 -5 72 4 l40 13 0 74 c0 73 0 73 -27 73 -16 0 -35 5 -43 10 -13 9 -11 14 13 35 15 14 35 25 43 25 10 0 14 12 14 44 l0 43 -77 7 c-43 3 -81 2 -86 -3 -5 -5 -24 -7 -42 -4 -18 3 -43 0 -56 -7 -13 -7 -59 -17 -103 -21 -78 -8 -82 -7 -123 21 l-44 28 -52 -21 c-69 -28 -237 -37 -237 -13 0 9 8 16 18 16 27 0 115 31 133 47 10 8 43 17 75 20 33 3 65 10 72 16 7 6 52 11 100 12 48 0 103 5 122 9 34 9 35 9 18 -11 -10 -11 -18 -28 -18 -37 0 -13 5 -16 18 -11 9 4 37 10 60 13 49 5 62 24 37 52 -9 10 -15 29 -13 42 3 22 -1 23 -54 26 -66 3 -72 14 -37 62 13 17 19 35 15 45 -6 17 -27 17 -141 4 -5 -1 -17 1 -25 5 -8 3 -24 0 -35 -7z"/> <path d="M7523 1273 c-14 -5 -17 -41 -7 -67 10 -25 32 -19 49 13 24 46 3 73 -42 54z"/> <path d="M3925 1205 c-22 -7 -53 -14 -70 -15 -16 0 -39 -7 -49 -15 -11 -8 -39 -15 -62 -15 -24 0 -49 -6 -56 -14 -22 -21 -75 -46 -99 -46 -12 0 -45 -6 -73 -14 -74 -21 -146 -38 -181 -44 -16 -2 -37 -10 -45 -17 -8 -7 -49 -15 -90 -17 -55 -4 -91 -12 -135 -34 -98 -47 -135 -72 -135 -94 0 -24 23 -26 94 -6 28 8 87 22 131 31 44 9 102 23 129 31 26 8 59 14 71 14 13 0 36 5 52 11 15 6 53 14 83 19 31 4 74 17 95 28 88 45 112 54 155 59 28 4 59 16 81 34 22 17 49 29 66 29 17 0 47 13 70 29 22 16 50 31 62 33 12 1 23 8 24 13 3 15 -73 15 -118 0z"/> <path d="M6180 1205 c-14 -8 -42 -14 -62 -15 -28 0 -38 -5 -43 -21 -9 -27 1 -36 25 -21 11 7 27 12 35 12 25 0 96 40 90 50 -8 13 -15 12 -45 -5z"/> <path d="M7020 1210 c0 -5 7 -10 15 -10 8 0 15 5 15 10 0 6 -7 10 -15 10 -8 0 -15 -4 -15 -10z"/> <path d="M5745 1083 c-76 -18 -109 -34 -113 -56 -4 -19 27 -24 44 -7 6 6 37 13 70 16 32 2 65 11 74 19 9 8 22 15 28 15 7 0 12 7 12 15 0 18 -31 18 -115 -2z"/> <path d="M4525 1060 c-11 -18 5 -31 26 -20 11 6 17 15 14 21 -8 12 -32 12 -40 -1z"/> <path d="M4245 1000 c-7 -11 12 -50 25 -50 16 0 21 19 10 40 -12 22 -25 26 -35 10z"/> <path d="M4252 898 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M2715 874 c-22 -8 -49 -18 -60 -24 -11 -5 -33 -11 -49 -12 -33 -3 -57 -31 -40 -48 7 -7 33 -5 83 6 59 14 74 21 81 40 7 16 17 24 34 24 30 0 42 15 20 24 -20 8 -21 7 -69 -10z"/> <path d="M2812 836 c2 -15 8 -26 13 -26 15 0 12 43 -3 48 -10 3 -13 -4 -10 -22z"/> <path d="M2394 756 c-8 -21 3 -36 27 -36 15 0 20 6 17 22 -4 27 -35 37 -44 14z"/> <path d="M2143 716 c-29 -6 -62 -21 -74 -32 -18 -19 -25 -20 -50 -11 -23 9 -44 8 -97 -6 -37 -9 -100 -17 -141 -17 -64 0 -77 -3 -110 -27 -81 -62 -97 -69 -127 -52 -23 12 -27 10 -50 -14 -14 -15 -35 -27 -48 -27 -13 0 -40 -7 -61 -15 -20 -9 -58 -15 -84 -14 -31 2 -56 -3 -72 -14 -13 -9 -29 -17 -36 -17 -8 0 -32 -12 -55 -26 -34 -22 -45 -24 -65 -15 -41 19 -87 13 -129 -17 -41 -29 -134 -62 -176 -62 -14 0 -37 -9 -50 -20 -14 -10 -47 -24 -73 -30 -26 -6 -59 -17 -74 -24 -15 -8 -55 -14 -90 -15 -43 0 -69 -5 -80 -15 -10 -9 -27 -16 -38 -16 -11 0 -36 -13 -54 -30 -21 -19 -45 -30 -64 -30 -46 0 -135 -63 -135 -96 0 -25 29 -28 108 -9 43 9 86 19 97 21 11 2 36 14 55 26 33 21 94 43 152 55 15 3 33 11 39 19 6 8 28 14 48 14 21 0 46 7 57 15 10 8 26 15 35 15 9 0 34 12 55 28 57 40 106 54 159 47 41 -7 47 -4 87 29 23 20 54 39 68 42 14 3 44 13 66 21 32 11 47 12 62 4 32 -17 55 -13 92 14 19 14 41 25 51 25 9 0 22 7 29 15 8 9 30 15 58 15 25 0 71 6 101 14 72 18 187 43 228 50 17 3 51 14 75 24 101 45 148 62 175 62 15 0 46 7 68 15 22 8 61 14 88 15 43 0 47 -2 47 -24 0 -13 -3 -32 -6 -41 -6 -15 -8 -15 -25 1 -16 15 -20 15 -49 0 -18 -8 -48 -18 -69 -22 -65 -10 -68 -13 -41 -34 23 -18 24 -19 7 -38 -9 -10 -17 -24 -17 -30 0 -20 19 -13 36 13 11 17 25 25 44 25 19 0 36 9 48 25 16 20 26 24 50 19 25 -5 33 -2 47 19 16 24 16 45 -1 124 -6 33 -32 41 -91 29z"/> <path d="M2451 677 c-18 -23 -2 -49 28 -45 20 2 26 8 26 28 0 29 -34 40 -54 17z"/> <path d="M2290 610 c20 -38 100 -38 100 1 0 16 -7 19 -55 19 -52 0 -55 -1 -45 -20z"/> <path d="M3633 553 c-22 -8 -14 -23 12 -23 16 0 25 6 25 15 0 15 -14 18 -37 8z"/> <path d="M1916 491 c-5 -7 -21 -9 -45 -5 -31 5 -46 1 -77 -19 -42 -27 -101 -46 -229 -72 -44 -9 -96 -21 -116 -26 -20 -5 -52 -9 -72 -9 -19 0 -54 -9 -78 -20 -24 -11 -56 -20 -71 -20 -36 0 -118 -28 -136 -47 -10 -10 -25 -13 -46 -9 -21 4 -39 0 -56 -11 -14 -10 -38 -19 -55 -20 -16 -1 -43 -9 -60 -17 -16 -9 -43 -16 -58 -16 -31 0 -93 -23 -117 -44 -8 -7 -39 -16 -69 -19 -29 -4 -58 -11 -65 -16 -6 -5 -34 -15 -61 -22 -46 -11 -91 -30 -157 -65 -14 -8 -41 -14 -60 -14 -18 0 -40 -5 -48 -10 -10 -7 103 -10 356 -8 340 3 374 5 392 21 10 10 57 27 103 39 46 11 91 27 100 34 8 8 23 14 33 14 23 0 31 27 16 55 -15 28 -7 55 15 55 13 0 15 -7 10 -34 -6 -29 -3 -37 17 -49 38 -25 71 -29 103 -13 17 9 40 16 53 16 32 0 48 39 33 81 -6 17 -11 38 -11 45 0 16 79 54 112 54 14 0 31 7 38 15 7 8 26 15 42 15 29 0 70 14 131 46 36 18 46 18 68 -2 17 -16 19 -15 28 8 6 17 20 27 40 31 33 7 39 23 18 52 -10 12 -16 15 -21 6z"/> <path d="M3455 490 c-3 -6 1 -13 10 -16 19 -8 30 0 20 15 -8 14 -22 14 -30 1z"/> <path d="M3350 450 c0 -5 7 -10 15 -10 8 0 15 5 15 10 0 6 -7 10 -15 10 -8 0 -15 -4 -15 -10z"/> <path d="M1972 318 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M1631 264 c-13 -30 -7 -44 19 -44 25 0 41 30 29 53 -14 25 -34 21 -48 -9z"/> <path d="M1730 261 c0 -12 6 -21 16 -21 9 0 14 7 12 17 -5 25 -28 28 -28 4z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 258.000000"><g transform="translate(0.000000,258.000000) scale(0.100000,-0.100000)"  stroke="none"> <path d="M8060 1805 c0 -12 8 -16 33 -13 17 2 32 8 32 13 0 6 -15 11 -32 13 -25 3 -33 -1 -33 -13z"/> <path d="M7820 1791 c-20 -4 -41 -11 -48 -15 -22 -13 -13 -45 18 -61 28 -14 33 -14 59 1 28 16 59 59 50 68 -11 10 -47 13 -79 7z"/> <path d="M7591 1744 c-59 -18 -70 -30 -49 -51 15 -15 24 -15 75 -4 74 16 88 24 88 47 0 25 -52 28 -114 8z"/> <path d="M8148 1589 c-9 -5 -66 -10 -127 -11 -80 -1 -114 -5 -122 -14 -6 -8 -30 -14 -54 -14 -24 0 -56 -6 -72 -14 -96 -48 -146 -57 -182 -34 -15 9 -28 9 -59 0 -22 -7 -84 -12 -139 -12 -67 0 -113 -5 -136 -15 -20 -8 -48 -15 -62 -15 -15 0 -33 -7 -41 -15 -10 -10 -35 -15 -70 -15 -58 0 -114 -18 -141 -46 -13 -12 -27 -15 -59 -10 -33 4 -48 1 -67 -14 -17 -13 -41 -20 -70 -20 -27 0 -49 -6 -57 -15 -7 -8 -24 -15 -37 -15 -25 0 -114 -20 -209 -46 -28 -8 -58 -14 -67 -14 -16 0 -37 -28 -37 -48 0 -16 238 -12 284 4 21 8 49 14 63 14 13 0 49 10 81 21 31 12 71 23 87 23 34 2 79 10 180 32 147 33 195 46 206 60 6 8 30 14 53 14 23 0 48 6 55 13 6 6 33 13 59 14 80 3 162 15 168 24 7 12 61 11 69 -1 4 -6 13 -7 24 -1 9 5 42 10 73 10 31 0 81 7 110 15 29 8 74 18 100 21 26 3 63 17 84 31 26 18 44 23 64 19 19 -4 38 2 68 21 23 15 42 31 42 34 0 14 -46 28 -62 19z"/> <path d="M8525 1447 c-14 -9 -64 -14 -163 -16 -127 -2 -148 -5 -195 -26 -29 -14 -60 -22 -70 -19 -25 8 -113 -14 -128 -32 -6 -8 -21 -14 -32 -14 -11 0 -29 -7 -39 -17 -15 -13 -23 -14 -44 -5 -34 16 -55 15 -100 -5 -22 -9 -53 -15 -71 -14 -44 3 -73 -14 -73 -45 0 -18 8 -27 28 -35 36 -14 126 -2 171 22 42 22 61 24 85 6 25 -18 13 -67 -15 -60 -13 4 -25 -2 -35 -15 -18 -26 -107 -72 -140 -72 -14 0 -36 8 -50 17 -24 16 -30 16 -89 0 -82 -22 -101 -21 -122 3 -24 27 -35 25 -58 -13 -15 -24 -28 -32 -53 -33 -21 -1 -43 -12 -65 -34 l-32 -32 -96 5 c-57 3 -101 1 -107 -5 -6 -6 -23 -4 -47 6 -26 11 -42 13 -55 6 -10 -6 -30 -10 -43 -10 -14 0 -27 -6 -30 -14 -7 -17 -76 -31 -89 -18 -21 21 -92 0 -135 -39 -24 -22 -46 -40 -50 -40 -5 -1 -53 -3 -108 -4 -55 -2 -120 -8 -145 -15 -25 -7 -58 -13 -75 -14 -25 -1 -31 -6 -33 -28 -4 -37 -28 -36 -50 2 -9 16 -20 30 -23 30 -3 0 -12 -15 -20 -32 -13 -32 -17 -33 -77 -36 -43 -2 -71 2 -85 11 -12 8 -42 17 -67 20 -25 3 -55 9 -67 12 -16 5 -23 2 -28 -14 -3 -12 -16 -26 -27 -32 -16 -9 -26 -7 -49 10 -27 20 -30 20 -81 5 -29 -9 -60 -20 -68 -25 -8 -5 -22 -12 -30 -15 -8 -3 -26 -11 -38 -17 -20 -9 -25 -8 -33 6 -13 22 -38 22 -69 0 -28 -20 -124 -53 -156 -53 -34 0 -117 -32 -151 -57 -27 -21 -39 -23 -76 -18 -41 6 -50 3 -103 -31 -64 -42 -161 -75 -194 -67 -11 3 -38 -4 -60 -16 -22 -11 -53 -21 -68 -21 -16 0 -51 -6 -78 -14 -27 -7 -75 -19 -106 -25 -31 -7 -68 -21 -82 -32 -17 -13 -41 -19 -83 -20 -48 -1 -67 -6 -110 -35 -29 -19 -61 -34 -72 -34 -11 0 -23 -5 -26 -10 -3 -6 -24 -10 -47 -10 -28 0 -53 -9 -85 -30 -44 -30 -96 -39 -108 -20 -11 17 -25 11 -35 -15 -8 -22 -12 -24 -35 -13 -18 8 -32 8 -48 1 -36 -17 -132 -43 -158 -43 -43 -1 -169 -39 -200 -61 -23 -16 -38 -20 -65 -15 -23 5 -41 2 -56 -9 -29 -19 -47 -19 -70 2 -17 15 -18 14 -18 -21 0 -43 -21 -57 -49 -32 -25 23 -46 20 -69 -9 -18 -23 -36 -26 -104 -16 -4 1 -16 11 -28 23 -19 21 -21 21 -33 3 -10 -13 -22 -16 -43 -12 -16 3 -36 1 -46 -4 -21 -11 -48 23 -48 59 0 21 2 23 15 12 20 -16 32 -4 37 34 4 38 71 76 133 76 35 0 47 6 80 41 39 40 41 40 92 34 44 -5 60 -2 105 20 29 15 60 33 69 41 8 8 20 14 26 14 18 0 36 29 29 46 -6 16 -8 16 -24 0 -10 -9 -27 -16 -38 -16 -11 0 -30 -7 -43 -16 -15 -11 -41 -16 -74 -15 -28 0 -56 -4 -62 -9 -19 -16 -126 -50 -156 -50 -34 0 -118 -27 -139 -45 -19 -16 -80 -8 -80 11 0 18 32 34 69 34 16 0 34 6 38 14 10 17 67 46 91 46 41 0 113 33 122 55 5 12 20 25 34 29 14 3 26 13 26 21 0 11 12 15 43 15 23 0 51 7 61 15 12 9 42 15 73 15 53 0 125 22 154 47 8 7 25 13 37 13 11 0 24 5 27 10 3 6 16 10 28 10 12 0 28 9 35 20 8 14 23 20 47 20 20 0 46 6 58 13 12 8 58 22 102 31 44 10 107 30 140 46 56 26 100 40 230 70 86 20 99 30 109 83 11 56 -1 100 -27 105 -10 2 -33 -10 -52 -26 -18 -17 -50 -36 -69 -43 -23 -8 -36 -20 -36 -30 0 -27 -14 -30 -49 -13 -34 17 -76 14 -165 -12 -27 -8 -62 -14 -77 -14 -14 0 -32 -7 -39 -15 -7 -8 -25 -15 -39 -15 -15 0 -36 -7 -47 -15 -10 -8 -29 -15 -40 -15 -12 0 -27 -7 -34 -15 -7 -8 -18 -15 -24 -15 -7 0 -18 -6 -25 -12 -7 -8 -37 -13 -70 -13 -44 0 -64 -5 -81 -20 -14 -13 -36 -19 -68 -20 -29 0 -63 -9 -89 -23 -24 -12 -64 -25 -90 -29 -27 -3 -65 -14 -85 -24 -21 -11 -56 -19 -78 -19 -23 0 -65 -11 -95 -25 -29 -14 -67 -24 -83 -23 -17 1 -39 -5 -49 -14 -23 -20 -108 -48 -146 -48 -35 0 -165 -38 -173 -51 -3 -5 -23 -9 -45 -9 -21 0 -47 -4 -57 -10 -56 -30 -114 -46 -202 -53 -28 -2 -38 -30 -19 -53 13 -16 75 -12 109 6 9 6 21 3 32 -7 16 -14 18 -13 28 11 11 29 45 46 94 46 39 0 50 -8 35 -26 -14 -17 -3 -34 22 -34 29 0 18 -24 -12 -28 -13 -2 -30 -9 -38 -15 -8 -7 -50 -12 -97 -13 -63 0 -88 -5 -102 -17 -10 -9 -24 -17 -30 -17 -6 0 -18 -13 -26 -28 -17 -33 -53 -52 -116 -62 -116 -18 -252 -59 -274 -82 -14 -15 -26 -18 -49 -14 -29 6 -67 -14 -67 -36 0 -13 7204 -10 7217 3 7 7 55 11 122 12 l111 0 0 265 0 264 -22 -6 c-66 -19 -130 -24 -194 -14 -84 12 -93 12 -169 1 -58 -9 -118 -33 -130 -53 -3 -5 -21 -9 -40 -8 -19 1 -43 -5 -52 -13 -29 -24 -71 -39 -112 -39 -34 0 -41 4 -55 35 -10 20 -16 52 -14 73 l3 37 52 -3 c65 -5 93 18 93 77 0 23 6 44 16 52 19 16 120 49 150 49 11 0 42 7 69 16 36 13 50 24 59 45 11 30 37 38 65 20 9 -6 37 -2 75 8 45 12 70 14 94 7 23 -6 44 -5 72 4 l40 13 0 74 c0 73 0 73 -27 73 -16 0 -35 5 -43 10 -13 9 -11 14 13 35 15 14 35 25 43 25 10 0 14 12 14 44 l0 43 -77 7 c-43 3 -81 2 -86 -3 -5 -5 -24 -7 -42 -4 -18 3 -43 0 -56 -7 -13 -7 -59 -17 -103 -21 -78 -8 -82 -7 -123 21 l-44 28 -52 -21 c-69 -28 -237 -37 -237 -13 0 9 8 16 18 16 27 0 115 31 133 47 10 8 43 17 75 20 33 3 65 10 72 16 7 6 52 11 100 12 48 0 103 5 122 9 34 9 35 9 18 -11 -10 -11 -18 -28 -18 -37 0 -13 5 -16 18 -11 9 4 37 10 60 13 49 5 62 24 37 52 -9 10 -15 29 -13 42 3 22 -1 23 -54 26 -66 3 -72 14 -37 62 13 17 19 35 15 45 -6 17 -27 17 -141 4 -5 -1 -17 1 -25 5 -8 3 -24 0 -35 -7z"/> <path d="M7523 1273 c-14 -5 -17 -41 -7 -67 10 -25 32 -19 49 13 24 46 3 73 -42 54z"/> <path d="M3925 1205 c-22 -7 -53 -14 -70 -15 -16 0 -39 -7 -49 -15 -11 -8 -39 -15 -62 -15 -24 0 -49 -6 -56 -14 -22 -21 -75 -46 -99 -46 -12 0 -45 -6 -73 -14 -74 -21 -146 -38 -181 -44 -16 -2 -37 -10 -45 -17 -8 -7 -49 -15 -90 -17 -55 -4 -91 -12 -135 -34 -98 -47 -135 -72 -135 -94 0 -24 23 -26 94 -6 28 8 87 22 131 31 44 9 102 23 129 31 26 8 59 14 71 14 13 0 36 5 52 11 15 6 53 14 83 19 31 4 74 17 95 28 88 45 112 54 155 59 28 4 59 16 81 34 22 17 49 29 66 29 17 0 47 13 70 29 22 16 50 31 62 33 12 1 23 8 24 13 3 15 -73 15 -118 0z"/> <path d="M6180 1205 c-14 -8 -42 -14 -62 -15 -28 0 -38 -5 -43 -21 -9 -27 1 -36 25 -21 11 7 27 12 35 12 25 0 96 40 90 50 -8 13 -15 12 -45 -5z"/> <path d="M7020 1210 c0 -5 7 -10 15 -10 8 0 15 5 15 10 0 6 -7 10 -15 10 -8 0 -15 -4 -15 -10z"/> <path d="M5745 1083 c-76 -18 -109 -34 -113 -56 -4 -19 27 -24 44 -7 6 6 37 13 70 16 32 2 65 11 74 19 9 8 22 15 28 15 7 0 12 7 12 15 0 18 -31 18 -115 -2z"/> <path d="M4525 1060 c-11 -18 5 -31 26 -20 11 6 17 15 14 21 -8 12 -32 12 -40 -1z"/> <path d="M4245 1000 c-7 -11 12 -50 25 -50 16 0 21 19 10 40 -12 22 -25 26 -35 10z"/> <path d="M4252 898 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M2715 874 c-22 -8 -49 -18 -60 -24 -11 -5 -33 -11 -49 -12 -33 -3 -57 -31 -40 -48 7 -7 33 -5 83 6 59 14 74 21 81 40 7 16 17 24 34 24 30 0 42 15 20 24 -20 8 -21 7 -69 -10z"/> <path d="M2812 836 c2 -15 8 -26 13 -26 15 0 12 43 -3 48 -10 3 -13 -4 -10 -22z"/> <path d="M2394 756 c-8 -21 3 -36 27 -36 15 0 20 6 17 22 -4 27 -35 37 -44 14z"/> <path d="M2143 716 c-29 -6 -62 -21 -74 -32 -18 -19 -25 -20 -50 -11 -23 9 -44 8 -97 -6 -37 -9 -100 -17 -141 -17 -64 0 -77 -3 -110 -27 -81 -62 -97 -69 -127 -52 -23 12 -27 10 -50 -14 -14 -15 -35 -27 -48 -27 -13 0 -40 -7 -61 -15 -20 -9 -58 -15 -84 -14 -31 2 -56 -3 -72 -14 -13 -9 -29 -17 -36 -17 -8 0 -32 -12 -55 -26 -34 -22 -45 -24 -65 -15 -41 19 -87 13 -129 -17 -41 -29 -134 -62 -176 -62 -14 0 -37 -9 -50 -20 -14 -10 -47 -24 -73 -30 -26 -6 -59 -17 -74 -24 -15 -8 -55 -14 -90 -15 -43 0 -69 -5 -80 -15 -10 -9 -27 -16 -38 -16 -11 0 -36 -13 -54 -30 -21 -19 -45 -30 -64 -30 -46 0 -135 -63 -135 -96 0 -25 29 -28 108 -9 43 9 86 19 97 21 11 2 36 14 55 26 33 21 94 43 152 55 15 3 33 11 39 19 6 8 28 14 48 14 21 0 46 7 57 15 10 8 26 15 35 15 9 0 34 12 55 28 57 40 106 54 159 47 41 -7 47 -4 87 29 23 20 54 39 68 42 14 3 44 13 66 21 32 11 47 12 62 4 32 -17 55 -13 92 14 19 14 41 25 51 25 9 0 22 7 29 15 8 9 30 15 58 15 25 0 71 6 101 14 72 18 187 43 228 50 17 3 51 14 75 24 101 45 148 62 175 62 15 0 46 7 68 15 22 8 61 14 88 15 43 0 47 -2 47 -24 0 -13 -3 -32 -6 -41 -6 -15 -8 -15 -25 1 -16 15 -20 15 -49 0 -18 -8 -48 -18 -69 -22 -65 -10 -68 -13 -41 -34 23 -18 24 -19 7 -38 -9 -10 -17 -24 -17 -30 0 -20 19 -13 36 13 11 17 25 25 44 25 19 0 36 9 48 25 16 20 26 24 50 19 25 -5 33 -2 47 19 16 24 16 45 -1 124 -6 33 -32 41 -91 29z"/> <path d="M2451 677 c-18 -23 -2 -49 28 -45 20 2 26 8 26 28 0 29 -34 40 -54 17z"/> <path d="M2290 610 c20 -38 100 -38 100 1 0 16 -7 19 -55 19 -52 0 -55 -1 -45 -20z"/> <path d="M3633 553 c-22 -8 -14 -23 12 -23 16 0 25 6 25 15 0 15 -14 18 -37 8z"/> <path d="M1916 491 c-5 -7 -21 -9 -45 -5 -31 5 -46 1 -77 -19 -42 -27 -101 -46 -229 -72 -44 -9 -96 -21 -116 -26 -20 -5 -52 -9 -72 -9 -19 0 -54 -9 -78 -20 -24 -11 -56 -20 -71 -20 -36 0 -118 -28 -136 -47 -10 -10 -25 -13 -46 -9 -21 4 -39 0 -56 -11 -14 -10 -38 -19 -55 -20 -16 -1 -43 -9 -60 -17 -16 -9 -43 -16 -58 -16 -31 0 -93 -23 -117 -44 -8 -7 -39 -16 -69 -19 -29 -4 -58 -11 -65 -16 -6 -5 -34 -15 -61 -22 -46 -11 -91 -30 -157 -65 -14 -8 -41 -14 -60 -14 -18 0 -40 -5 -48 -10 -10 -7 103 -10 356 -8 340 3 374 5 392 21 10 10 57 27 103 39 46 11 91 27 100 34 8 8 23 14 33 14 23 0 31 27 16 55 -15 28 -7 55 15 55 13 0 15 -7 10 -34 -6 -29 -3 -37 17 -49 38 -25 71 -29 103 -13 17 9 40 16 53 16 32 0 48 39 33 81 -6 17 -11 38 -11 45 0 16 79 54 112 54 14 0 31 7 38 15 7 8 26 15 42 15 29 0 70 14 131 46 36 18 46 18 68 -2 17 -16 19 -15 28 8 6 17 20 27 40 31 33 7 39 23 18 52 -10 12 -16 15 -21 6z"/> <path d="M3455 490 c-3 -6 1 -13 10 -16 19 -8 30 0 20 15 -8 14 -22 14 -30 1z"/> <path d="M3350 450 c0 -5 7 -10 15 -10 8 0 15 5 15 10 0 6 -7 10 -15 10 -8 0 -15 -4 -15 -10z"/> <path d="M1972 318 c2 -13 8 -23 13 -23 6 0 11 10 13 23 2 15 -2 22 -13 22 -11 0 -15 -7 -13 -22z"/> <path d="M1631 264 c-13 -30 -7 -44 19 -44 25 0 41 30 29 53 -14 25 -34 21 -48 -9z"/> <path d="M1730 261 c0 -12 6 -21 16 -21 9 0 14 7 12 17 -5 25 -28 28 -28 4z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.main-slider-one__shape-1 {
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateX(-100%);
}
@media (max-width: 1199px) {
  .main-slider-one__shape-1 {
    left: -50px;
  }
}
.main-slider-one__shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translateX(-100%);
}
@media (max-width: 1199px) {
  .main-slider-one__shape-2 {
    left: -50px;
  }
}
@media (max-width: 575px) {
  .main-slider-one__shape-2 {
    left: -65px;
  }
}
.main-slider-one__shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  animation: moveHorizontal 2s linear infinite;
}
.main-slider-one .container {
  position: relative;
  z-index: 2;
}
.main-slider-one__content {
  position: relative;
  padding-right: 40px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .main-slider-one__content {
    padding-right: 0;
  }
}
.main-slider-one__top {
  margin-bottom: 14px;
  overflow: hidden;
}
.main-slider-one__tagline {
  margin: 0;
  padding: 3.5px 30px;
  display: inline-block;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 24px;
  color: var(--cherito-base, #E23B33);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  border-radius: 43px;
  opacity: 0;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-one__tagline {
    font-size: 22px;
  }
}
.main-slider-one__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  font-size: 70px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  line-height: 1.142;
}
@media (max-width: 1399px) {
  .main-slider-one__title {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 60px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 50px;
  }
}
@media (max-width: 430px) {
  .main-slider-one__title {
    font-size: 45px;
  }
}
@media (max-width: 390px) {
  .main-slider-one__title {
    font-size: 40px;
  }
}
.main-slider-one__title__inner {
  overflow: hidden;
  position: relative;
  display: table;
  opacity: 0;
  transform: translateY(200px);
}
.main-slider-one__title__inner::before, .main-slider-one__title__inner::after {
  content: "";
  position: absolute;
  width: calc(50% + 2px);
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  z-index: 2;
  transition: all 1000ms ease;
}
.main-slider-one__title__inner::before {
  top: 0;
  right: 0;
}
.main-slider-one__title__inner::after {
  top: 0;
  left: 0;
}
.main-slider-one__description {
  margin-bottom: 42px;
  overflow: hidden;
}
.main-slider-one__text {
  margin-bottom: 0;
  font-size: 18px;
  color: RGBA(var(--cherito-white3-rgb, 229, 222, 217), 0.7);
  line-height: 1.666;
  opacity: 0;
  transform: translateY(150px);
}
@media (max-width: 767px) {
  .main-slider-one__text {
    font-size: 16px;
  }
}
.main-slider-one__button {
  overflow: hidden;
}
.main-slider-one__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-one__button .cherito-btn:hover {
  color: var(--cherito-black, #212226);
}
.main-slider-one__button .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-slider-one .active .main-slider-one__bg__right__inner {
  transform: scale(1.3);
}
.main-slider-one .active .main-slider-one__tagline,
.main-slider-one .active .main-slider-one__title__inner,
.main-slider-one .active .main-slider-one__text,
.main-slider-one .active .main-slider-one__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-one .active .main-slider-one__title__inner {
  transition-delay: 200ms;
}
.main-slider-one .active .main-slider-one__title__inner::before, .main-slider-one .active .main-slider-one__title__inner::after {
  transition-delay: 1500ms;
}
.main-slider-one .active .main-slider-one__title__inner::before {
  top: 0;
  right: 105%;
}
.main-slider-one .active .main-slider-one__title__inner::after {
  top: 0;
  left: 105%;
}
.main-slider-one .active .main-slider-one__text {
  transition-delay: 300ms;
}
.main-slider-one .active .main-slider-one__button__inner {
  transition-delay: 500ms;
}
.main-slider-one .active .main-slider-one__shape-1,
.main-slider-one .active .main-slider-one__shape-2 {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1300ms ease, opacity 1300ms ease;
}
.main-slider-one .active .main-slider-one__shape-1 {
  opacity: 0.38;
}
.main-slider-one .active .main-slider-one__shape-3 {
  opacity: 0.3;
  transition: all 1300ms ease 500ms;
}

.main-slider-two {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.main-slider-two__carousel {
  position: relative;
}
.main-slider-two__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
}
@media (max-width: 1399px) {
  .main-slider-two__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 60px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1400px) {
  .main-slider-two__carousel.owl-carousel .owl-nav {
    top: calc(50% + 74.5px);
    left: 30px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1500px) {
  .main-slider-two__carousel.owl-carousel .owl-nav {
    left: 80px;
  }
}
.main-slider-two__item {
  position: relative;
  padding-top: 247px;
  padding-bottom: 94px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .main-slider-two__item {
    padding-top: 270px;
    padding-bottom: 250px;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    padding-bottom: 260px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 220px;
  }
}
@media (max-width: 430px) {
  .main-slider-two__item {
    padding-top: 200px;
  }
}
.main-slider-two__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cherito-black);
}
.main-slider-two__bg__inner {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform: scale(1);
  mix-blend-mode: luminosity;
  transition: transform 10s ease;
}
.main-slider-two__bg__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.85);
}
.main-slider-two .container {
  position: relative;
  z-index: 2;
}
.main-slider-two__content {
  position: relative;
  margin-top: 50px;
  padding-right: 30px;
  z-index: 1;
}
@media (max-width: 1199px) {
  .main-slider-two__content {
    margin-top: 0;
    padding-right: 0;
  }
}
.main-slider-two__top {
  margin-bottom: 2px;
  overflow: hidden;
}
.main-slider-two__tagline {
  margin: 0;
  display: inline-block;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 24px;
  color: var(--cherito-primary);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-100px);
}
@media (max-width: 767px) {
  .main-slider-two__tagline {
    font-size: 22px;
  }
}
.main-slider-two__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 13px;
  font-weight: 700;
  font-size: 65px;
  color: var(--cherito-white, #ffffff);
  line-height: 1.23;
}
@media (max-width: 1399px) {
  .main-slider-two__title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 50px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__title {
    font-size: 45px;
  }
}
@media (max-width: 430px) {
  .main-slider-two__title {
    font-size: 40px;
  }
}
.main-slider-two__title__inner {
  padding-bottom: 2px;
  overflow: hidden;
  position: relative;
  display: table;
  opacity: 0;
  transform: translateY(-200px);
}
@media (max-width: 575px) {
  .main-slider-two__title__inner {
    padding-bottom: 0;
  }
}
.main-slider-two__title__inner::before, .main-slider-two__title__inner::after {
  content: "";
  position: absolute;
  width: calc(50% + 2px);
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  z-index: 2;
  transition: all 1000ms ease;
}
.main-slider-two__title__inner::before {
  top: 0;
  right: 0;
}
.main-slider-two__title__inner::after {
  top: 0;
  left: 0;
}
.main-slider-two__description {
  padding-right: 56px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .main-slider-two__description {
    padding-right: 0px;
  }
}
.main-slider-two__text {
  margin-bottom: 0;
  color: rgba(var(--cherito-white3-rgb), 0.7);
  font-weight: 600;
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-two__button {
  padding: 41px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  overflow: hidden;
}
.main-slider-two__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-two__button .cherito-btn:hover {
  color: var(--cherito-base);
}
.main-slider-two__button .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-slider-two__button .video-btn {
  background-color: var(--cherito-primary);
}
.main-slider-two__button .video-btn:hover {
  background-color: var(--cherito-base);
}
.main-slider-two__button .video-btn__ripple::before, .main-slider-two__button .video-btn__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--cherito-primary-rgb), 0.6);
}
.main-slider-two__button .video-btn:hover .video-btn__ripple::before, .main-slider-two__button .video-btn:hover .video-btn__ripple::after {
  box-shadow: 0 0 0 0 rgba(var(--cherito-base-rgb), 0.6);
}
.main-slider-two__image {
  position: relative;
  margin-left: -9px;
  display: inline-block;
  transform: translateX(100%);
  opacity: 0;
}
@media (max-width: 1599px) {
  .main-slider-two__image {
    margin: 0;
  }
}
.main-slider-two__image::after {
  content: "";
  width: calc(100% + 4px);
  height: calc(100% + 5px);
  position: absolute;
  top: 6px;
  right: 21px;
  background: linear-gradient(174.38deg, var(--cherito-primary) 14.64%, var(--cherito-base) 97.69%);
  z-index: 1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 273.000000"><g transform="translate(0.000000,273.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2540 5428 c-929 -134 -1658 -728 -2161 -1758 -792 -1624 -307 -2935 1271 -3436 1366 -434 2621 -255 3396 484 834 796 1177 2110 792 3034 -422 1014 -2074 1854 -3298 1676z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 273.000000"><g transform="translate(0.000000,273.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2540 5428 c-929 -134 -1658 -728 -2161 -1758 -792 -1624 -307 -2935 1271 -3436 1366 -434 2621 -255 3396 484 834 796 1177 2110 792 3034 -422 1014 -2074 1854 -3298 1676z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1599px) {
  .main-slider-two__image::after {
    right: 15px;
  }
}
@media (max-width: 575px) {
  .main-slider-two__image::after {
    right: 5px;
  }
}
.main-slider-two__image__inner {
  position: relative;
  display: inline-block;
  z-index: 2;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 273.000000"><g transform="translate(0.000000,273.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2507 5420 c-909 -138 -1630 -731 -2128 -1750 -821 -1681 -287 -2987 1422 -3481 1913 -552 3456 126 4027 1768 462 1328 2 2396 -1316 3057 -770 386 -1354 504 -2005 406z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 300.000000 273.000000"><g transform="translate(0.000000,273.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M2507 5420 c-909 -138 -1630 -731 -2128 -1750 -821 -1681 -287 -2987 1422 -3481 1913 -552 3456 126 4027 1768 462 1328 2 2396 -1316 3057 -770 386 -1354 504 -2005 406z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.main-slider-two__image__inner img {
  display: inline-block !important;
  width: auto !important;
}
@media (max-width: 1599px) {
  .main-slider-two__image__inner img {
    width: auto !important;
    display: inline-block !important;
    max-width: 100%;
    height: auto;
  }
}
.main-slider-two__image__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  top: -37px;
  right: -59px;
  opacity: 0.3;
  animation: textRotate 10s linear infinite;
}
.main-slider-two .active .main-slider-two__bg__inner {
  transform: scale(1.3);
}
.main-slider-two .active .main-slider-two__tagline,
.main-slider-two .active .main-slider-two__title__inner,
.main-slider-two .active .main-slider-two__text,
.main-slider-two .active .main-slider-two__button__inner,
.main-slider-two .active .main-slider-two__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-two .active .main-slider-two__title__inner {
  transition-delay: 900ms;
}
.main-slider-two .active .main-slider-two__title__inner::before, .main-slider-two .active .main-slider-two__title__inner::after {
  transition-delay: 2500ms;
}
.main-slider-two .active .main-slider-two__title__inner::before {
  top: 0;
  right: 105%;
}
.main-slider-two .active .main-slider-two__title__inner::after {
  top: 0;
  left: 105%;
}
.main-slider-two .active .main-slider-two__text {
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__button__inner:nth-child(1) {
  transition-delay: 1400ms;
}
.main-slider-two .active .main-slider-two__button__inner:nth-child(2) {
  transition-delay: 1600ms;
}
.main-slider-two .active .main-slider-two__image {
  transform: translateX(0);
  opacity: 1;
  transition: transform 1200ms ease, opacity 1200ms ease;
}

.main-slider-three {
  position: relative;
  background-color: var(--cherito-black);
  overflow: hidden;
  z-index: 1;
}
.main-slider-three__carousel.owl-carousel .owl-dots {
  margin: 0 !important;
  position: absolute;
}
@media (max-width: 1199px) {
  .main-slider-three__carousel.owl-carousel .owl-dots {
    left: 50%;
    bottom: 70px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1200px) {
  .main-slider-three__carousel.owl-carousel .owl-dots {
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    flex-direction: column;
  }
}
@media (min-width: 1400px) {
  .main-slider-three__carousel.owl-carousel .owl-dots {
    left: 60px;
  }
}
@media (min-width: 1600px) {
  .main-slider-three__carousel.owl-carousel .owl-dots {
    left: 70px;
  }
}
.main-slider-three__carousel.owl-carousel .owl-dots .owl-dot {
  background-color: var(--cherito-white3);
}
.main-slider-three__carousel.owl-carousel .owl-dots .owl-dot::after {
  background-color: rgba(var(--cherito-primary-rgb), 0.3);
}
.main-slider-three__carousel.owl-carousel .owl-dots .owl-dot:hover, .main-slider-three__carousel.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--cherito-primary);
}
.main-slider-three__item {
  position: relative;
  padding-top: 187px;
  padding-bottom: 193px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-slider-three__item {
    padding-bottom: 230px;
  }
}
.main-slider-three__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform: scale(1);
  transition: transform 10s ease;
}
.main-slider-three__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.8);
}
.main-slider-three .container {
  position: relative;
  z-index: 2;
}
.main-slider-three__content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.main-slider-three__top {
  margin-bottom: 14px;
  overflow: hidden;
}
.main-slider-three__tagline {
  margin: 0;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 24px;
  color: var(--cherito-primary);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  border-radius: 43px;
  opacity: 0;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-three__tagline {
    font-size: 22px;
  }
}
.main-slider-three__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 19px;
  font-size: 80px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.07;
}
@media (max-width: 1399px) {
  .main-slider-three__title {
    font-size: 70px;
  }
}
@media (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 65px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__title {
    font-size: 57px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 50px;
  }
}
@media (max-width: 430px) {
  .main-slider-three__title {
    font-size: 45px;
  }
}
@media (max-width: 390px) {
  .main-slider-three__title {
    font-size: 40px;
  }
}
.main-slider-three__title__inner {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: table;
  opacity: 0;
  transform: translateY(200px);
}
.main-slider-three__description {
  margin-bottom: 32px;
  overflow: hidden;
}
.main-slider-three__text {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--cherito-white3);
  line-height: 1.666;
  opacity: 0;
  transform: translateY(150px);
}
@media (max-width: 767px) {
  .main-slider-three__text {
    font-size: 16px;
  }
}
.main-slider-three__button {
  overflow: hidden;
}
.main-slider-three__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-three__shape {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  animation: moveHorizontal 2s linear infinite;
}
@media (max-width: 1599px) {
  .main-slider-three__shape {
    max-width: 650px;
  }
}
@media (max-width: 1399px) {
  .main-slider-three__shape {
    max-width: 600px;
  }
}
@media (max-width: 1199px) {
  .main-slider-three__shape {
    max-width: 550px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape {
    max-width: 470px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__shape {
    max-width: 380px;
  }
}
@media (max-width: 575px) {
  .main-slider-three__shape {
    display: none !important;
  }
}
.main-slider-three .active .main-slider-three__bg {
  transform: scale(1.3);
}
.main-slider-three .active .main-slider-three__tagline,
.main-slider-three .active .main-slider-three__title__inner,
.main-slider-three .active .main-slider-three__text,
.main-slider-three .active .main-slider-three__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-three .active .main-slider-three__title__inner {
  transition-delay: 200ms;
}
.main-slider-three .active .main-slider-three__text {
  transition-delay: 300ms;
}
.main-slider-three .active .main-slider-three__button__inner {
  transition-delay: 500ms;
}

.main-slider-four {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
  overflow: hidden;
  z-index: 1;
}
.main-slider-four__carousel.owl-carousel .owl-nav {
  margin: 0;
  position: absolute;
}
@media (max-width: 1399px) {
  .main-slider-four__carousel.owl-carousel .owl-nav {
    left: 50%;
    bottom: 120px;
    transform: translateX(-50%);
  }
}
@media (min-width: 1400px) {
  .main-slider-four__carousel.owl-carousel .owl-nav {
    top: calc(50% - 95px);
    left: 30px;
    transform: translateY(-50%);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
@media (min-width: 1500px) {
  .main-slider-four__carousel.owl-carousel .owl-nav {
    left: 80px;
  }
}
.main-slider-four__carousel.owl-carousel .owl-nav button {
  background-color: var(--cherito-white, #ffffff);
}
.main-slider-four__item {
  position: relative;
  padding-top: 36px;
  padding-bottom: 92px;
  background-color: var(--cherito-white, #ffffff);
}
@media (max-width: 1599px) {
  .main-slider-four__item {
    padding-top: 130px;
    padding-bottom: 300px;
  }
}
@media (max-width: 430px) {
  .main-slider-four__item {
    padding-top: 110px;
  }
}
.main-slider-four__bg {
  width: 68.3%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.2;
  mix-blend-mode: luminosity;
}
@media (max-width: 1599px) {
  .main-slider-four__bg {
    width: 100%;
  }
}
.main-slider-four__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-91.04deg, var(--cherito-white, #ffffff) 0%, RGBA(var(--cherito-white-rgb, 255, 255, 255), 0) 100%);
}
.main-slider-four__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(0deg, RGBA(var(--cherito-white-rgb, 255, 255, 255), 0) 57.19%, rgba(254, 218, 70, 0.16) 100%);
  z-index: 1;
}
.main-slider-four .container {
  position: relative;
  z-index: 3;
}
@media (max-width: 1599px) {
  .main-slider-four .row {
    align-items: center;
  }
}
.main-slider-four__content {
  position: relative;
  margin-top: 129px;
  z-index: 2;
}
@media (max-width: 1599px) {
  .main-slider-four__content {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .main-slider-four__content {
    max-width: 800px;
  }
}
.main-slider-four__top {
  margin-bottom: 3px;
  overflow: hidden;
}
.main-slider-four__tagline {
  margin: 0;
  display: inline-block;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 24px;
  color: var(--cherito-base);
  font-weight: 400;
  text-transform: capitalize;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(100px);
}
@media (max-width: 767px) {
  .main-slider-four__tagline {
    font-size: 22px;
  }
}
.main-slider-four__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 19px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.166;
}
@media (max-width: 991px) {
  .main-slider-four__title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__title {
    font-size: 45px;
  }
}
@media (max-width: 430px) {
  .main-slider-four__title {
    font-size: 40px;
  }
}
.main-slider-four__title__inner {
  overflow: hidden;
  position: relative;
  display: table;
  opacity: 0;
  transform: translateY(250px);
}
.main-slider-four__description {
  margin-bottom: 32px;
  overflow: hidden;
}
.main-slider-four__text {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--cherito-text, #727272);
  line-height: 1.666;
  opacity: 0;
  transform: translateY(200px);
}
@media (max-width: 767px) {
  .main-slider-four__text {
    font-size: 16px;
  }
}
.main-slider-four__button {
  overflow: hidden;
}
.main-slider-four__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-four__image {
  position: relative;
  opacity: 0;
  transform: translateX(100%) scaleX(2.5);
}
@media (min-width: 1600px) {
  .main-slider-four__image {
    margin-left: -100px;
  }
}
.main-slider-four__image__inner {
  position: relative;
  z-index: 1;
}
@media (max-width: 1599px) {
  .main-slider-four__image__inner img {
    width: auto !important;
    display: inline-block !important;
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .main-slider-four__image__inner img {
    display: inline-block !important;
    width: auto !important;
  }
}
@media (max-width: 1599px) {
  .main-slider-four__image__shape-1, .main-slider-four__image__shape-2 {
    width: auto !important;
    display: inline-block !important;
    max-width: 100%;
    height: auto;
  }
}
@media (min-width: 1600px) {
  .main-slider-four__image__shape-1, .main-slider-four__image__shape-2 {
    display: inline-block !important;
    width: auto !important;
  }
}
.main-slider-four__image__shape-1 {
  position: absolute;
  top: 61px;
  left: 89px;
  animation: moveHorizontal 2s linear infinite;
}
@media (max-width: 1599px) {
  .main-slider-four__image__shape-1 {
    top: 40px;
    left: 0;
  }
}
@media (max-width: 991px) {
  .main-slider-four__image__shape-1 {
    top: 20px;
  }
}
@media (max-width: 767px) {
  .main-slider-four__image__shape-1 {
    top: 0px;
  }
}
.main-slider-four__image__shape-2 {
  position: absolute;
  left: -42px;
  bottom: -90px;
}
@media (max-width: 1599px) {
  .main-slider-four__image__shape-2 {
    bottom: -40px;
  }
}
@media (max-width: 430px) {
  .main-slider-four__image__shape-2 {
    left: -30px;
  }
}
.main-slider-four__shape {
  width: 100%;
  height: 297px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background-repeat: repeat-x;
  background-color: transparent;
  background-blend-mode: initial;
  background-position: left top;
  animation: moveBackground 40s linear 0s infinite;
}
.main-slider-four .active .main-slider-four__tagline,
.main-slider-four .active .main-slider-four__title__inner,
.main-slider-four .active .main-slider-four__text,
.main-slider-four .active .main-slider-four__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-four .active .main-slider-four__title__inner {
  transition-delay: 500ms;
}
.main-slider-four .active .main-slider-four__text {
  transition-delay: 700ms;
}
.main-slider-four .active .main-slider-four__button__inner {
  transition-delay: 900ms;
}
.main-slider-four .active .main-slider-four__image {
  opacity: 1;
  transform: translateX(0px) scaleX(1);
  transition: transform 1300ms ease, opacity 1300ms ease;
}

.main-slider-five {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
  overflow: hidden;
  z-index: 1;
}
.main-slider-five__carousel {
  position: relative;
}
.main-slider-five__carousel.owl-carousel .owl-dots {
  margin: 0 !important;
  position: absolute;
  left: 50%;
  bottom: 70px;
  transform: translateX(-50%);
}
.main-slider-five__carousel.owl-carousel .owl-dots .owl-dot {
  background-color: var(--cherito-white3);
}
.main-slider-five__carousel.owl-carousel .owl-dots .owl-dot::after {
  background-color: rgb(116 115 133 / 58%);
}
.main-slider-five__carousel.owl-carousel .owl-dots .owl-dot:hover, .main-slider-five__carousel.owl-carousel .owl-dots .owl-dot.active {
  background-color: var(--cherito-primary);
}
.main-slider-five__item {
  position: relative;
/*  padding-top: 85px;*/
  background-color: var(--cherito-white, #ffffff);
  overflow: hidden;
/*  height: 480px;*/
}
.main-slider-five__bg {
  width: 75.65%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .main-slider-five__bg {
    width: 85%;
  }
}
@media (max-width: 1399px) {
  .main-slider-five__bg {
    width: 100%;
  }
}
.main-slider-five__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transition: all 10s ease;
}

.main-slider-five__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
/*  background: linear-gradient(90.9deg, #100E2C 34.39%, rgba(254, 101, 0, 0) 108.3%);*/
  background: linear-gradient(70deg, #100e2cdb, #100e2cd4, #100e2c2e, #ffffff00);
  z-index: 1;
}
.main-slider-five .container {
/*  position: relative;*/
  z-index: 3;
}
.main-slider-five__content {
  position: relative;
  z-index: 2;

  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 580px;
}
.main-slider-five__top {
  margin-bottom: 20px;
  overflow: hidden;
}
.main-slider-five__tagline {
  margin: 0;
  padding: 8px 20px;
  display: inline-block;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 17px;
  color: var(--cherito-primary);
  text-transform: capitalize;
  line-height: 1.4;
  background-color: rgb(7 166 214 / 6%);
  border-radius: 43px;
  opacity: 0;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-five__tagline {
    font-size: 22px;
  }
}
.main-slider-five__title {
/*  overflow: hidden;*/
/*  position: relative;*/
  margin-bottom: 16px;
  font-size: 40px;
  color: #2d2079;
  line-height: 1.2;
}

.main-slider-five__title .main-slider-five__title__inner{
  color: transparent;
  background: linear-gradient(170deg, #2d2079, #0197c4);
  background-clip: text;
}
.main-slider-five__title__inner {
  overflow: hidden;
  position: relative;
  display: table;
  opacity: 0;
  transform: translateY(300px);
}
.main-slider-five__title__hover {
  display: block;
}
.main-slider-five__title__hover__box {
  display: block;
  width: calc(10% + 1px);
  height: 100%;
  top: 0;
  position: absolute;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
  background-color: #2d2079;
  -webkit-transition: all 300ms ease 0ms;
  transition: all 300ms ease 0ms;
  z-index: 1;
}
.main-slider-five__description {
  margin-bottom: 20px;
  overflow: hidden;
}
.main-slider-five__text {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--cherito-black);
  line-height: 1.666;
  opacity: 0;
  transform: translateY(150px);
}
@media (max-width: 767px) {
  .main-slider-five__text {
    font-size: 16px;
  }
}
.main-slider-five__button {
  overflow: hidden;
}
.main-slider-five__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-five__button .cherito-btn {
  background-color: var(--cherito-primary);
}
.main-slider-five__button .cherito-btn:hover {
/*  color: var(--cherito-black);*/
}
.main-slider-five__button .cherito-btn__hover {
/*  background-color: var(--cherito-white, #ffffff);*/
}
.main-slider-five__shape-1, .main-slider-five__shape-2 {
  width: auto !important;
  display: inline-block !important;
  max-width: 100%;
  height: auto;
}
.main-slider-five__shape-1 {
  position: absolute;
  top: 0;
  left: -50%;
  mix-blend-mode: soft-light;
  z-index: 2;
  animation: moveHorizontal2 2s linear infinite;
}
@media (max-width: 1599px) {
  .main-slider-five__shape-1 {
    display: none !important;
  }
}
.main-slider-five__shape-2 {
  position: absolute;
  top: 27px;
  right: 240px;
  opacity: 0;
  transform: translateX(100%) scaleX(2.5);
  z-index: 2;
}
@media (max-width: 1799px) {
  .main-slider-five__shape-2 {
    right: 100px;
  }
}
@media (max-width: 1599px) {
  .main-slider-five__shape-2 {
    max-width: 500px !important;
    top: 50%;
    right: 50px;
    transform: translate(100%, -50%) scaleX(2.5);
  }
}
@media (max-width: 1399px) {
  .main-slider-five__shape-2 {
    max-width: 450px !important;
  }
}
@media (max-width: 1199px) {
  .main-slider-five__shape-2 {
    display: none !important;
  }
}
.main-slider-five .active .main-slider-five__bg__inner {
  transform: scale(1.2);
}
.main-slider-five .active .main-slider-five__tagline,
.main-slider-five .active .main-slider-five__title__inner,
.main-slider-five .active .main-slider-five__text,
.main-slider-five .active .main-slider-five__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-five .active .main-slider-five__title__inner {
  transition-delay: 200ms;
}
.main-slider-five .active .main-slider-five__text {
  transition-delay: 300ms;
}
.main-slider-five .active .main-slider-five__button__inner {
  transition-delay: 500ms;
}
.main-slider-five .active .main-slider-five__title__hover__box {
  -webkit-transform: translateY(110%);
  transform: translateY(110%);
}
.main-slider-five .active .main-slider-five__title__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 1300ms;
  transition-delay: 1300ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--2 {
  left: 10%;
  -webkit-transition-delay: 1400ms;
  transition-delay: 1400ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--3 {
  left: 20%;
  -webkit-transition-delay: 1500ms;
  transition-delay: 1500ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--4 {
  left: 30%;
  -webkit-transition-delay: 1600ms;
  transition-delay: 1600ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--5 {
  left: 40%;
  -webkit-transition-delay: 1700ms;
  transition-delay: 1700ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--6 {
  left: 50%;
  -webkit-transition-delay: 1800ms;
  transition-delay: 1800ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--7 {
  left: 60%;
  -webkit-transition-delay: 1900ms;
  transition-delay: 1900ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--8 {
  left: 70%;
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--9 {
  left: 80%;
  -webkit-transition-delay: 2100ms;
  transition-delay: 2100ms;
}
.main-slider-five .active .main-slider-five__title__hover__box--10 {
  left: 90%;
  -webkit-transition-delay: 2200ms;
  transition-delay: 2200ms;
}
.main-slider-five .active .main-slider-five__shape-1 {
  left: 0;
  opacity: 1;
  transition: all 1200ms ease;
}
@media (max-width: 1799px) {
  .main-slider-five .active .main-slider-five__shape-1 {
    left: -30px;
  }
}
.main-slider-five .active .main-slider-five__shape-2 {
  opacity: 0.1;
  transform: translateX(0%) scaleX(1);
  transition: all 1200ms ease;
}
@media (max-width: 1599px) {
  .main-slider-five .active .main-slider-five__shape-2 {
    transform: translate(0%, -50%) scaleX(1);
  }
}

.main-slider-five .carousel-control-prev, .main-slider-five .carousel-control-next{
  width: 55px;
  opacity: 1;
}
.main-slider-five .carousel-control-prev-icon,
.main-slider-five .carousel-control-next-icon{
  background-image: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  background: #38d1e0;
  border-radius: 50%;
}

.main-slider-five .carousel-control-prev-icon:hover,
.main-slider-five .carousel-control-next-icon:hover{
  background: #ff9f93;
}

.main-slider-six {
  position: relative;
  background-color: var(--cherito-black);
  overflow: hidden;
  z-index: 1;
}
.main-slider-six__carousel.owl-carousel .owl-dots {
  margin: 0 !important;
  position: absolute;
  z-index: 3;
}
@media (max-width: 1199px) {
  .main-slider-six__carousel.owl-carousel .owl-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .main-slider-six__carousel.owl-carousel .owl-dots {
    width: auto;
    min-width: auto;
    max-width: inherit;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 26px;
    top: calc(50% + 56px);
    right: calc((100% - 1178px) / 2);
    transform: translateY(-50%);
  }
}
@media (min-width: 1600px) {
  .main-slider-six__carousel.owl-carousel .owl-dots {
    top: calc(50% + 110px);
  }
}
.main-slider-six__carousel.owl-carousel .owl-dots .owl-dot {
  outline: 0;
  border: 0;
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--cherito-base);
  z-index: 1;
  transition: all 400ms ease;
}
.main-slider-six__carousel.owl-carousel .owl-dots .owl-dot::after {
  content: "";
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  border-radius: inherit;
  border: 6px solid var(--cherito-white, #ffffff);
  z-index: -1;
  transition: all 400ms ease;
}
.main-slider-six__carousel.owl-carousel .owl-dots .owl-dot span {
  background-color: transparent;
}
.main-slider-six__carousel.owl-carousel .owl-dots .owl-dot:hover::after, .main-slider-six__carousel.owl-carousel .owl-dots .owl-dot.active::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.main-slider-six__carousel.owl-carousel .owl-dots .owl-dot:hover span, .main-slider-six__carousel.owl-carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
}
.main-slider-six__item {
  position: relative;
  padding-top: 328px;
  padding-bottom: 120px;
  overflow: hidden;
}
@media (max-width: 1599px) {
  .main-slider-six__item {
    padding-top: 220px;
  }
}
@media (max-width: 1199px) {
  .main-slider-six__item {
    padding-bottom: 220px;
  }
}
@media (max-width: 575px) {
  .main-slider-six__item {
    padding-top: 180px;
  }
}
.main-slider-six__bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  transform: scale(1);
  transition: transform 10s ease;
}
.main-slider-six__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.6);
}
.main-slider-six .container {
  position: relative;
  z-index: 2;
}
.main-slider-six__inner {
  position: relative;
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 575px) {
  .main-slider-six__inner {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 390px) {
  .main-slider-six__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.main-slider-six__inner::after {
  content: "";
  width: 100%;
  height: calc(100% + 240px);
  position: absolute;
  top: -120px;
  left: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.47);
  border-radius: 40px 40px 0px 0px;
}
@media (max-width: 1199px) {
  .main-slider-six__inner::after {
    height: calc(100% + 340px);
  }
}
@media (max-width: 575px) {
  .main-slider-six__inner::after {
    top: -80px;
    height: calc(100% + 300px);
  }
}
.main-slider-six__content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.main-slider-six__top {
  margin-bottom: 18px;
  overflow: hidden;
}
.main-slider-six__tagline {
  margin: 0;
  padding: 3.5px 27px;
  display: inline-block;
  font-family: var(--cherito-special-font, "Caveat", cursive);
  font-size: 24px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.1);
  border-radius: 43px;
  opacity: 0;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-six__tagline {
    font-size: 22px;
  }
}
@media (max-width: 390px) {
  .main-slider-six__tagline {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 20px;
  }
}
.main-slider-six__title {
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
  font-size: 70px;
  color: var(--cherito-white, #ffffff);
  font-weight: 700;
  line-height: 1.142;
}
@media (max-width: 1399px) {
  .main-slider-six__title {
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  .main-slider-six__title {
    font-size: 55px;
  }
}
@media (max-width: 767px) {
  .main-slider-six__title {
    font-size: 45px;
  }
}
@media (max-width: 430px) {
  .main-slider-six__title {
    font-size: 40px;
  }
}
.main-slider-six__title__inner {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  display: table;
  opacity: 0;
  transform: translateY(200px);
}
.main-slider-six__description {
  margin: 0 auto 26px;
  max-width: 600px;
  overflow: hidden;
}
.main-slider-six__text {
  margin-bottom: 0;
  font-size: 18px;
  color: RGBA(var(--cherito-gray4-rgb, 210, 210, 210), 0.7);
  font-weight: 600;
  line-height: 1.666;
  opacity: 0;
  transform: translateY(150px);
}
@media (max-width: 767px) {
  .main-slider-six__text {
    font-size: 16px;
  }
}
.main-slider-six__button {
  overflow: hidden;
}
.main-slider-six__button__inner {
  opacity: 0;
  transform: translateY(150px);
}
.main-slider-six__button .cherito-btn:hover {
  color: var(--cherito-black);
}
.main-slider-six__button .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.main-slider-six .active .main-slider-six__bg {
  transform: scale(1.3);
}
.main-slider-six .active .main-slider-six__tagline,
.main-slider-six .active .main-slider-six__title__inner,
.main-slider-six .active .main-slider-six__text,
.main-slider-six .active .main-slider-six__button__inner {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1600ms ease, opacity 1600ms ease;
}
.main-slider-six .active .main-slider-six__title__inner {
  transition-delay: 200ms;
}
.main-slider-six .active .main-slider-six__text {
  transition-delay: 300ms;
}
.main-slider-six .active .main-slider-six__button__inner {
  transition-delay: 500ms;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-five {
  background-color: var(--cherito-white, #ffffff);
}
.about-five .sec-title {
  margin-bottom: 18px;
}
.about-five .sec-title__title{
  margin-bottom: 10px;
}
.about-five h4{
  font-size: 19px;
  font-family: var(--cherito-font);
  color: var(--cherito-black);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-five h4 i{
  font-size: 17px;
  color: #ff9f93;
  width: 35px;
  height: 26px;
  line-height: 26px;
  background: #ffedf8;
  border-left: 2px solid #ff9f93;
}
.about-five__text {
  margin-bottom: 10px;
}
.about-five__text b{
  font-weight: 600;
}
.about-five__button{
  margin-top: 20px;
}
.about-five__inner {
 /* margin-bottom: 40px;
  padding-right: 53px;*/
}
.about-five__inner__content {
  border: 1px solid #38d1e063;
  border-radius: 10px;
  margin: 25px 0;
}
.about-five__inner__top {
  padding: 12px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px 60px;
  border-bottom: 1px solid #38d1e063;
}
@media (max-width: 575px) {
  .about-five__inner__top {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-five__inner__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-five__inner__item:first-child::after {
  content: "";
  width: 1px;
  height: calc(100% + 26px);
  background-color: #38d1e063;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__inner__item:first-child::after {
    display: none;
  }
}
.about-five__inner__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #ff9f93;
  font-size: 22px;
  color: var(--cherito-white, #ffffff);
  transition: all 500ms ease;
}
.about-five__inner__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.about-five__inner__item:hover .about-five__inner__icon {
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary);
}
.about-five__inner__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  text-transform: capitalize;
}
.about-five__inner__bottom {
  padding: 14px 25px 15px;
}
.about-five__inner__list {
  margin: 0;
}
.about-five__inner__list li + li {
  margin-top: 8px;
}
.about-five__inner__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--cherito-black, #212226);
  font-weight: 500;
  line-height: 1.625;
}
.about-five__inner__list__icon {
  position: relative;
  top: 4px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary);
  border-radius: 50%;
}
.about-five__inner__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.about-five__image {
  position: relative;
}
.about-five__image__one {
  position: relative;
  text-align: right;
}
.about-five__image__one img {
  margin-left: auto;
  max-width: 100%;
  height: auto;
/*  border-radius: 10px;*/
  padding-left: 70px;
}
.about-five__image__two {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__image__two {
    margin: -100px 0 0 0px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .about-five__image__two {
    margin-left: 95px;
  }
}
@media (max-width: 767px) {
  .about-five__image__two {
    margin-left: 0px;
  }
}
@media (max-width: 575px) {
  .about-five__image__two {
    display: none;
  }
}
.about-five__image__two img {
  margin-left: auto;
  max-width: 100%;
  height: auto;
  border-radius: 65px 0 0;
  border-left: 4px solid #fff;
  border-top: 4px solid #fff;
}
.about-five__image__border {
  width: 5px;
  height: 95%;
  border-radius: 10px;
  background-color: #ff9f93;
  position: absolute;
  top: 23px;
  animation: zump 2s linear infinite;
}
@media (max-width: 575px) {
  .about-five__image__border {
    display: none;
  }
}
.about-five__image__border--1 {
  left: 22px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__image__border--1 {
    left: 15px;
  }
}
@media (max-width: 767px) {
  .about-five__image__border--1 {
    left: 0px;
  }
}
.about-five__image__border--2 {
  left: 40px;
  background-color: var(--cherito-primary, #F2B42B);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .about-five__image__border--2 {
    left: 28px;
  }
}
@media (max-width: 767px) {
  .about-five__image__border--2 {
    left: 13px;
  }
}
.about-five__image__logo {
  width: 115px;
  height: 115px;
  position: absolute;
  left: 75px;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cherito-white);
  border: 2px solid var(--cherito-primary);
  z-index: 2;
}
.about-five__image__logo img {
  margin: 0;
  max-width: 100%;
  height: auto;
/*  width: 95px;*/
  padding: 0 !important;
}

.about-five-left{
  float: right;
  width: 540px;
  margin: 0 0 30px 30px;
}

/*--------------------------------------------------------------
# Donations
--------------------------------------------------------------*/

.donation-card-five__image {
  position: relative;
  overflow: hidden;
/*  border-radius: 10px 10px 0px 0px;*/
  z-index: 1;
}
.donation-card-five__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(var(--cherito-black-rgb), 0) 45%, #161616de 80%);
  border-radius: inherit;
}
.donation-card-five__image img {
  width: 100%;
  display: block;
  border-radius: inherit;
  transition: all 500ms ease;
}
.donation-card-five:hover .donation-card-five__image img {
  transform: scale(1.05);
}
.donation-card-five__category {
  margin: 0;
  padding: 6px 18px;
  display: inline-block;
  position: relative;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--cherito-black);
  background-color: var(--cherito-primary);
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
  transition: all 500ms ease;
}
.donation-card-five__category::before, .donation-card-five__category::after {
  content: "";
  background-color: #ff9f93;
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}
.donation-card-five__category::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.donation-card-five__category::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.donation-card-five:hover .donation-card-five__category::before, .donation-card-five:hover .donation-card-five__category::after {
  width: calc(50% + 6px);
}
.donation-card-five__content {
  padding: 20px 20px 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
.donation-card-five__title {
  margin-bottom: 8px;
  font-size: 23px;
  color: var(--cherito-white, #ffffff);
  text-transform: capitalize;
}
.donation-card-five__title:hover {
  color: var(--cherito-primary);
}
.donation-card-five__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donation-card-five__title a:hover {
  background-size: 100% 1px;
}
.donation-card-five__text {
  margin-bottom: 0;
  color: var(--cherito-white);
  line-height: 25px;
}
.donation-card-five__progress {
  position: relative;
  padding: 62px 30px 24px;
  border-radius: 0px 0px 10px 10px;
  background-color: var(--cherito-white2);
}
.donation-card-five__progress__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.3;
  border-radius: inherit;
}
.donation-card-five .progress-box {
  position: relative;
  z-index: 1;
}
.donation-card-five .progress-box__bar {
  background-color: var(--cherito-white3);
}
.donation-card-five .progress-box__bar__inner::before {
  background-color: var(--cherito-primary);
}
.donation-card-five .progress-box__content {
  margin-top: 11px;
}
.donation-card-five .progress-box__number, .donation-card-five .progress-box__number::after {
  background-color: var(--cherito-primary);
}


.donations-five {
  position: relative;
/*  background-color: var(--cherito-white2);*/
}
/*.donations-five::after {
  content: "";
  width: 100%;
  height: 380px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--cherito-white, #ffffff);
  z-index: 1;
}*/
.donations-five__bg {
  width: 100%;
/*  height: calc(100% - 380px);*/
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  opacity: 0.5;
}
.donations-five .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 1400px) {
  .donations-five .container {
    max-width: 1600px;
  }
}



/*--------------------------------------------------------------
# Donation Details
--------------------------------------------------------------*/
.donation-details__card {
  margin-bottom: 31px;
}
.donation-details__card__text {
  margin: 0;
}
.donation-details .donation-card {
  margin-bottom: 41px;
  padding: 30px 30px 40px;
}
@media (max-width: 412px) {
  .donation-details .donation-card {
    padding: 25px;
  }
}
@media (max-width: 360px) {
  .donation-details .donation-card {
    padding: 20px;
  }
}
.donation-details .donation-card:hover .donation-card__image img {
  transform: scale(1);
}
.donation-details .donation-card .cherito-btn {
  background-color: var(--cherito-base, #E23B33);
}
.donation-details .donation-card .cherito-btn__hover {
  background-color: var(--cherito-black, #212226);
}
.donation-details .progress-box__inner {
  margin-top: 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .donation-details .progress-box__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.donation-details .progress-box__content {
  width: 100%;
  margin: 0;
  padding: 17px 20px 16px;
}
.donation-details .cherito-btn {
  flex-shrink: 0;
}
.donation-details__title {
  margin-bottom: 21px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.363;
}
@media (max-width: 430px) {
  .donation-details__title {
    font-size: 27px;
  }
}
.donation-details__summery {
  margin-bottom: 36px;
}
.donation-details__summery__text {
  margin-bottom: 25px;
  font-weight: 600;
}
.donation-details__summery__list {
  margin: 0;
}
.donation-details__summery__list li + li {
  margin-top: 6px;
}
.donation-details__summery__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: var(--cherito-black, #212226);
  font-weight: 700;
  line-height: 1.625;
}
.donation-details__summery__list__icon {
  position: relative;
  top: 5px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary, #F2B42B);
  border-radius: 50%;
}
.donation-details__summery__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.donation-details__donors__title {
  margin-bottom: 30px;
}
.donation-details__donors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
@media (max-width: 991px) {
  .donation-details__donors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.donation-details__donors__card {
  position: relative;
  border-radius: 10px;
}
.donation-details__donors__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 16px);
  background-color: var(--cherito-white2, #F4F0ED);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.donation-details__donors__card__content {
  position: relative;
  padding: 0px 20px 16px;
  text-align: center;
  z-index: 1;
}
.donation-details__donors__card__image {
  margin-bottom: 11px;
  text-align: center;
}
.donation-details__donors__card__image img {
  display: inline-block !important;
  width: 66px !important;
  height: 66px;
  border-radius: 50%;
}
.donation-details__donors__card__name, .donation-details__donors__card__amount {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.donation-details__donors__card__name {
  margin-bottom: 8px;
}
.donation-details__donors__card__amount {
  color: var(--cherito-base, #E23B33);
}
@media (max-width: 991px) {
  .donation-details--sidebar-left {
    padding-top: 136px;
  }
}
@media (max-width: 767px) {
  .donation-details--sidebar-left {
    padding-top: 116px;
  }
}
@media (max-width: 575px) {
  .donation-details--sidebar-left {
    padding-top: 96px;
  }
}

.donation-details-two__content__top {
  background-color: var(--cherito-white, #ffffff);
  box-shadow: 0px 4px 60px RGBA(var(--cherito-black2-rgb, 0, 0, 0), 0.1);
  border-radius: 10px;
}

.donation-details-area{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 25px;
}
.donation-details-area .donation-details-two__card__image{
  /*float: right;
  width: 300px;
  margin: 0 0 30px 30px;*/
}

.donation-details-two__card__image img {
  display: block;
  border-radius: 10px;
/*  margin: 20px 0 25px;*/
  width: 100%;
}
.donation-details-two__card__content {
  padding: 30px;
}
@media (max-width: 575px) {
  .donation-details-two__card__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 360px) {
  .donation-details-two__card__content {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.donation-details-two__card__content h2 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 1.333;
}
.donation-details-two__card__content h3{
  font-size: 24px;
  margin-bottom: 10px;
}
.donation-details-two__card__content b{
  font-weight: 600;
}
.donation-details-two__card__content strong{
  font-weight: 600;
}
.donation-details-two__card .progress-box__bar__inner {
  background-color: var(--cherito-base, #E23B33);
}
.donation-details-two__card .progress-box__bar__inner::before {
  width: 20px;
  height: 20px;
  right: -6px;
  background-color: RGBA(var(--cherito-black-rgb, 33, 34, 38), 0.2);
}
.donation-details-two__card .progress-box__bar__inner::after {
  width: 10px;
  height: 12px;
  right: -1px;
  background-color: var(--cherito-base, #E23B33);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.000000 13.000000"><g transform="translate(0.000000,13.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M54 209 c-86 -80 -60 -189 45 -189 121 0 156 99 65 186 l-55 53 -55 -50z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 11.000000 13.000000"><g transform="translate(0.000000,13.000000) scale(0.050000,-0.050000)" stroke="none"> <path d="M54 209 c-86 -80 -60 -189 45 -189 121 0 156 99 65 186 l-55 53 -55 -50z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
.donation-details-two__card .progress-box__number {
  right: -18px;
}
.donation-details-two__card .progress-box__content {
  margin-top: 27px;
  padding: 18px 23px 17px;
  background-color: var(--cherito-white2, #F4F0ED);
  border-radius: 10px;
}
@media (max-width: 375px) {
  .donation-details-two__card .progress-box__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.donation-details-two__card .progress-box__text {
  font-size: 16px;
  font-weight: 700;
}
.donation-details-two__card .progress-box__text__inner {
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-weight: 600;
}
.donation-details-two .donate-form {
  padding: 0px 40px 40px;
}
@media (max-width: 575px) {
  .donation-details-two .donate-form {
    padding: 0px 30px 30px;
  }
}
@media (max-width: 360px) {
  .donation-details-two .donate-form {
    padding: 0px 25px 25px;
  }
}
.donation-details-two .donate-form__amount {
  padding-top: 40px;
  border-top: 1px solid var(--cherito-white3, #E5DED9);
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid var(--cherito-white3, #E5DED9);
}
.donation-details-two .donate-form__info__top {
  display: block;
}
.donation-details-two__text {
  margin-bottom: 10px;
}
.donation-details-two__summery__title {
  margin-bottom: 21px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.363;
}
@media (max-width: 430px) {
  .donation-details-two__summery__title {
    font-size: 27px;
  }
}
.donation-details-two__summery__text {
  margin-bottom: 25px;
  font-weight: 600;
}
.donation-details-two__summery__list {
  margin: 0;
  padding: 0;
  margin-bottom: 10px;
}
.donation-details-two__summery__list li + li {
  margin-top: 6px;
}
.donation-details-two__summery__list li {
  position: relative;
  color: var(--cherito-black, #212226);
  list-style: none;
  padding-left: 28px;
}
.donation-details-two__summery__list li:before{
  position: absolute;
  content: '\f105';
  font-family: 'FontAwesome';
  color: #fff;
  left: 0;
  top: 5px;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  font-size: 10px;
}
.donation-details-two__summery__list__icon {
  position: relative;
  top: 5px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 8px;
  color: var(--cherito-white, #ffffff);
  background-color: var(--cherito-primary, #F2B42B);
  border-radius: 50%;
}
.donation-details-two__summery__list__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.donation-details-two__donors__title {
  margin-bottom: 30px;
}
.donation-details-two__donors__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 10px;
}
@media (max-width: 991px) {
  .donation-details-two__donors__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.donation-details-two__donors__card {
  position: relative;
  border-radius: 10px;
}
.donation-details-two__donors__card::after {
  content: "";
  width: 100%;
  height: calc(100% - 16px);
  background-color: var(--cherito-white2, #F4F0ED);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 10px;
}
.donation-details-two__donors__card__content {
  position: relative;
  padding: 0px 20px 16px;
  text-align: center;
  z-index: 1;
}
.donation-details-two__donors__card__image {
  margin-bottom: 11px;
  text-align: center;
}
.donation-details-two__donors__card__image img {
  display: inline-block !important;
  width: 66px !important;
  height: 66px;
  border-radius: 50%;
}
.donation-details-two__donors__card__name, .donation-details-two__donors__card__amount {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}
.donation-details-two__donors__card__name {
  margin-bottom: 8px;
}
.donation-details-two__donors__card__amount {
  color: var(--cherito-base, #E23B33);
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details-two--sidebar .form-one__group {
    grid-template-columns: repeat(1, 1fr);
  }
}

.sidebar-donation {
  margin-top: 16px;
}
@media (max-width: 991px) {
  .sidebar-donation {
    margin-top: 0;
  }
}
.sidebar-donation__single + .sidebar-donation__single {
  margin-top: 20px;
}
.sidebar-donation__single:not(:first-child) {
  padding: 35px 40px 40px;
  border-radius: 10px;
  background-color: var(--cherito-white, #ffffff);
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.07);
}
@media (max-width: 390px) {
  .sidebar-donation__single:not(:first-child) {
    padding: 25px 30px 30px;
  }
}
.sidebar-donation__posts__top-title {
  margin-bottom: 30px;
  padding-bottom: 25px;
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.083;
  border-bottom: 1px solid var(--cherito-base, #E23B33);
}
.sidebar-donation__posts__list {
  margin: 0;
}
.sidebar-donation__posts__item {
  display: flex;
  align-items: flex-start;
  gap: 20px 15px;
}
@media (max-width: 360px) {
  .sidebar-donation__posts__item {
    flex-direction: column;
  }
}
.sidebar-donation__posts__item:not(:last-of-type) {
  margin-bottom: 16px;
  padding-bottom: 15px;
  border-bottom: 1px solid RGBA(var(--cherito-black-rgb, 33, 34, 38), 0.15);
}
@media (max-width: 360px) {
  .sidebar-donation__posts__item:not(:last-of-type) {
    margin-bottom: 19px;
  }
}
.sidebar-donation__posts__image {
  width: 70px;
  flex-shrink: 0;
}
.sidebar-donation__posts__image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.sidebar-donation__posts__content {
  width: calc(100% - 70px);
}
@media (max-width: 360px) {
  .sidebar-donation__posts__content {
    margin: 0;
    width: 100%;
  }
}
.sidebar-donation__posts__meta {
  display: flex;
  gap: 13px;
  align-items: center;
  margin-bottom: 10px;
  font-family: var(--cherito-font, "Jost", sans-serif);
  color: var(--cherito-text, #727272);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
}
.sidebar-donation__posts__meta__icon {
  display: inline-flex;
  font-size: 16px;
  color: var(--cherito-base, #E23B33);
}
.sidebar-donation__posts__meta__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar-donation__posts__title {
  margin: 0;
  font-family: var(--cherito-font, "Jost", sans-serif);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}
.sidebar-donation__posts__title:hover {
  color: var(--cherito-base, #E23B33);
}
.sidebar-donation__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar-donation__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar-donation__social__title {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.25;
}

.sidebar-donation-two__single {
  padding: 30px 25px 25px;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 10px;
  box-shadow: 0px 0px 60px rgba(2, 2, 2, 0.1);
}
.sidebar-donation-two__single + .sidebar-donation-two__single {
  margin-top: 30px;
}
.sidebar-donation-two__title {
  position: relative;
  margin-bottom: 30px;
  padding-bottom: 20px;
  font-size: 28px;
  text-transform: capitalize;
  line-height: 1.083;
  border-bottom: 1px solid var(--cherito-base, #E23B33);
}
.sidebar-donation-two__categories-wrapper {
  padding-bottom: 25px;
}
.sidebar-donation-two__categories {
  margin: 0;
}
.sidebar-donation-two__categories-title {
  margin-bottom: 28px;
}
.sidebar-donation-two__categories li:not(:last-child) {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2d20791a;
}
.sidebar-donation-two__categories li{
  position: relative;
  padding-left: 30px;
}
.sidebar-donation-two__categories li a {
/*  position: relative;*/
  color: #000;
  line-height: 1.428;
  transition: all 500ms ease;
  font-size: 18px;
}
.sidebar-donation-two__categories li a:hover,
.sidebar-donation-two__categories li.active a {
  color: #ff9f93;
}
.sidebar-donation-two__categories li a .sidebar-donation-two__categories__icon {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 15px;
  color: #ff9f93;
  overflow: hidden;
}
.sidebar-donation-two__categories li a .sidebar-donation-two__categories__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.sidebar-donation-two__categories a:hover .sidebar-donation-two__categories__icon > * {
  animation: slideLeft 400ms;
}
.sidebar-donation-two__donation-title {
  margin-bottom: 78px;
}
.sidebar-donation-two .donation-card {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
}
.sidebar-donation-two .donation-card:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 68px;
  border-bottom: 1px solid var(--cherito-white3, #E5DED9);
}
.sidebar-donation-two .donation-card .cherito-btn {
  padding: 11.5px 20px 12.5px;
  color: var(--cherito-base, #E23B33);
  border-radius: 10px;
  background-color: var(--cherito-white2, #F4F0ED);
}
.sidebar-donation-two .donation-card .cherito-btn:hover {
  color: var(--cherito-white, #ffffff);
}
.sidebar-donation-two .donation-card .cherito-btn__hover {
  background-color: var(--cherito-base, #E23B33);
}
.sidebar-donation-two__contact {
  position: relative;
  padding: 30px 25px;
  background-color: var(--cherito-base, #E23B33);
  box-shadow: none;
}
.sidebar-donation-two__contact__content {
  position: relative;
  text-align: center;
  z-index: 2;
}
.sidebar-donation-two__contact__title {
  margin-bottom: 12px;
  font-size: 32px;
  color: var(--cherito-white, #ffffff);
  font-weight: 500;
  line-height: 1.25;
}
.service-border{
  margin: 20px 0;
  border-top: 1px dotted #ff9f939e;
}
.sidebar-donation-two__contact__text {
  margin-bottom: 18px;
  font-size: 18px;
  color: var(--cherito-white, #ffffff);
  line-height: 1.4;
}
.sidebar-donation-two .testimonials-six__bg{
  opacity: 0.18;
}
.sidebar-donation-two__contact .cherito-btn:hover {
  color: var(--cherito-black, #212226);
}
.sidebar-donation-two__contact .cherito-btn__hover {
  background-color: var(--cherito-white, #ffffff);
}
.sidebar-donation-two__contact__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.sidebar-donation-two__contact__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 4px;
  bottom: -41px;
}


/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-accordion {
  position: relative;
  z-index: 1;
}
.faq-accordion .accordion + .accordion {
  margin-top: 20px;
}
.faq-accordion .accordion-title {
  position: relative;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  cursor: pointer;
  border-radius: 50px;
  background: #fff2f0;
}
@media (max-width: 575px) {
  .faq-accordion .accordion-title {
    padding: 20px 25px 18px;
  }
}
.faq-accordion .accordion-title h4 {
  margin: 0;
  position: relative;
  font-size: 23px;
  color: var(--cherito-black, #212226);
  line-height: 1.444;
  transition: all 500ms ease;
}
.faq-accordion .accordion-title__box {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  transition: all 500ms ease;
}
.faq-accordion .accordion-title__box::after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: inherit;
  background-color: var(--cherito-white, #ffffff);
  transition: all 500ms ease;
}
.faq-accordion .active .accordion-title__box {
  background: var(--cherito-base, #E23B33);
}
.faq-accordion .accordion-content .inner {
  padding: 21px 26px 1px;
}
.faq-accordion .accordion-content p {
  margin: 0;
}

.faq-one {
  background-color: var(--cherito-white, #ffffff);
}
.faq-one__image {
  position: relative;
  display: table;
}
@media (max-width: 991px) {
  .faq-one__image {
    margin-bottom: 51px;
  }
}
.faq-one__image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.faq-one__info {
  width: 100%;
  position: relative;
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 1;
}
.faq-one__info__inner {
  margin: auto;
  display: table;
  padding: 45px 40px 28px;
  background-color: var(--cherito-primary);
  text-align: center;
  border-radius: 6px;
}
.faq-one__info__logo {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 50%;
  padding: 10px;
}
.faq-one__info__logo img {
  max-width: 100%;
  height: auto;
}
.faq-one__info__title {
  margin-bottom: 4px;
  font-size: 24px;
  color: var(--cherito-white, #ffffff);
  text-transform: capitalize;
  line-height: 1.4;
}
.faq-one__info__text {
  margin: 0;
  color: var(--cherito-white, #ffffff);
  line-height: 1.25;
}
.faq-one__info__text a {
  color: inherit;
  font-weight: 600;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.faq-one__info__text a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.gallery-page__filter__list li {
  padding: 11px 20px 12px;
}
.gallery-page__filter__list li.active {
  background-color: var(--cherito-black, #212226);
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-page__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  opacity: 1;
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
}
.gallery-page__card__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.gallery-page__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: RGBA(var(--cherito-white-rgb, 255, 255, 255), 0.2);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-page__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 430px) {
  .gallery-page__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
.gallery-page__card__hover .img-popup:hover {
  background-color: var(--cherito-white, #ffffff);
}
.gallery-page__card__hover__box {
  display: block;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: RGBA(var(--cherito-base-rgb, 226, 59, 51), 0.8);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}
.gallery-page__card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-page__card__hover__box--2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-page__card__hover__box--3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-page__card__hover__box--4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.gallery-page__card:hover .gallery-page__card__hover .img-popup {
  opacity: 1;
  transform: scale(1);
}
.gallery-page__card:hover .gallery-page__card__hover__box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.gallery-page__card__icon {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-page__card__icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 430px) {
  .gallery-page__card__icon {
    width: 20px;
    height: 20px;
  }
}
.gallery-page__card__icon::after, .gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-page__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.img-popup:hover .gallery-page__card__icon::before, .img-popup:hover .gallery-page__card__icon::after {
  background-color: var(--cherito-base, #E23B33);
}

.gallery-instagram {
  position: relative;
  z-index: 1;
}
.gallery-instagram--home2 {
  margin-bottom: -121px;
}
.gallery-instagram .container-fluid {
  max-width: 1800px;
}
.gallery-instagram__image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.gallery-instagram__image img {
  width: 100%;
  display: block;
  border-radius: 30px;
}
.gallery-instagram__image__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 30px;
  color: var(--cherito-white, #ffffff);
  background: rgba(var(--cherito-black-rgb, 33, 34, 38), 0.8);
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  border-radius: 30px;
  transition: all 400ms ease-in-out;
}
.gallery-instagram__image__link svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gallery-instagram__image__link > * {
  position: relative;
  z-index: 1;
  transition: all 500ms ease;
}
.gallery-instagram__image__link > *:hover {
  color: var(--cherito-base, #E23B33);
}
.gallery-instagram__image:hover .gallery-instagram__image__link {
  transform: scaleY(1);
}

.gallery-one {
/*  padding-bottom: 166px;*/
}
.gallery-one-inner{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.gallery-one__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-one__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  opacity: 1;
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
  aspect-ratio: 1/0.7;
  object-fit: cover;
}
.gallery-one__card__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.gallery-one__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: #38d1e0b8;
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-one__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 430px) {
  .gallery-one__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
.gallery-one__card__hover .img-popup:hover {
  background-color: var(--cherito-primary);
}
.gallery-one__card__hover__box {
  display: block;
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: rgba(var(--cherito-black-rgb), 0.8);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
  z-index: 1;
}
.gallery-one__card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-one__card__hover__box--4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.gallery-one__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.gallery-one__card:hover .gallery-one__card__hover .img-popup {
  opacity: 1;
  transform: scale(1);
}
.gallery-one__card:hover .gallery-one__card__hover__box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.gallery-one__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-one__card__icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 430px) {
  .gallery-one__card__icon {
    width: 20px;
    height: 20px;
  }
}
.gallery-one__card__icon::after, .gallery-one__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-one__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-two {
  margin-top: -120px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1400px) {
  .gallery-two .container {
    max-width: 1590px;
  }
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-two__card img {
  display: block;
  width: 100%;
  transform: scale(1);
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
}
.gallery-two__card__overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(var(--cherito-black-rgb), 0.8);
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.gallery-two__card:hover .gallery-two__card__overlay {
  height: 100%;
  top: 0;
}
.gallery-two__card__icon-box {
  display: inline-flex;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.3);
  font-size: 88px;
  color: var(--cherito-orange, #EF8442);
  z-index: 2;
  overflow: hidden;
  transition: all 500ms ease;
}
.gallery-two__card__icon-box svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gallery-two__card__icon-box:hover {
  color: var(--cherito-primary);
}
.gallery-two__card__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 22px;
  color: var(--cherito-primary);
  transition: all 500ms ease;
}
.gallery-two__card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.gallery-two__card__icon-box:hover .gallery-two__card__icon {
  color: var(--cherito-orange, #EF8442);
}
.gallery-two__card:hover .gallery-two__card__icon-box {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-three {
  background-color: var(--cherito-white6, #EFEFEF);
}
.gallery-three .container {
  margin-bottom: -119px;
}
@media (max-width: 1399px) {
  .gallery-three .container {
    margin-bottom: -200px;
  }
}
@media (min-width: 1400px) {
  .gallery-three .container {
    max-width: 1590px;
  }
}
.gallery-three__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-three__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  opacity: 1;
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
}
.gallery-three__card__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.gallery-three__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  background-color: rgba(var(--cherito-base-rgb), 0.5);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-three__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 430px) {
  .gallery-three__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
.gallery-three__card__hover .img-popup:hover {
  background-color: var(--cherito-base);
}
.gallery-three__card__hover__box {
  width: 20%;
  display: block;
  height: calc(100% + 4px);
  top: -2px;
  opacity: 1;
  position: absolute;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  background-color: rgba(var(--cherito-black-rgb), 0.6);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 1;
}
.gallery-three__card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-three__card__hover__box--2 {
  left: 20%;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.gallery-three__card__hover__box--3 {
  left: 40%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gallery-three__card__hover__box--4 {
  left: 60%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.gallery-three__card__hover__box--5 {
  left: 80%;
  -webkit-transition-delay: 3s;
  transition-delay: 0.3s;
}
.gallery-three__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.gallery-three__card:hover .gallery-three__card__hover .img-popup {
  opacity: 1;
  transform: scale(1);
}
.gallery-three__card:hover .gallery-three__card__hover__box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.gallery-three__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-three__card__icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 430px) {
  .gallery-three__card__icon {
    width: 20px;
    height: 20px;
  }
}
.gallery-three__card__icon::after, .gallery-three__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-three__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.gallery-four {
  background-color: var(--cherito-white, #ffffff);
}
.gallery-four .container {
  margin-bottom: -268px;
  position: relative;
  z-index: 3;
}
@media (min-width: 1600px) {
  .gallery-four .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.gallery-four__card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.gallery-four__card img {
  transform: scale(1);
  display: block;
  width: 100%;
  opacity: 1;
  border-radius: inherit;
  transition: transform 500ms ease, opacity 500ms ease;
}
.gallery-four__card__hover {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: inherit;
}
.gallery-four__card__hover .img-popup {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--cherito-white, #ffffff);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  z-index: 2;
  transition: all 500ms ease 200ms;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-four__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 430px) {
  .gallery-four__card__hover .img-popup {
    width: 55px;
    height: 55px;
  }
}
.gallery-four__card__hover .img-popup:hover {
  background-color: var(--cherito-base);
}
.gallery-four__card__hover__box {
  width: 20%;
  display: block;
  height: calc(100% + 4px);
  top: -2px;
  opacity: 1;
  position: absolute;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  background-color: rgba(var(--cherito-black-rgb), 0.6);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  z-index: 1;
}
.gallery-four__card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.gallery-four__card__hover__box--2 {
  left: 20%;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.gallery-four__card__hover__box--3 {
  left: 40%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.gallery-four__card__hover__box--4 {
  left: 60%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.gallery-four__card__hover__box--5 {
  left: 80%;
  -webkit-transition-delay: 3s;
  transition-delay: 0.3s;
}
.gallery-four__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}
.gallery-four__card:hover .gallery-four__card__hover .img-popup {
  opacity: 1;
  transform: scale(1);
}
.gallery-four__card:hover .gallery-four__card__hover__box {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.gallery-four__card__icon {
  width: 22px;
  height: 22px;
  display: block;
  position: relative;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .gallery-four__card__icon {
    width: 20px;
    height: 20px;
  }
}
@media (max-width: 430px) {
  .gallery-four__card__icon {
    width: 20px;
    height: 20px;
  }
}
.gallery-four__card__icon::after, .gallery-four__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--cherito-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-four__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-four__card .img-popup:hover .gallery-four__card__icon::before,
.gallery-four__card .img-popup:hover .gallery-four__card__icon::after {
  background-color: var(--cherito-white, #ffffff);
}
.gallery-four--home6 .container {
  margin-bottom: -1px;
  z-index: 0;
}
.gallery-four--home6 .gallery-four__card {
  border-radius: 10px 10px 0px 0px;
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-card {
  position: relative;
  width: 207px;
  height: 204px;
  padding: 33px 30px;
  text-align: center;
  border-radius: 102px;
  background-color: var(--cherito-white2, #F4F0ED);
  z-index: 1;
}
.funfact-card::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.7);
  opacity: 0;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  transition: transform 400ms ease, opacity 400ms ease;
}
.funfact-card:hover::before {
  opacity: 1;
  transform: scale(1);
}
.funfact-card__icon {
  display: inline-flex;
  font-size: 40px;
  color: transparent;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  background-clip: text;
  transition: all 500ms ease;
}
.funfact-card__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.funfact-card:hover .funfact-card__icon {
  -webkit-animation-name: wobble-horizontal-hover;
  animation-name: wobble-horizontal-hover;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.funfact-card__content {
  margin-top: 4px;
}
.funfact-card__count {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  line-height: 1.25;
  transition: all 500ms ease;
}
.funfact-card__text {
  margin: 0;
/*  font-family: var(--cherito-special-font, "Caveat", cursive);*/
  color: var(--cherito-base, #E23B33);
  font-weight: 500;
  line-height: 1.25;
  transition: all 500ms ease;
  font-size: 18px;
}
.funfact-card:hover .funfact-card__icon, .funfact-card:hover .funfact-card__count, .funfact-card:hover .funfact-card__text {
/*  color: var(--cherito-white, #ffffff);*/
}

.funfact-two {
  background-color: var(--cherito-white, #ffffff);
}
.funfact-two .row {
  --bs-gutter-x: 0;
}
.funfact-two__image {
  flex: 0 0 auto;
  width: 54.36%;
  border-radius: 10px 0px 0px 10px;
}
.funfact-two__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
.funfact-two__content {
  position: relative;
  flex: 0 0 auto;
  width: 45.64%;
  padding: 40px;
  background-color: var(--cherito-white2);
  border-radius: 0px 10px 10px 0px;
}
@media (max-width: 390px) {
  .funfact-two__content {
    padding: 40px 30px 30px;
  }
}
.funfact-two__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  z-index: 2;
}
@media (max-width: 1199px) {
  .funfact-two__grid {
    justify-items: center;
    grid-gap: 40px;
  }
}
@media (max-width: 991px) {
  .funfact-two__grid {
    grid-gap: 60px;
  }
}
@media (max-width: 575px) {
  .funfact-two__grid {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
}
.funfact-two__grid::before, .funfact-two__grid::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #38d1e095;
}
@media (max-width: 575px) {
  .funfact-two__grid::before, .funfact-two__grid::after {
    display: none;
  }
}
.funfact-two__grid::before {
  width: 1px;
  height: calc(100% - 86px);
}
@media (max-width: 1199px) {
  .funfact-two__grid::before {
    height: 100%;
  }
}
.funfact-two__grid::after {
  width: 100%;
  height: 1px;
}
.funfact-two .funfact-card {
  background-color: var(--cherito-white, #ffffff);
}
.funfact-two .funfact-card__icon {
  color: var(--cherito-primary);
}
.funfact-two__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 106px;
  height: 106px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #042b3c;
  z-index: 2;
  transition: all 500ms ease;
}
@media (max-width: 575px) {
  .funfact-two__logo {
    display: none;
  }
}
.funfact-two__logo__inner {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background-color: #fff;
  z-index: 1;
  transition: all 500ms ease;
}
.funfact-two__logo__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.6);
  opacity: 0;
  background-color: var(--cherito-white);
  transition: transform 400ms ease, opacity 400ms ease;
}
.funfact-two__logo img {
  max-width: 90%;
  height: auto;
  margin-top: -5px;
}
.funfact-two__content:hover .funfact-two__logo {
  background-color: var(--cherito-primary);
}
.funfact-two__content:hover .funfact-two__logo__inner::after {
  opacity: 1;
  transform: scale(1);
}


/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta-four {
  padding-top: 300px;
  background-color: var(--cherito-white, #ffffff);
}
.cta-four__inner {
  position: relative;
  padding-top: 181px;
}
.cta-four__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff7f6;
  border-radius: 10px;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 312.000000"><g transform="translate(0.000000,312.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M0 1560 l0 -1560 4500 0 4500 0 0 1560 0 1560 -4500 0 -4500 0 0 -1560z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 312.000000"><g transform="translate(0.000000,312.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M0 1560 l0 -1560 4500 0 4500 0 0 1560 0 1560 -4500 0 -4500 0 0 -1560z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 767px) {
  .cta-four__bg {
    display: none;
  }
}
.cta-four__image {
  max-width: 80%;
  height: auto;
  position: absolute;
  left: calc(50% - 5px);
  bottom: 0;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 991px) {
  .cta-four__image {
    left: 50%;
  }
}
.cta-four__content {
  position: relative;  
  padding: 45px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background-color: #042b3ce3;
  border-radius: 10px;
  z-index: 1;
}
.cta-four__title {
  margin: 0;
  font-size: 36px;
  color: var(--cherito-white, #ffffff);
  line-height: 1.34;
}
@media (max-width: 390px) {
  .cta-four__title {
    font-size: 26px;
  }
}
.cta-four__button {
/*  width: 362px;*/
/*  height: 167px;*/
  display: flex;
  align-items: center;
  flex-shrink: 0;
/*  background-color: #335e71;*/
/*  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 417.000000"><g transform="translate(0.000000,417.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2356 3965 c-11 -8 -38 -15 -60 -15 -60 0 -80 -17 -30 -25 45 -7 207 -35 244 -42 52 -10 -8 -23 -122 -27 -62 -2 -123 -4 -136 -5 -13 -1 -20 -5 -17 -11 4 -6 49 -10 108 -9 56 0 115 -4 131 -11 16 -6 42 -8 58 -5 22 5 28 3 28 -9 0 -29 -45 -41 -98 -28 -39 10 -131 16 -192 12 -8 0 -73 4 -145 10 -170 14 -195 14 -289 0 -69 -10 -80 -10 -88 4 -5 8 -29 18 -56 21 -26 4 -67 13 -91 21 -25 8 -69 14 -99 14 -30 0 -68 6 -85 14 -18 8 -69 16 -114 19 -63 3 -88 8 -104 23 -15 13 -34 18 -67 17 -58 -1 -213 -21 -220 -27 -2 -3 13 -7 34 -11 22 -3 75 -12 119 -20 44 -8 100 -17 125 -21 40 -6 42 -8 20 -15 -14 -4 -46 -10 -72 -14 -27 -3 -48 -10 -48 -14 0 -14 41 -21 132 -21 78 0 87 2 93 20 7 21 18 23 77 14 38 -7 43 -24 7 -24 -10 0 -19 -4 -19 -10 0 -5 6 -10 14 -10 8 0 16 -5 18 -11 3 -8 18 -8 58 1 41 9 62 9 84 0 26 -9 28 -13 15 -25 -20 -20 -122 -38 -169 -30 -35 6 -39 4 -42 -17 l-3 -23 -240 4 c-151 2 -253 8 -276 15 -44 15 -65 11 -48 -11 19 -22 -5 -33 -71 -33 -50 0 -59 -4 -96 -37 -23 -21 -60 -51 -83 -66 -22 -16 -41 -32 -41 -36 0 -15 78 -31 183 -38 93 -5 109 -9 128 -29 21 -22 21 -22 1 -33 -11 -6 -57 -13 -102 -17 -81 -7 -83 -8 -96 -39 -7 -18 -20 -35 -29 -38 -21 -9 -19 -22 7 -34 22 -9 21 -11 -20 -34 -36 -21 -42 -29 -42 -58 0 -32 -1 -33 -34 -27 -50 9 -82 -7 -96 -48 -14 -43 -5 -92 18 -101 15 -5 14 -9 -8 -26 -24 -18 -24 -20 -7 -33 10 -8 46 -17 80 -20 35 -4 69 -11 77 -16 17 -11 18 -10 -95 -35 -44 -10 -86 -19 -93 -21 -18 -5 -5 -24 17 -24 26 0 38 -18 48 -70 7 -39 12 -46 37 -50 40 -7 41 -21 3 -45 -45 -29 -42 -51 7 -48 37 3 38 2 31 -25 -3 -15 -8 -38 -9 -52 -2 -22 -8 -26 -51 -30 -60 -6 -68 -24 -21 -44 49 -20 39 -43 -22 -51 -64 -9 -74 -13 -69 -28 2 -8 20 -11 55 -9 40 3 52 1 52 -10 0 -16 -40 -38 -70 -38 -11 0 -34 -9 -52 -20 -18 -11 -41 -20 -50 -20 -10 0 -18 -5 -18 -11 0 -5 -13 -15 -30 -20 -16 -6 -30 -15 -30 -20 0 -19 41 -49 68 -49 33 -1 70 -26 56 -39 -5 -6 -29 -11 -54 -13 -25 -2 -44 -7 -43 -12 1 -6 32 -18 70 -29 89 -25 113 -35 113 -46 0 -5 -18 -10 -39 -9 -46 0 -135 -19 -171 -37 -14 -7 -44 -21 -67 -31 -48 -21 -48 -21 -29 -60 15 -27 9 -55 -14 -69 -6 -3 -10 -17 -10 -30 0 -30 55 -65 103 -65 40 0 59 -18 33 -32 -10 -6 -16 -22 -16 -48 0 -29 -5 -42 -20 -50 -30 -16 -42 -54 -28 -85 13 -28 39 -33 58 -10 18 21 33 19 82 -13 24 -16 65 -37 92 -48 48 -19 77 -46 64 -59 -4 -4 -76 -12 -160 -17 -159 -11 -198 -22 -198 -57 0 -40 14 -52 82 -72 l70 -21 26 31 c25 30 31 32 82 29 62 -3 70 -20 14 -28 -53 -7 -55 -28 -3 -32 23 -2 44 -8 46 -13 2 -6 -20 -21 -48 -34 l-51 -23 49 -28 c43 -25 60 -45 89 -108 1 -2 29 -10 63 -18 55 -12 105 -28 214 -67 20 -7 46 -23 57 -35 29 -31 96 -47 145 -34 58 15 86 -1 106 -60 8 -26 18 -51 22 -54 3 -3 54 0 112 6 74 9 109 10 116 3 6 -6 27 -9 47 -6 21 3 69 -3 107 -12 64 -16 145 -29 250 -40 135 -16 185 -29 185 -50 0 -13 -76 -14 -117 -1 -32 10 -188 27 -272 29 -53 1 -76 -2 -79 -11 -3 -9 10 -12 48 -11 44 2 55 -1 69 -20 16 -21 24 -22 116 -20 55 1 118 -3 140 -9 22 -6 71 -13 108 -16 38 -2 75 -10 83 -17 11 -9 17 -9 29 1 12 10 102 13 370 15 302 1 357 4 372 17 12 10 42 16 91 17 77 1 106 -8 134 -43 l17 -21 10 29 c8 19 16 26 27 22 9 -3 29 -6 45 -6 17 0 36 -8 46 -20 10 -11 23 -20 31 -20 7 0 27 -7 44 -16 22 -11 33 -13 41 -5 6 6 21 11 34 11 13 0 28 9 35 20 17 26 28 25 28 -2 -1 -45 -39 -59 -178 -64 -70 -3 -133 -7 -139 -9 -58 -19 97 -44 296 -48 130 -2 142 5 90 53 -26 23 -31 32 -21 42 22 22 14 48 -13 48 -31 0 -33 18 -2 25 12 3 92 4 177 1 85 -3 226 -5 313 -5 89 0 157 -4 157 -9 0 -17 -26 -31 -101 -55 -58 -18 -74 -27 -74 -42 -1 -48 -34 -59 -71 -24 -35 33 -58 19 -50 -30 4 -27 2 -41 -7 -44 -6 -2 -9 -8 -5 -12 3 -4 24 5 45 19 47 32 63 33 63 2 0 -29 18 -44 26 -22 10 25 43 19 54 -9 13 -34 44 -32 70 5 12 16 33 33 48 37 14 3 41 15 59 25 46 28 77 21 78 -17 0 -30 0 -30 62 -33 72 -3 111 11 92 34 -6 8 -22 14 -34 14 -25 0 -50 24 -41 38 11 19 81 21 136 6 30 -9 85 -15 123 -14 75 2 94 -14 62 -50 -9 -10 -14 -23 -11 -28 6 -11 112 9 176 33 25 9 77 18 115 20 39 1 82 6 96 10 15 3 45 1 68 -5 23 -6 115 -13 205 -15 110 -2 171 -8 184 -16 17 -11 25 -11 45 0 18 10 49 11 113 7 49 -3 136 -5 194 -4 187 5 294 3 317 -5 17 -6 27 -3 40 12 24 29 78 28 94 0 l11 -21 22 21 c16 15 35 21 67 21 53 0 73 -14 58 -42 -7 -14 -21 -18 -58 -18 -31 0 -53 -5 -61 -15 -7 -8 -27 -15 -45 -15 -31 0 -45 -13 -45 -41 0 -5 35 -9 78 -8 123 2 263 -8 275 -20 16 -16 59 -13 97 5 30 16 36 16 64 1 48 -24 91 -30 105 -14 9 11 34 14 110 11 73 -3 102 0 110 9 6 8 10 44 8 83 l-2 69 35 7 c19 4 58 12 87 18 76 16 268 9 268 -9 0 -21 -46 -31 -170 -37 -60 -2 -114 -9 -119 -14 -14 -14 1 -39 29 -50 30 -11 335 4 363 18 23 12 163 25 287 27 174 3 318 21 335 43 12 14 30 19 70 20 30 1 87 5 127 9 61 7 77 13 108 41 27 23 35 37 30 50 -6 16 -7 16 -19 -1 -28 -37 -76 -17 -76 32 0 29 56 63 91 56 31 -7 69 15 69 39 0 7 20 32 45 56 37 36 45 51 45 81 0 22 8 47 21 62 11 15 23 42 26 61 3 19 16 45 29 57 35 33 31 62 -11 85 -40 21 -40 20 -19 69 9 22 13 49 9 66 -4 18 1 44 13 72 11 25 23 63 27 86 4 25 14 45 26 51 33 18 23 48 -21 66 -47 19 -53 51 -9 46 50 -6 44 54 -11 111 -26 27 -28 34 -23 78 6 48 5 49 -21 49 -34 0 -45 26 -20 45 64 46 61 41 38 67 -28 31 -35 62 -18 87 8 11 10 22 5 25 -6 4 -6 18 -1 35 10 34 5 41 -27 41 -16 0 -23 6 -23 20 0 12 -7 31 -16 45 -14 22 -14 24 5 35 35 18 26 46 -24 70 -25 12 -45 26 -45 32 0 5 -13 23 -30 38 -26 24 -28 29 -15 40 24 20 17 53 -17 82 -28 22 -31 30 -22 45 6 10 20 19 32 21 32 5 44 27 48 92 l4 60 -48 0 c-26 0 -63 3 -83 6 -35 6 -37 5 -44 -25 -8 -37 -37 -41 -75 -11 -23 19 -24 21 -7 31 9 5 17 16 17 24 0 8 18 24 40 35 22 11 40 27 40 35 0 19 40 29 101 23 31 -3 53 -1 59 7 12 14 3 25 -19 25 -9 0 -33 11 -53 25 l-36 24 -16 -24 c-20 -30 -30 -31 -53 -6 -16 17 -25 18 -73 10 -54 -9 -146 -4 -198 11 -28 8 -26 9 23 25 8 2 15 14 15 25 0 29 -43 26 -74 -5 -25 -25 -27 -25 -138 -19 -152 9 -160 13 -156 66 l3 43 150 0 c137 0 153 2 187 22 21 12 40 18 43 12 10 -15 41 -10 60 11 10 11 26 20 36 20 27 0 49 11 49 25 0 18 -34 45 -57 45 -12 0 -23 6 -26 13 -3 10 -9 10 -26 0 -11 -7 -50 -13 -85 -13 -44 0 -69 -5 -80 -15 -17 -18 -43 -20 -48 -3 -2 6 -21 11 -43 10 -27 -1 -44 4 -57 18 -11 11 -32 20 -48 20 -16 0 -51 5 -77 10 -85 19 -152 106 -76 98 20 -2 28 2 28 12 0 19 -88 43 -132 35 -36 -6 -42 1 -17 20 14 9 15 21 10 59 -7 46 -9 48 -34 41 -15 -5 -76 -10 -137 -12 -121 -4 -158 6 -163 45 -4 26 35 46 56 29 9 -7 34 -6 82 2 60 11 72 11 92 -3 17 -13 49 -16 144 -16 83 0 124 -4 126 -11 2 -7 24 -12 48 -13 54 -1 62 21 15 43 -16 8 -36 20 -43 28 -9 9 -47 14 -120 15 -197 3 -227 5 -275 18 -43 12 -51 12 -77 -3 -27 -17 -30 -17 -47 1 -27 28 -52 34 -89 20 -29 -10 -36 -9 -53 6 -24 22 -41 13 -41 -21 0 -24 2 -25 40 -20 34 4 45 1 67 -19 14 -13 30 -24 34 -24 18 0 8 -30 -15 -46 -20 -13 -42 -14 -118 -10 -116 8 -300 47 -294 62 6 16 -14 34 -40 34 -12 0 -33 -10 -48 -21 l-27 -21 -20 21 c-12 12 -32 21 -49 21 -46 0 -70 31 -70 90 0 53 -10 61 -48 40 -9 -5 -29 -14 -44 -20 -35 -12 -36 -28 -2 -40 14 -6 24 -16 22 -23 -7 -19 -47 -21 -54 -2 -10 24 -72 46 -110 39 -25 -5 -40 -1 -60 15 -29 23 -83 28 -101 10 -16 -16 -53 -1 -53 21 0 11 7 23 16 28 22 12 11 28 -22 35 -18 3 -22 1 -15 -6 17 -17 13 -27 -14 -37 -15 -6 -25 -17 -25 -29 0 -23 -37 -38 -53 -22 -7 7 -6 15 3 26 10 13 9 15 -6 15 -11 0 -26 -4 -34 -10 -9 -6 -19 -5 -29 3 -19 16 -338 24 -354 8 -7 -7 -2 -13 17 -21 30 -11 30 -36 0 -33 -70 7 -114 17 -114 25 0 5 12 7 28 6 21 -2 28 2 30 17 2 18 -6 22 -65 32 -37 7 -90 15 -118 19 -27 4 -55 10 -60 15 -12 9 -133 28 -255 39 -84 7 -110 1 -110 -24 0 -20 -92 -7 -148 21 l-53 26 -38 -22 c-46 -25 -51 -26 -51 -6 0 21 -26 19 -50 -5 -19 -19 -22 -19 -56 -5 -47 19 -103 19 -165 -1 -48 -16 -99 -13 -99 6 0 6 11 10 24 10 14 0 28 5 31 10 10 17 -69 11 -94 -7 -20 -13 -29 -14 -57 -4 -28 10 -38 9 -64 -4 -19 -10 -50 -15 -77 -14 -33 2 -47 -1 -54 -13 -11 -20 -69 -17 -123 6 -22 9 -61 17 -87 18 -37 0 -53 6 -71 25 -20 21 -29 23 -68 18 -192 -25 -633 3 -685 43 -18 14 -47 18 -166 20 -128 3 -150 6 -196 28 -59 28 -80 29 -107 9z m259 -95 c-3 -5 -12 -10 -20 -10 -8 0 -17 5 -20 10 -4 6 5 10 20 10 15 0 24 -4 20 -10z m4164 -3330 c12 -1 11 -5 -8 -20 -16 -14 -38 -20 -72 -20 -38 0 -51 -4 -59 -20 -12 -23 -40 -27 -40 -5 0 8 -14 22 -31 31 -18 9 -28 19 -23 24 10 10 141 19 188 13 16 -1 36 -3 45 -3z m128 -43 c10 -11 -9 -27 -32 -27 -35 0 -77 18 -70 30 6 10 91 7 102 -3z"/> <path d="M2655 3971 c-11 -18 5 -31 36 -31 24 0 30 4 27 18 -4 19 -52 29 -63 13z"/> <path d="M2894 3969 c-13 -21 35 -51 70 -43 59 12 61 45 3 42 -18 -1 -39 2 -48 6 -10 4 -20 2 -25 -5z"/> <path d="M1384 3938 c-9 -15 32 -48 60 -48 11 0 28 4 36 10 11 7 9 11 -12 19 -14 5 -29 15 -33 20 -8 15 -42 14 -51 -1z"/> <path d="M1620 3926 c0 -20 26 -27 71 -20 23 4 39 12 39 20 0 16 -26 19 -35 4 -4 -7 -12 -7 -25 0 -27 14 -50 12 -50 -4z"/> <path d="M6804 3649 c-10 -17 13 -36 27 -22 12 12 4 33 -11 33 -5 0 -12 -5 -16 -11z"/> <path d="M8176 3641 c-3 -5 0 -11 8 -14 15 -6 26 1 26 15 0 11 -27 10 -34 -1z"/> <path d="M7917 3623 c-4 -3 -7 -15 -7 -25 0 -17 5 -19 33 -12 17 3 41 10 52 14 18 7 18 9 -8 19 -32 12 -60 14 -70 4z"/> <path d="M7785 3611 c-7 -12 12 -24 25 -16 11 7 4 25 -10 25 -5 0 -11 -4 -15 -9z"/> <path d="M7890 3550 c0 -19 20 -27 33 -13 8 7 -11 33 -24 33 -5 0 -9 -9 -9 -20z"/> <path d="M8280 3540 c0 -5 9 -10 19 -10 11 0 23 5 26 10 4 6 -5 10 -19 10 -14 0 -26 -4 -26 -10z"/> <path d="M7515 3431 c-7 -12 12 -24 25 -16 11 7 4 25 -10 25 -5 0 -11 -4 -15 -9z"/> <path d="M7781 3341 c-9 -6 -10 -11 -2 -15 6 -4 11 -18 11 -32 0 -17 10 -30 33 -44 39 -24 51 -21 54 11 5 44 -63 101 -96 80z"/> <path d="M8138 3297 c-31 -25 -35 -39 -15 -55 20 -17 68 27 61 56 -8 27 -12 27 -46 -1z"/> <path d="M8401 2951 c-8 -5 -9 -11 -3 -15 13 -8 42 3 42 15 0 11 -21 11 -39 0z"/> <path d="M86 1645 c-19 -19 -20 -27 -5 -42 17 -17 71 12 67 35 -4 23 -42 27 -62 7z"/> <path d="M8760 1581 c0 -12 5 -21 10 -21 6 0 10 6 10 14 0 8 -4 18 -10 21 -5 3 -10 -3 -10 -14z"/> <path d="M145 1220 c-7 -12 2 -30 16 -30 12 0 12 27 0 35 -5 3 -12 1 -16 -5z"/> <path d="M746 803 c-11 -11 -6 -23 9 -23 8 0 15 4 15 9 0 13 -16 22 -24 14z"/> <path d="M895 791 c-7 -12 31 -25 45 -16 5 3 10 10 10 16 0 12 -47 12 -55 0z"/> <path d="M3528 603 c-75 -31 -36 -44 122 -40 84 2 105 6 105 17 0 11 -7 14 -25 10 -55 -11 -132 -4 -142 13 -11 20 -13 20 -60 0z"/> <path d="M968 599 c-29 -16 -21 -29 17 -29 33 0 35 2 25 20 -12 23 -18 24 -42 9z"/> <path d="M8574 576 c-8 -22 2 -46 21 -46 19 0 20 34 0 50 -12 10 -16 9 -21 -4z"/> <path d="M3518 508 c-42 -22 -45 -30 -24 -48 12 -9 22 -7 48 12 42 29 50 41 35 50 -16 10 -16 10 -59 -14z"/> <path d="M3447 473 c-12 -11 -8 -23 8 -23 8 0 15 7 15 15 0 16 -12 20 -23 8z"/> <path d="M4400 461 c0 -25 72 -42 85 -20 9 14 7 16 -42 24 -28 4 -43 3 -43 -4z"/> <path d="M7028 379 c-25 -14 -22 -48 4 -58 13 -4 38 -4 56 1 27 8 36 6 46 -7 22 -31 110 4 91 36 -5 7 -24 9 -54 5 -39 -5 -48 -3 -59 14 -13 22 -55 26 -84 9z"/> <path d="M6012 358 c-39 -24 -30 -43 16 -33 34 7 57 29 47 45 -9 15 -26 12 -63 -12z"/> <path d="M7430 320 c-13 -9 -13 -11 0 -20 21 -14 44 -8 48 13 4 19 -23 23 -48 7z"/> <path d="M5756 296 c-9 -15 -12 -27 -6 -31 12 -8 59 26 60 43 0 21 -37 13 -54 -12z"/> <path d="M7780 310 c0 -5 11 -10 25 -10 14 0 25 5 25 10 0 6 -11 10 -25 10 -14 0 -25 -4 -25 -10z"/> <path d="M5650 275 c0 -10 7 -15 18 -13 21 4 19 22 -2 26 -10 2 -16 -3 -16 -13z"/> </g> </svg>');*/
/*  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 417.000000"><g transform="translate(0.000000,417.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M2356 3965 c-11 -8 -38 -15 -60 -15 -60 0 -80 -17 -30 -25 45 -7 207 -35 244 -42 52 -10 -8 -23 -122 -27 -62 -2 -123 -4 -136 -5 -13 -1 -20 -5 -17 -11 4 -6 49 -10 108 -9 56 0 115 -4 131 -11 16 -6 42 -8 58 -5 22 5 28 3 28 -9 0 -29 -45 -41 -98 -28 -39 10 -131 16 -192 12 -8 0 -73 4 -145 10 -170 14 -195 14 -289 0 -69 -10 -80 -10 -88 4 -5 8 -29 18 -56 21 -26 4 -67 13 -91 21 -25 8 -69 14 -99 14 -30 0 -68 6 -85 14 -18 8 -69 16 -114 19 -63 3 -88 8 -104 23 -15 13 -34 18 -67 17 -58 -1 -213 -21 -220 -27 -2 -3 13 -7 34 -11 22 -3 75 -12 119 -20 44 -8 100 -17 125 -21 40 -6 42 -8 20 -15 -14 -4 -46 -10 -72 -14 -27 -3 -48 -10 -48 -14 0 -14 41 -21 132 -21 78 0 87 2 93 20 7 21 18 23 77 14 38 -7 43 -24 7 -24 -10 0 -19 -4 -19 -10 0 -5 6 -10 14 -10 8 0 16 -5 18 -11 3 -8 18 -8 58 1 41 9 62 9 84 0 26 -9 28 -13 15 -25 -20 -20 -122 -38 -169 -30 -35 6 -39 4 -42 -17 l-3 -23 -240 4 c-151 2 -253 8 -276 15 -44 15 -65 11 -48 -11 19 -22 -5 -33 -71 -33 -50 0 -59 -4 -96 -37 -23 -21 -60 -51 -83 -66 -22 -16 -41 -32 -41 -36 0 -15 78 -31 183 -38 93 -5 109 -9 128 -29 21 -22 21 -22 1 -33 -11 -6 -57 -13 -102 -17 -81 -7 -83 -8 -96 -39 -7 -18 -20 -35 -29 -38 -21 -9 -19 -22 7 -34 22 -9 21 -11 -20 -34 -36 -21 -42 -29 -42 -58 0 -32 -1 -33 -34 -27 -50 9 -82 -7 -96 -48 -14 -43 -5 -92 18 -101 15 -5 14 -9 -8 -26 -24 -18 -24 -20 -7 -33 10 -8 46 -17 80 -20 35 -4 69 -11 77 -16 17 -11 18 -10 -95 -35 -44 -10 -86 -19 -93 -21 -18 -5 -5 -24 17 -24 26 0 38 -18 48 -70 7 -39 12 -46 37 -50 40 -7 41 -21 3 -45 -45 -29 -42 -51 7 -48 37 3 38 2 31 -25 -3 -15 -8 -38 -9 -52 -2 -22 -8 -26 -51 -30 -60 -6 -68 -24 -21 -44 49 -20 39 -43 -22 -51 -64 -9 -74 -13 -69 -28 2 -8 20 -11 55 -9 40 3 52 1 52 -10 0 -16 -40 -38 -70 -38 -11 0 -34 -9 -52 -20 -18 -11 -41 -20 -50 -20 -10 0 -18 -5 -18 -11 0 -5 -13 -15 -30 -20 -16 -6 -30 -15 -30 -20 0 -19 41 -49 68 -49 33 -1 70 -26 56 -39 -5 -6 -29 -11 -54 -13 -25 -2 -44 -7 -43 -12 1 -6 32 -18 70 -29 89 -25 113 -35 113 -46 0 -5 -18 -10 -39 -9 -46 0 -135 -19 -171 -37 -14 -7 -44 -21 -67 -31 -48 -21 -48 -21 -29 -60 15 -27 9 -55 -14 -69 -6 -3 -10 -17 -10 -30 0 -30 55 -65 103 -65 40 0 59 -18 33 -32 -10 -6 -16 -22 -16 -48 0 -29 -5 -42 -20 -50 -30 -16 -42 -54 -28 -85 13 -28 39 -33 58 -10 18 21 33 19 82 -13 24 -16 65 -37 92 -48 48 -19 77 -46 64 -59 -4 -4 -76 -12 -160 -17 -159 -11 -198 -22 -198 -57 0 -40 14 -52 82 -72 l70 -21 26 31 c25 30 31 32 82 29 62 -3 70 -20 14 -28 -53 -7 -55 -28 -3 -32 23 -2 44 -8 46 -13 2 -6 -20 -21 -48 -34 l-51 -23 49 -28 c43 -25 60 -45 89 -108 1 -2 29 -10 63 -18 55 -12 105 -28 214 -67 20 -7 46 -23 57 -35 29 -31 96 -47 145 -34 58 15 86 -1 106 -60 8 -26 18 -51 22 -54 3 -3 54 0 112 6 74 9 109 10 116 3 6 -6 27 -9 47 -6 21 3 69 -3 107 -12 64 -16 145 -29 250 -40 135 -16 185 -29 185 -50 0 -13 -76 -14 -117 -1 -32 10 -188 27 -272 29 -53 1 -76 -2 -79 -11 -3 -9 10 -12 48 -11 44 2 55 -1 69 -20 16 -21 24 -22 116 -20 55 1 118 -3 140 -9 22 -6 71 -13 108 -16 38 -2 75 -10 83 -17 11 -9 17 -9 29 1 12 10 102 13 370 15 302 1 357 4 372 17 12 10 42 16 91 17 77 1 106 -8 134 -43 l17 -21 10 29 c8 19 16 26 27 22 9 -3 29 -6 45 -6 17 0 36 -8 46 -20 10 -11 23 -20 31 -20 7 0 27 -7 44 -16 22 -11 33 -13 41 -5 6 6 21 11 34 11 13 0 28 9 35 20 17 26 28 25 28 -2 -1 -45 -39 -59 -178 -64 -70 -3 -133 -7 -139 -9 -58 -19 97 -44 296 -48 130 -2 142 5 90 53 -26 23 -31 32 -21 42 22 22 14 48 -13 48 -31 0 -33 18 -2 25 12 3 92 4 177 1 85 -3 226 -5 313 -5 89 0 157 -4 157 -9 0 -17 -26 -31 -101 -55 -58 -18 -74 -27 -74 -42 -1 -48 -34 -59 -71 -24 -35 33 -58 19 -50 -30 4 -27 2 -41 -7 -44 -6 -2 -9 -8 -5 -12 3 -4 24 5 45 19 47 32 63 33 63 2 0 -29 18 -44 26 -22 10 25 43 19 54 -9 13 -34 44 -32 70 5 12 16 33 33 48 37 14 3 41 15 59 25 46 28 77 21 78 -17 0 -30 0 -30 62 -33 72 -3 111 11 92 34 -6 8 -22 14 -34 14 -25 0 -50 24 -41 38 11 19 81 21 136 6 30 -9 85 -15 123 -14 75 2 94 -14 62 -50 -9 -10 -14 -23 -11 -28 6 -11 112 9 176 33 25 9 77 18 115 20 39 1 82 6 96 10 15 3 45 1 68 -5 23 -6 115 -13 205 -15 110 -2 171 -8 184 -16 17 -11 25 -11 45 0 18 10 49 11 113 7 49 -3 136 -5 194 -4 187 5 294 3 317 -5 17 -6 27 -3 40 12 24 29 78 28 94 0 l11 -21 22 21 c16 15 35 21 67 21 53 0 73 -14 58 -42 -7 -14 -21 -18 -58 -18 -31 0 -53 -5 -61 -15 -7 -8 -27 -15 -45 -15 -31 0 -45 -13 -45 -41 0 -5 35 -9 78 -8 123 2 263 -8 275 -20 16 -16 59 -13 97 5 30 16 36 16 64 1 48 -24 91 -30 105 -14 9 11 34 14 110 11 73 -3 102 0 110 9 6 8 10 44 8 83 l-2 69 35 7 c19 4 58 12 87 18 76 16 268 9 268 -9 0 -21 -46 -31 -170 -37 -60 -2 -114 -9 -119 -14 -14 -14 1 -39 29 -50 30 -11 335 4 363 18 23 12 163 25 287 27 174 3 318 21 335 43 12 14 30 19 70 20 30 1 87 5 127 9 61 7 77 13 108 41 27 23 35 37 30 50 -6 16 -7 16 -19 -1 -28 -37 -76 -17 -76 32 0 29 56 63 91 56 31 -7 69 15 69 39 0 7 20 32 45 56 37 36 45 51 45 81 0 22 8 47 21 62 11 15 23 42 26 61 3 19 16 45 29 57 35 33 31 62 -11 85 -40 21 -40 20 -19 69 9 22 13 49 9 66 -4 18 1 44 13 72 11 25 23 63 27 86 4 25 14 45 26 51 33 18 23 48 -21 66 -47 19 -53 51 -9 46 50 -6 44 54 -11 111 -26 27 -28 34 -23 78 6 48 5 49 -21 49 -34 0 -45 26 -20 45 64 46 61 41 38 67 -28 31 -35 62 -18 87 8 11 10 22 5 25 -6 4 -6 18 -1 35 10 34 5 41 -27 41 -16 0 -23 6 -23 20 0 12 -7 31 -16 45 -14 22 -14 24 5 35 35 18 26 46 -24 70 -25 12 -45 26 -45 32 0 5 -13 23 -30 38 -26 24 -28 29 -15 40 24 20 17 53 -17 82 -28 22 -31 30 -22 45 6 10 20 19 32 21 32 5 44 27 48 92 l4 60 -48 0 c-26 0 -63 3 -83 6 -35 6 -37 5 -44 -25 -8 -37 -37 -41 -75 -11 -23 19 -24 21 -7 31 9 5 17 16 17 24 0 8 18 24 40 35 22 11 40 27 40 35 0 19 40 29 101 23 31 -3 53 -1 59 7 12 14 3 25 -19 25 -9 0 -33 11 -53 25 l-36 24 -16 -24 c-20 -30 -30 -31 -53 -6 -16 17 -25 18 -73 10 -54 -9 -146 -4 -198 11 -28 8 -26 9 23 25 8 2 15 14 15 25 0 29 -43 26 -74 -5 -25 -25 -27 -25 -138 -19 -152 9 -160 13 -156 66 l3 43 150 0 c137 0 153 2 187 22 21 12 40 18 43 12 10 -15 41 -10 60 11 10 11 26 20 36 20 27 0 49 11 49 25 0 18 -34 45 -57 45 -12 0 -23 6 -26 13 -3 10 -9 10 -26 0 -11 -7 -50 -13 -85 -13 -44 0 -69 -5 -80 -15 -17 -18 -43 -20 -48 -3 -2 6 -21 11 -43 10 -27 -1 -44 4 -57 18 -11 11 -32 20 -48 20 -16 0 -51 5 -77 10 -85 19 -152 106 -76 98 20 -2 28 2 28 12 0 19 -88 43 -132 35 -36 -6 -42 1 -17 20 14 9 15 21 10 59 -7 46 -9 48 -34 41 -15 -5 -76 -10 -137 -12 -121 -4 -158 6 -163 45 -4 26 35 46 56 29 9 -7 34 -6 82 2 60 11 72 11 92 -3 17 -13 49 -16 144 -16 83 0 124 -4 126 -11 2 -7 24 -12 48 -13 54 -1 62 21 15 43 -16 8 -36 20 -43 28 -9 9 -47 14 -120 15 -197 3 -227 5 -275 18 -43 12 -51 12 -77 -3 -27 -17 -30 -17 -47 1 -27 28 -52 34 -89 20 -29 -10 -36 -9 -53 6 -24 22 -41 13 -41 -21 0 -24 2 -25 40 -20 34 4 45 1 67 -19 14 -13 30 -24 34 -24 18 0 8 -30 -15 -46 -20 -13 -42 -14 -118 -10 -116 8 -300 47 -294 62 6 16 -14 34 -40 34 -12 0 -33 -10 -48 -21 l-27 -21 -20 21 c-12 12 -32 21 -49 21 -46 0 -70 31 -70 90 0 53 -10 61 -48 40 -9 -5 -29 -14 -44 -20 -35 -12 -36 -28 -2 -40 14 -6 24 -16 22 -23 -7 -19 -47 -21 -54 -2 -10 24 -72 46 -110 39 -25 -5 -40 -1 -60 15 -29 23 -83 28 -101 10 -16 -16 -53 -1 -53 21 0 11 7 23 16 28 22 12 11 28 -22 35 -18 3 -22 1 -15 -6 17 -17 13 -27 -14 -37 -15 -6 -25 -17 -25 -29 0 -23 -37 -38 -53 -22 -7 7 -6 15 3 26 10 13 9 15 -6 15 -11 0 -26 -4 -34 -10 -9 -6 -19 -5 -29 3 -19 16 -338 24 -354 8 -7 -7 -2 -13 17 -21 30 -11 30 -36 0 -33 -70 7 -114 17 -114 25 0 5 12 7 28 6 21 -2 28 2 30 17 2 18 -6 22 -65 32 -37 7 -90 15 -118 19 -27 4 -55 10 -60 15 -12 9 -133 28 -255 39 -84 7 -110 1 -110 -24 0 -20 -92 -7 -148 21 l-53 26 -38 -22 c-46 -25 -51 -26 -51 -6 0 21 -26 19 -50 -5 -19 -19 -22 -19 -56 -5 -47 19 -103 19 -165 -1 -48 -16 -99 -13 -99 6 0 6 11 10 24 10 14 0 28 5 31 10 10 17 -69 11 -94 -7 -20 -13 -29 -14 -57 -4 -28 10 -38 9 -64 -4 -19 -10 -50 -15 -77 -14 -33 2 -47 -1 -54 -13 -11 -20 -69 -17 -123 6 -22 9 -61 17 -87 18 -37 0 -53 6 -71 25 -20 21 -29 23 -68 18 -192 -25 -633 3 -685 43 -18 14 -47 18 -166 20 -128 3 -150 6 -196 28 -59 28 -80 29 -107 9z m259 -95 c-3 -5 -12 -10 -20 -10 -8 0 -17 5 -20 10 -4 6 5 10 20 10 15 0 24 -4 20 -10z m4164 -3330 c12 -1 11 -5 -8 -20 -16 -14 -38 -20 -72 -20 -38 0 -51 -4 -59 -20 -12 -23 -40 -27 -40 -5 0 8 -14 22 -31 31 -18 9 -28 19 -23 24 10 10 141 19 188 13 16 -1 36 -3 45 -3z m128 -43 c10 -11 -9 -27 -32 -27 -35 0 -77 18 -70 30 6 10 91 7 102 -3z"/> <path d="M2655 3971 c-11 -18 5 -31 36 -31 24 0 30 4 27 18 -4 19 -52 29 -63 13z"/> <path d="M2894 3969 c-13 -21 35 -51 70 -43 59 12 61 45 3 42 -18 -1 -39 2 -48 6 -10 4 -20 2 -25 -5z"/> <path d="M1384 3938 c-9 -15 32 -48 60 -48 11 0 28 4 36 10 11 7 9 11 -12 19 -14 5 -29 15 -33 20 -8 15 -42 14 -51 -1z"/> <path d="M1620 3926 c0 -20 26 -27 71 -20 23 4 39 12 39 20 0 16 -26 19 -35 4 -4 -7 -12 -7 -25 0 -27 14 -50 12 -50 -4z"/> <path d="M6804 3649 c-10 -17 13 -36 27 -22 12 12 4 33 -11 33 -5 0 -12 -5 -16 -11z"/> <path d="M8176 3641 c-3 -5 0 -11 8 -14 15 -6 26 1 26 15 0 11 -27 10 -34 -1z"/> <path d="M7917 3623 c-4 -3 -7 -15 -7 -25 0 -17 5 -19 33 -12 17 3 41 10 52 14 18 7 18 9 -8 19 -32 12 -60 14 -70 4z"/> <path d="M7785 3611 c-7 -12 12 -24 25 -16 11 7 4 25 -10 25 -5 0 -11 -4 -15 -9z"/> <path d="M7890 3550 c0 -19 20 -27 33 -13 8 7 -11 33 -24 33 -5 0 -9 -9 -9 -20z"/> <path d="M8280 3540 c0 -5 9 -10 19 -10 11 0 23 5 26 10 4 6 -5 10 -19 10 -14 0 -26 -4 -26 -10z"/> <path d="M7515 3431 c-7 -12 12 -24 25 -16 11 7 4 25 -10 25 -5 0 -11 -4 -15 -9z"/> <path d="M7781 3341 c-9 -6 -10 -11 -2 -15 6 -4 11 -18 11 -32 0 -17 10 -30 33 -44 39 -24 51 -21 54 11 5 44 -63 101 -96 80z"/> <path d="M8138 3297 c-31 -25 -35 -39 -15 -55 20 -17 68 27 61 56 -8 27 -12 27 -46 -1z"/> <path d="M8401 2951 c-8 -5 -9 -11 -3 -15 13 -8 42 3 42 15 0 11 -21 11 -39 0z"/> <path d="M86 1645 c-19 -19 -20 -27 -5 -42 17 -17 71 12 67 35 -4 23 -42 27 -62 7z"/> <path d="M8760 1581 c0 -12 5 -21 10 -21 6 0 10 6 10 14 0 8 -4 18 -10 21 -5 3 -10 -3 -10 -14z"/> <path d="M145 1220 c-7 -12 2 -30 16 -30 12 0 12 27 0 35 -5 3 -12 1 -16 -5z"/> <path d="M746 803 c-11 -11 -6 -23 9 -23 8 0 15 4 15 9 0 13 -16 22 -24 14z"/> <path d="M895 791 c-7 -12 31 -25 45 -16 5 3 10 10 10 16 0 12 -47 12 -55 0z"/> <path d="M3528 603 c-75 -31 -36 -44 122 -40 84 2 105 6 105 17 0 11 -7 14 -25 10 -55 -11 -132 -4 -142 13 -11 20 -13 20 -60 0z"/> <path d="M968 599 c-29 -16 -21 -29 17 -29 33 0 35 2 25 20 -12 23 -18 24 -42 9z"/> <path d="M8574 576 c-8 -22 2 -46 21 -46 19 0 20 34 0 50 -12 10 -16 9 -21 -4z"/> <path d="M3518 508 c-42 -22 -45 -30 -24 -48 12 -9 22 -7 48 12 42 29 50 41 35 50 -16 10 -16 10 -59 -14z"/> <path d="M3447 473 c-12 -11 -8 -23 8 -23 8 0 15 7 15 15 0 16 -12 20 -23 8z"/> <path d="M4400 461 c0 -25 72 -42 85 -20 9 14 7 16 -42 24 -28 4 -43 3 -43 -4z"/> <path d="M7028 379 c-25 -14 -22 -48 4 -58 13 -4 38 -4 56 1 27 8 36 6 46 -7 22 -31 110 4 91 36 -5 7 -24 9 -54 5 -39 -5 -48 -3 -59 14 -13 22 -55 26 -84 9z"/> <path d="M6012 358 c-39 -24 -30 -43 16 -33 34 7 57 29 47 45 -9 15 -26 12 -63 -12z"/> <path d="M7430 320 c-13 -9 -13 -11 0 -20 21 -14 44 -8 48 13 4 19 -23 23 -48 7z"/> <path d="M5756 296 c-9 -15 -12 -27 -6 -31 12 -8 59 26 60 43 0 21 -37 13 -54 -12z"/> <path d="M7780 310 c0 -5 11 -10 25 -10 14 0 25 5 25 10 0 6 -11 10 -25 10 -14 0 -25 -4 -25 -10z"/> <path d="M5650 275 c0 -10 7 -15 18 -13 21 4 19 22 -2 26 -10 2 -16 -3 -16 -13z"/> </g> </svg>');*/
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 460px) {
  .cta-four__button {
    justify-content: center;
    width: auto;
    height: auto;
    mask: unset;
    -webkit-mask: unset;
    background-color: transparent;
  }
}
.cta-four .cherito-btn {
  margin-left: 90px;
}
@media (max-width: 460px) {
  .cta-four .cherito-btn {
    margin: 0;
  }
}
@media (max-width: 375px) {
  .cta-four .cherito-btn {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.cta-four .cherito-btn:hover {
/*  color: var(--cherito-white, #ffffff);*/
}
.cta-four .cherito-btn__hover {
  background-color: var(--cherito-primary);
}


/*--------------------------------------------------------------
# Support
--------------------------------------------------------------*/
.support-one {
  position: relative;
  margin: 80px 0 30px;
}
/*.support-one::after {
  content: "";
  width: 100%;
  height: 65px;
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: var(--cherito-white2);
}*/
.support-one__bg {
  width: 100%;
  height: calc(100% - 175px);
  position: relative;
  position: absolute;
  top: 110px;
  left: 0px;
/*  background-color: var(--cherito-black2, #000000);*/
  overflow: hidden;
}
@media (max-width: 1199px) {
  .support-one__bg {
    height: 100%;
    top: 0%;
  }
}
.support-one__bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
/*  mix-blend-mode: luminosity;*/

  background-attachment: fixed;
}
.support-one__bg__overlay {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.support-one__bg__overlay::before, .support-one__bg__overlay::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
}
.support-one__bg__overlay::before {
  width: 51.708%;
  background-color: rgb(4 43 60 / 85%);
  left: 0;
}
.support-one__bg__overlay::after {
  width: 48.292%;
  background-color: #ff9f93b8;
  right: 0;
}
.support-one__bg__shape-1 {
  max-width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  animation: moveHorizontal 2s linear infinite;
}
.support-one__bg__shape-2 {
  max-width: 100%;
  height: auto;
  position: absolute;
  top: 32.5%;
  right: 145px;
  z-index: 2;
  animation: banner3Shake 3s linear infinite;
}
@media (max-width: 1850px) {
  .support-one__bg__shape-2 {
    right: 40px;
  }
}
@media (max-width: 1599px) {
  .support-one__bg__shape-2 {
    right: 30px;
  }
}
.support-one .container {
  position: relative;
  z-index: 2;
}
.support-one__inner {
  position: relative;
  background-color: var(--cherito-primary);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 519.000000"><g transform="translate(0.000000,519.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M7310 5139 c-41 -5 -124 -13 -185 -18 -208 -19 -525 -78 -725 -135 -117 -34 -168 -49 -200 -61 -81 -29 -107 -37 -135 -45 -30 -9 -59 -19 -165 -60 -30 -12 -68 -25 -85 -30 -16 -5 -55 -18 -85 -30 -30 -12 -69 -25 -86 -30 -18 -4 -37 -11 -44 -15 -7 -4 -26 -11 -44 -16 -17 -4 -62 -18 -101 -29 -38 -12 -88 -25 -110 -30 -22 -5 -58 -13 -80 -18 -77 -20 -201 -41 -325 -56 -168 -22 -669 -22 -825 -1 -60 8 -128 15 -150 15 -22 0 -87 7 -145 15 -174 26 -292 45 -355 57 -33 6 -82 14 -110 18 -27 4 -79 12 -115 19 -36 7 -101 19 -145 27 -44 8 -111 22 -150 30 -38 8 -79 14 -90 14 -11 0 -51 6 -90 14 -98 21 -341 59 -545 86 -175 24 -639 52 -735 45 -38 -2 -142 -9 -230 -15 -219 -14 -385 -37 -625 -86 -147 -30 -368 -91 -438 -120 -18 -8 -39 -14 -48 -14 -28 0 -93 -40 -118 -73 l-26 -34 0 -2167 c0 -1598 3 -2173 11 -2189 42 -80 162 -118 264 -83 72 25 223 66 280 76 22 4 60 12 85 18 342 83 891 119 1295 84 284 -24 684 -82 990 -142 33 -7 83 -16 110 -20 68 -9 166 -28 245 -46 36 -8 76 -14 90 -14 14 0 57 -6 95 -14 79 -16 186 -34 290 -49 39 -5 351 -11 695 -14 635 -5 681 -3 825 33 143 36 265 71 305 87 14 5 39 13 55 17 17 5 55 18 85 30 30 12 69 25 85 30 17 5 55 18 85 30 106 41 135 51 165 60 17 4 46 14 65 21 19 6 51 17 70 24 107 38 294 89 435 119 179 38 222 46 243 46 13 0 60 6 105 14 179 32 401 47 687 46 157 0 323 -5 370 -10 47 -6 128 -15 180 -19 134 -12 312 -42 457 -76 83 -20 167 -19 201 2 46 29 83 67 98 101 7 18 18 31 24 27 7 -4 10 682 10 2139 0 1856 -2 2146 -14 2146 -8 0 -18 10 -22 22 -11 37 -42 73 -77 90 -83 41 -488 120 -712 139 -55 4 -143 13 -195 18 -111 12 -561 12 -670 0z"/> </g> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg version="1.0" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 900.000000 519.000000"><g transform="translate(0.000000,519.000000) scale(0.100000,-0.100000)" stroke="none"> <path d="M7310 5139 c-41 -5 -124 -13 -185 -18 -208 -19 -525 -78 -725 -135 -117 -34 -168 -49 -200 -61 -81 -29 -107 -37 -135 -45 -30 -9 -59 -19 -165 -60 -30 -12 -68 -25 -85 -30 -16 -5 -55 -18 -85 -30 -30 -12 -69 -25 -86 -30 -18 -4 -37 -11 -44 -15 -7 -4 -26 -11 -44 -16 -17 -4 -62 -18 -101 -29 -38 -12 -88 -25 -110 -30 -22 -5 -58 -13 -80 -18 -77 -20 -201 -41 -325 -56 -168 -22 -669 -22 -825 -1 -60 8 -128 15 -150 15 -22 0 -87 7 -145 15 -174 26 -292 45 -355 57 -33 6 -82 14 -110 18 -27 4 -79 12 -115 19 -36 7 -101 19 -145 27 -44 8 -111 22 -150 30 -38 8 -79 14 -90 14 -11 0 -51 6 -90 14 -98 21 -341 59 -545 86 -175 24 -639 52 -735 45 -38 -2 -142 -9 -230 -15 -219 -14 -385 -37 -625 -86 -147 -30 -368 -91 -438 -120 -18 -8 -39 -14 -48 -14 -28 0 -93 -40 -118 -73 l-26 -34 0 -2167 c0 -1598 3 -2173 11 -2189 42 -80 162 -118 264 -83 72 25 223 66 280 76 22 4 60 12 85 18 342 83 891 119 1295 84 284 -24 684 -82 990 -142 33 -7 83 -16 110 -20 68 -9 166 -28 245 -46 36 -8 76 -14 90 -14 14 0 57 -6 95 -14 79 -16 186 -34 290 -49 39 -5 351 -11 695 -14 635 -5 681 -3 825 33 143 36 265 71 305 87 14 5 39 13 55 17 17 5 55 18 85 30 30 12 69 25 85 30 17 5 55 18 85 30 106 41 135 51 165 60 17 4 46 14 65 21 19 6 51 17 70 24 107 38 294 89 435 119 179 38 222 46 243 46 13 0 60 6 105 14 179 32 401 47 687 46 157 0 323 -5 370 -10 47 -6 128 -15 180 -19 134 -12 312 -42 457 -76 83 -20 167 -19 201 2 46 29 83 67 98 101 7 18 18 31 24 27 7 -4 10 682 10 2139 0 1856 -2 2146 -14 2146 -8 0 -18 10 -22 22 -11 37 -42 73 -77 90 -83 41 -488 120 -712 139 -55 4 -143 13 -195 18 -111 12 -561 12 -670 0z"/> </g> </svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top center;
  mask-position: top center;
  -webkit-mask-size: auto;
  mask-size: auto;
}
@media (max-width: 1199px) {
  .support-one__inner {
    padding: 0px;
    border-radius: 10px;
    mask: unset;
    -webkit-mask: unset;
    background: none;
  }
}
.support-one__inner__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media (max-width: 1199px) {
  .support-one__inner__bg {
    border-radius: inherit;
  }
}
.support-one__wrapper {
  position: relative;
  z-index: 1;
}
.support-one__content {
  padding: 90px 35px 35px 50px;
}
@media (max-width: 1199px) {
  .support-one__content {
    padding: 0px;
  }
}
.support-one__logo {
  margin-bottom: 10px;
}
.support-one__content .sec-title__tagline{
  color: var(--cherito-base);
}
.support-one__title {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.35;
}
.support-one__text-box {
  /*padding-top: 23px;
  border-top: 1px solid #606060;*/
}
.support-one__text {
  margin-bottom: 20px;
  color: var(--cherito-black);
}
.support-one .cherito-btn__hover {
  background-color: var(--cherito-base);
}
.support-one__content .cherito-btn{
  margin-top: 25px;
}
.support-one__image {
  position: relative;
  margin-left: 3px;
  background-color: var(--cherito-black2, #000000);
}
.support-one__image::before {
  content: "";
  width: 20px;
  height: 100%;
  background-color: var(--cherito-white, #ffffff);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1199px) {
  .support-one__image::before {
    display: none;
  }
}
.support-one__image__img {
/*  width: 100%;*/
  height: 100%;
  display: block;
  object-fit: cover;
/*  mix-blend-mode: luminosity;*/
}
@media (max-width: 1199px) {
  .support-one__image__img {
    width: 100%;
  }
}
.support-one__content .about-five__inner__list__icon{
  background: var(--cherito-base);
}
.support-one__image__logo-box {
  width: 148px;
  height: 148px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: absolute;
  top: calc(50% + 38px);
  left: -65px;
  transform: translateY(-50%);
  background-color: var(--cherito-base);
  border-radius: 50%;
  z-index: 1;
  transition: all 500ms ease;
}
@media (max-width: 1199px) {
  .support-one__image__logo-box {
    display: none;
  }
}
.support-one__image__logo {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: inherit;
}
.support-one__image__logo img {
  max-width: 85%;
  height: auto;

  margin-top: -6px;
}
.support-one__inner:hover .support-one__image__logo-box {
  background-color: #ff9f93;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  background-color: var(--cherito-white, #ffffff);
}
.contact-page__form {
  /*margin: 0 auto;
  max-width: 868px;*/
}
.contact-page__form__button {
  text-align: center;
}

.contact-info__wrapper{
  box-shadow: 0px 5px 120px 0px rgba(39, 71, 125, 0.15);
  border-radius: 15px;
  height: 100%;
}

.contact-info__title {
  margin: 0;
  padding: 35px 35px 0;
  font-size: 40px;
  border-radius: 15px 15px 0 0;
}
.contact-info__inner {
  padding: 35px;
  /*display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;*/
  /*gap: 55px;
  background-color: #fff;
  border-radius: 0 0 25px 25px;*/
}
@media (max-width: 767px) {
  .contact-info__inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 30px;
  }
}
.contact-info__item {
  display: flex;
/*  align-items: center;*/
  gap: 18px;
}
.contact-info__item+.contact-info__item{
  margin-top: 15px;
}
.contact-info__item__icon {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  color: var(--cherito-black);
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  border-radius: 50%;
  transition: all 500ms ease;
}
.contact-info__item__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.contact-info__item:hover .contact-info__item__icon {
  color: var(--cherito-black);
  background: linear-gradient(180deg, #73f1fd, #38d1e0);
}
.contact-info__item__title {
  margin-bottom: 3px;
  font-size: 22px;
  text-transform: capitalize;
  line-height: 1.35;
}
.contact-info__item__content .cnt, .contact-info__item__content .cnt2{
  color: #000;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-info__item__content .cnt:hover{
  color: var(--cherito-primary);
  background-size: 100% 1px;
}
.contact-info__item__link {
  font-family: var(--cherito-heading-font, "Oswald", sans-serif);
  font-size: 20px;
  color: var(--cherito-black);
  line-height: 1.25;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  font-weight: 500;
}
.contact-info__item__link:hover {
  background-size: 100% 1px;
}
.contact-info__item__link:hover {
  color: var(--cherito-primary);
}

.contact-page-form{
  padding: 35px;
  box-shadow: 0px 5px 120px 0px rgba(39, 71, 125, 0.15);
  /*margin: 0 auto;
  max-width: 860px;*/
  border-radius: 15px;
}
.contact-page-form .sec-title--center{
  margin-bottom: 35px;
}
.contact-page-form .cherito-btn{
  /*width: 100%;
  height: 100%;
  font-size: 19px;*/
}


.top-header{
/*  padding: 3px 0;*/
/*  background: #042b3c;*/
  position: relative;
}
/*.top-header::before {
  content: "";
  width: 18.75%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: 0;
  background-color: #edfbff;
  z-index: 1;
  border-radius: 50px 0 0 50px;
}*/
.top-header-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}
.top-header-left p{
  margin-bottom: 0;
  color: #fff;
}
.top-header-left p i{
  margin-right: 5px;
/*  color: var(--cherito-primary);*/
}
.top-header-right{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #e4f7f8;
  position: relative;
  gap: 40px;
  padding: 2px 0;
}
.top-header-right:before{
  position: absolute;
  content: '';
  background: #e4f7f8;
  right: -100px;
  top: 0;
  width: 20%;
  height: 100%;
  z-index: -1;
}
.top-header-right:after{
  position: absolute;
  content: '';
  background: #e4f7f8;
  left: -4%;
  top: 0;
  width: 5%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 100%);
}
.top-header-right .cherito-btn{
  padding: 10px 20px;
}
.top-header-right ul {
  margin: 0;
  padding: 0;
/*  margin-right: 50px;*/
  display: flex;
  gap: 25px;
}
.top-header-right ul li{
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
  font-size: 18px;
}
.top-header-right ul li a{
  color: #000;
}
.top-header-right ul li a:hover{
  color: #38d1e0;
}
.top-header-right ul li i{
  color: #38d1e0;
  font-size: 17px;
  /*display: block;
  font-size: 15px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background: #2d2079;*/
}

.middle-header-details{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}



#scroll-button {
  display: inline-block;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 70px;
  right: 20px;
  transition: background-color .3s, 
    opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  outline: 2px solid #38d1e0;
  outline-offset: 2px;
}
#scroll-button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 20px;
  line-height: 50px;
  color: var(--cherito-black);
}
#scroll-button:hover {
  cursor: pointer;
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}
#scroll-button:active {
  background: linear-gradient(180deg, #ff9f93, #fec6bf);
}
#scroll-button.show {
  opacity: 1;
  visibility: visible;
}


.banner-slider .carousel-indicators [data-bs-target]{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background-color: #ff9f93;
  outline: 1px solid #38d1e0;
  outline-offset: 4px;
}
.banner-slider .carousel-indicators{
  gap: 10px;
  bottom: 15px;
  z-index: 999;
}


.doctors-section .blog-card-six__image__link{
  background: none;
}
.doctors-section .blog-card-six{
  text-align: center;
}
.doctors-section .blog-card-six__title{
  font-size: 28px;
  margin-bottom: 3px;
}
.doctors-section .blog-card-six__text b{
  font-weight: 600;
  font-size: 18px;
}
.doctors-section  .blog-card-six__text {
    margin-bottom: 14px;
}
.doctors-section .about-five-left{
  width: 440px;
  margin: 0 0 20px 20px;
  position: relative;
  z-index: 1;
}
.doctors-section .about-five-right h4{
  font-family: var(--cherito-font, "Jost", sans-serif);
  color: var(--cherito-black);
  font-size: 22px;
}
.doctors-section .about-five-inner{
  padding: 40px;
  box-shadow: 0px 5px 120px 0px rgba(39, 71, 125, 0.15);
  border-radius: 25px;
}
.doctors-section.about-five .sec-title {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #38d1e0;
}



.attachments-page .blog-card-six__image img{
  width: auto;
  margin: 0 auto;
}
.attachments-page .blog-card-six:hover .blog-card-six__image img{
  transform: scale(1);
}
.attachments-page .blog-card-six__image{
  border: 1px solid #2d207924;
}
.attachments-page .blog-card-six{
  text-align: center;
}



.coming-soon h2{
  padding: 70px 0;
  color: transparent;
  background: #042b3c;
  background-clip: text;
  text-align: center;
  font-size: 70px;
}


.work-process{
  position:relative;
}
.process-wrapper{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  position:relative;
  gap:25px;
}
.process-wrapper:before{
  content:'';
  position:absolute;
  top:40px;
  left:10%;
  width:80%;
  height:3px;
  background:#38d1e080;
  z-index:0;
}
.process-box{
  background:#fff;
/*  padding:35px 20px;*/
  text-align:center;
  border-radius:20px;
/*    box-shadow:0 10px 30px rgba(0,0,0,.08);*/
  position:relative;
  z-index:2;
  transition:.4s;
}
.process-box:hover{
  transform:translateY(-10px);
}
.process-box .icon{
  width:80px;
  height:80px;
  background:#ff9f9325;
  border-radius:50%;
  margin:0 auto 20px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.process-box .icon i{
  font-size:32px;
  color:#ff9f93;
}
.process-box h4{
  font-size:22px;
  margin-bottom:15px;
}
.process-box p{
  margin-bottom: 0;
}



.why-us{
/*    background:#f7f9fc;*/
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}
.why-card{
  background:#fff;
  padding:25px 20px;
  text-align:center;
  border-radius:20px;
  position:relative;
  overflow:hidden;
  transition:.4s;
  box-shadow:0 10px 30px rgba(0,0,0,.07);
}
.why-card:before{
  content:'';
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:#38d1e0;
  transform:scaleX(0);
  transition:.4s;
}
.why-card:hover:before{
  transform:scaleX(1);
}
.why-card:hover{
  transform:translateY(-15px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.why-icon{
  width:80px;
  height:80px;
  margin:0 auto 25px;
  border-radius:50%;
  background:#ff9f9325;
  display:flex;
  justify-content:center;
  align-items:center;
  transition:.5s;
}
.why-icon i{
  font-size:35px;
  color:#ff9f93;
  transition:.5s;
}
.why-card:hover .why-icon{
  background:#ff9f93;
  transform:rotateY(180deg);
}
.why-card:hover .why-icon i{
  color:#fff;
  transform:rotateY(180deg);
}
.why-card h3{
  font-size:22px;
  line-height: 29px;
  color:#032847;
  margin-bottom:0px;
}
.why-card p{
  display: none;
}



.mission-section{
  background:#f7f9fc;
}

.mission-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}
.mission-content{
  flex:1;
}
.mission-content .sec-title p{
  margin-top: 20px;
  line-height: 30px;
}
.mission-content .about-five__inner__list{
  list-style:none;
  padding:0;
  margin:22px 0;
  column-count: 2;
}
.mission-box{
  width:420px;
  background:linear-gradient(180deg, #38d1e0, #64e2ef);
  color:#fff;
  padding:50px 30px 30px;
  border-radius:30px;
  text-align:center;
  position:relative;
  overflow:hidden;
  transition:.4s;
}
.mission-box:hover{
  transform:translateY(-15px);
  box-shadow:0 20px 50px rgba(0,0,0,.2);
}
.mission-box:before{
  content:'';
  position:absolute;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  top:-70px;
  right:-70px;
}
.mission-box:after{
  content:'';
  position:absolute;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  bottom:-40px;
  left:-40px;
}
.mission-icon{
  width:110px;
  height:110px;
  margin:0 auto 30px;
  background:#fff;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  animation:float 3s ease-in-out infinite;
}
.mission-icon i{
  font-size:45px;
  color:#ff9f93;
}
.mission-box h3{
  font-size:32px;
  margin-bottom:20px;
}
.mission-box p{
  color: var(--cherito-black);
  margin-bottom: 0;
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0);
    }
}



.video-gallery .video-data{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.video-gallery .video-data .vd iframe, .video-gallery .video-data .vd video{
  width: 100%;
  height: 260px;
  border: 1px solid #2b2b2b;
  background: #2b2b2b;
}
.video-gallery .video-data .vd img{
  width: 100%;
  aspect-ratio: 1/0.71;
  object-fit: cover;
  object-position: top;
  border: 1px solid #2b2b2b;
}
.video-gallery .video-data .vd .vd-img{
  position: relative;
}
.video-gallery .video-data .vd .vd-img::before {
/*  content: 'Play';*/
  content: '\f04b';
  font-family: 'FontAwesome';
  position: absolute;
  left: 50%;
  bottom: 50%;
  transform: translate(-50%, 50%);
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  z-index: 9;
}




.btn-whatsapp-pulse {
  background: #0fc352;
  color: white;
  position: fixed;
  bottom: 40px;
  left: 20px;
  font-size: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 0;
  height: 0;
  padding: 32px;
  text-decoration: none;
  border-radius: 50%;
  animation-name: pulse;
  animation-duration: 2.5s;
  animation-timing-function: ease-out;
  animation-iteration-count: infinite;
  z-index: 9;
}

.btn-whatsapp-pulse:hover{
  color: #fff;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}

.btn-whatsapp-pulse2{
  bottom: 120px;
  animation-name: pulse2;
  font-size: 26px;
  background: #1161ba;
}

@keyframes pulse2 {
  0% {
    box-shadow: 0 0 0 0 rgb(17 97 186 / 50%);
  }
  80% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
}
