/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
    --aofixo-font: "Plus Jakarta Sans", sans-serif;
    --aofixo-heading-font: "JBold", sans-serif;
    --aofixo-special-font: "JXBold", cursive;
    --aofixo-text: #6c6666;
    --aofixo-text-rgb: 108, 102, 102;
    --aofixo-text-dark: #8e8787;
    --aofixo-text-dark-rgb: 142, 135, 135;
    --aofixo-text-gray: #8e8787;
    --aofixo-text-gray-rgb: 142, 135, 135;
    --aofixo-base: #D66B89;
    --aofixo-base-rgb: 214, 107, 137;
    --aofixo-secondary: #2f7a9b;
    --aofixo-secondary-rgb: 47, 122, 155, 1;
    --aofixo-gray: #f5eeea;
    --aofixo-gray-rgb: 245, 238, 234;
    --aofixo-white: #fff;
    --aofixo-white-rgb: 255, 255, 255;
    --aofixo-black: #242020;
    --aofixo-black-rgb: 36, 32, 32;
    --aofixo-black2: #1c1919;
    --aofixo-black2-rgb: 28, 25, 25;
    --aofixo-black3: #000;
    --aofixo-black3-rgb: 0, 0, 0;
    --aofixo-border-color: #eadfd9;
    --aofixo-border-color-rgb: 234, 223, 217;
    --aofixo-letter-space: 0.1em;
    --aofixo-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

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

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

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

.pb-90 {
  padding-bottom: 90px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  color: var(--aofixo-text, #6c6666);
  font-size: 15px;
  line-height: 1.875;
  font-weight: 500;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--aofixo-base, #ffbe50);
  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(--aofixo-heading-font, "Nunito", sans-serif);
  color: var(--aofixo-black, #242020);
  line-height: 1.2;
  font-weight: 900;
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

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

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

.background-base {
  background-color: var(--aofixo-base, #ffbe50);
}

.background-gray {
  background-color: var(--aofixo-gray, #f5eeea);
}

.background-black {
  background-color: var(--aofixo-black, #242020);
}

.background-black-2 {
  background-color: var(--aofixo-black2, #1c1919);
}

.aofixo-text-dark {
  color: var(--aofixo-text-dark, #8e8787);
}

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

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

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

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.aofixo-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-black, #242020);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  padding: 16px 50px;
  transition: 500ms;
  text-transform: uppercase;
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-black, #242020);
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: 30px;
}
.aofixo-btn:hover {
  color: var(--aofixo-base, #ffbe50);
  background-color: var(--aofixo-black, #242020);
}
.aofixo-btn--icon {
  padding-left: 78px;
}
.aofixo-btn__icon {
    width: 58px;
    background-color: #e1869e;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.aofixo-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--aofixo-base, #ffbe50);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.aofixo-btn::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--aofixo-secondary, #c44b4d);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.aofixo-btn:hover {
  color: var(--aofixo-white, #fff);
}
.aofixo-btn:hover::before {
  top: 100%;
}
.aofixo-btn:hover::after {
  bottom: -50%;
}
.aofixo-btn span {
    position: relative;
    color: inherit;
    z-index: 2;
    font-size: 14px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--aofixo-base, #ffbe50);
}

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

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

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

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

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

/* post paginations */
.post-pagination {
  margin-bottom: 0;
  margin-top: 0px;
}
@media (min-width: 992px) {
  .post-pagination {
    margin-top: 0px;
  }
}
.post-pagination a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #eff2f6;
  align-items: center;
  justify-content: center;
  color: var(--aofixo-text, #6c6666);
  font-size: 16px;
  font-weight: 500;
  border-radius: 50%;
  transition: 500ms ease;
}
@media (min-width: 992px) {
  .post-pagination a {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }
}
.post-pagination a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: #fff;
}
.post-pagination li:first-child a {
  background-color: var(--aofixo-base, #ffbe50);
  color: #fff;
}
.post-pagination li:last-child a {
  background-color: var(--aofixo-black, #242020);
  color: #fff;
}
.post-pagination li + li {
  margin-left: 10px;
}

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

.aofixo-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
}
.aofixo-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 92px;
  height: 52px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 20px 20px 0 0;
  color: var(--aofixo-black, #242020);
  font-size: 32px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  cursor: pointer;
}
.aofixo-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  background-color: var(--aofixo-base, #ffbe50);
}
.aofixo-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.aofixo-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  background-color: var(--aofixo-black, #242020);
  border: 2px solid var(--aofixo-white, #fff);
  box-shadow: 0 0 1px rgba(var(--aofixo-black-rgb, 36, 32, 32), 1);
  margin: 0;
}
.aofixo-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .aofixo-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--aofixo-black, #242020);
  border: 2px solid var(--aofixo-black, #242020);
  box-shadow: 0 0 1px rgba(var(--aofixo-black-rgb, 36, 32, 32), 1);
}
.aofixo-owl__carousel--basic-nav.owl-carousel .disabled {
  display: none;
}

.sec-title {
  padding-bottom: 36px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 46px;
  }
}
.sec-title__tagline {
  margin: 0 0 9px;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  color: var(--aofixo-secondary, #c44b4d);
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
}
.sec-title__tagline::before {
  position: relative;
  display: inline-block;
  width: 33px;
  height: 2px;
  background-color: currentColor;
  content: "";
  margin: 0 13px 7px 0;
}
.sec-title__title {
    margin: 0;
    font-size: 35px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.2em;
}
@media (max-width: 767px) {
  .sec-title__title {
    font-size: 36px;
  }
}

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

.ui-datepicker-calendar th span {
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--aofixo-gray, #f5eeea);
  background-image: none;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  color: var(--aofixo-text, #6c6666);
}
.ui-datepicker-calendar td a {
  border-color: var(--aofixo-border-color, #eadfd9);
  background-color: var(--aofixo-gray, #f5eeea);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--aofixo-border-color, #eadfd9);
  background-color: var(--aofixo-gray, #f5eeea);
  background-image: none;
  color: var(--aofixo-text, #6c6666);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-base, #ffbe50);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-base, #ffbe50);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--aofixo-white, #fff);
  color: var(--aofixo-black, #242020);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-white, #fff);
  top: 2px;
}

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

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

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
    position: relative;
    background-color: var(--aofixo-black, #242020);
    padding: 127px 0 24px;
    margin-top: -80px;
}
@media (max-width: 767px) {
  .video-one {
    padding: 150px 0 80px;
  }
}
.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aofixo-black, #242020);
  background-size: cover;
  background-position: center center;
  mix-blend-mode: luminosity;
  opacity: 0.4;
}
.video-one .container {
  position: relative;
}
.video-one__title {
  margin: 0;
  color: var(--aofixo-white, #fff);
  font-size: 60px;
  letter-spacing: -2.4px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .video-one__title {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .video-one__title {
    font-size: 48px;
  }
}
.video-one__btn {
  position: relative;
  margin: 6px 0 0 auto;
  max-width: 249px;
}
@media (max-width: 767px) {
  .video-one__btn {
    margin: 6px 0 0;
  }
}
.video-one__btn .video-popup {
  width: 101px;
  height: 101px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  font-size: 24px;
  border: 2px solid var(--aofixo-white, #fff);
  color: var(--aofixo-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-one__btn .video-popup:hover {
  color: var(--aofixo-base, #ffbe50);
  border-color: var(--aofixo-base, #ffbe50);
}
.video-one__btn__title {
  color: var(--aofixo-base, #ffbe50);
  font-weight: 400;
  font-size: 30px;
  margin: 9px 0 0 53px;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
}
@media (max-width: 768px) and (max-width: 991px) {
  .video-one__btn__title {
    margin-left: 12px;
  }
}
.video-one__border {
  width: 100%;
  height: 2px;
  background-color: var(--aofixo-white, #fff);
  position: relative;
  margin: 42px 0 37px;
}
.video-one__border::after {
  position: absolute;
  left: 0;
  bottom: -17px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 17px 17px 0 17px;
  border-color: var(--aofixo-white, #fff) transparent transparent transparent;
}
.video-one__text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 20px;
  color: var(--aofixo-white, #fff);
}
.video-one__text img {
  width: 52px;
  height: 47px;
}
.video-one__text .aofixo-btn {
  font-size: 12px;
  padding: 8px 30px;
}

.video-two {
  position: relative;
  background-color: var(--aofixo-black, #242020);
  padding: 143px 0 320px;
}
@media (max-width: 767px) {
  .video-two {
    padding: 100px 0 270px;
  }
  .video-two .text-end {
    text-align: left !important;
  }
}
.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aofixo-black, #242020);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
}
.video-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1199px) {
  .video-two__shape {
    display: none;
  }
}
.video-two .container {
  position: relative;
}
.video-two__btn {
  width: 145px;
  height: 145px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: relative;
  margin-top: 42px;
}
.video-two__btn .video-popup {
  font-size: 24px;
  color: var(--aofixo-white, #fff);
  transition: all 500ms ease;
  position: relative;
  z-index: 10;
}
.video-two__btn .video-popup:hover {
  color: var(--aofixo-base, #ffbe50);
}
.video-two__btn .curved-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 145px;
  height: 145px;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.video-two__btn .curved-circle--item {
  width: 145px !important;
  height: 145px !important;
}
.video-two__btn .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  color: var(--aofixo-white, #fff);
  letter-spacing: 0.4em;
}
.video-two__title {
  margin: 0;
  text-transform: uppercase;
  color: var(--aofixo-white, #fff);
  font-size: 40px;
  line-height: 1.2em;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .video-two__title {
    font-size: 50px;
  }
}
@media (min-width: 992px) {
  .video-two__title {
    font-size: 60px;
    margin-bottom: 35px;
  }
}
.video-two__link::before {
  background-color: var(--aofixo-base, #ffbe50);
}

.team-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .team-one {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0 50px;
  }
}
.team-one__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .team-one__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .team-one__wrapper {
    display: block;
  }
}

.team-card {
  position: relative;
  max-width: 300px;
}
@media (max-width: 991px) {
  .team-card {
    margin: 0 auto 30px;
  }
}
.team-card__image {
  position: relative;
  padding-left: 20px;
  padding-top: 20px;
}
.team-card__image::after {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 6px;
  height: 60px;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px;
  overflow: hidden;
}
.team-card__image::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 54px;
  height: 6px;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px;
  overflow: hidden;
}
.team-card__image img {
  position: relative;
  width: 100%;
  border-radius: 0 20px 20px 20px;
}
.team-card__hover {
  position: absolute;
  bottom: -28px;
  right: 20px;
}
.team-card__social {
  background-color: var(--aofixo-white, #fff);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: all 500ms ease;
}
.team-card__social:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
}
.team-card__social:hover > i {
  color: var(--aofixo-white, #fff);
}
.team-card__social > i {
  width: 57px;
  height: 57px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--aofixo-secondary, #c44b4d);
  border-radius: 50%;
  transition: all 500ms ease;
  box-shadow: 0px 10px 40px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 0.1);
  position: relative;
  z-index: 1;
}
.team-card__social__list {
  position: absolute;
  bottom: 0;
  right: 10px;
  transform: translateY(0) scale(0, 1);
  background-color: var(--aofixo-white, #fff);
  margin: 0;
  border-radius: 6px;
  min-width: 39px;
  padding-top: 14px;
  padding-bottom: 14px;
  opacity: 0;
  transition: 500ms ease;
  transform-origin: bottom;
  text-align: center;
}
.team-card__social__list::after {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -4px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 5px 0 5px;
  border-color: var(--aofixo-white, #fff) transparent transparent transparent;
}
.team-card__social__list a {
  color: var(--aofixo-black, #242020);
  font-size: 14px;
  transition: all 500ms ease;
  display: block;
}
.team-card__social__list a + a {
  margin-top: 7px;
}
.team-card__social__list a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.team-card__social:hover .team-card__social__list {
  opacity: 1;
  transform: translateY(-71px) scale(1, 1);
}
.team-card__content {
  position: relative;
  padding-top: 27px;
  padding-left: 20px;
}
.team-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 7px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__title a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.team-card__description {
  margin: 0;
}

.team-details {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .team-details {
    padding: 80px 0 0;
    padding-top: 60px;
  }
}
.team-details__inner {
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
  padding-bottom: 100px;
}
.team-details__image {
  display: inline-block;
  position: relative;
}
.team-details__image img {
  max-width: 100%;
}
@media (min-width: 992px) {
  .team-details__content {
    padding-left: 70px;
  }
}
.team-details__icon {
  position: absolute;
  left: 40px;
  bottom: 40px;
  background-color: var(--aofixo-base, #ffbe50);
  border: 20px solid var(--aofixo-white, #fff);
  width: 220px;
  padding: 30px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  .team-details__icon {
    left: -96px;
  }
}
.team-details__icon i {
  font-size: 60px;
  color: var(--aofixo-white, #fff);
}
.team-details__icon__text {
  margin: 0;
  font-size: 18px;
  color: var(--aofixo-white, #fff);
  text-transform: uppercase;
  max-width: 104px;
  font-weight: bold;
  margin-bottom: -5px;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .team-details__icon__text {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .team-details__icon__text {
    font-size: 24px;
  }
}
.team-details__title {
  text-transform: uppercase;
  margin: 0;
  font-weight: bold;
  font-size: 30px;
  line-height: 1;
  margin-top: -7px;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  .team-details__title {
    font-size: 35px;
  }
}
@media (min-width: 992px) {
  .team-details__title {
    font-size: 40px;
  }
}
.team-details__designation {
  margin: 0;
  font-size: 16px;
  margin-bottom: 20px;
}
.team-details__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
}
.team-details__highlight {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--aofixo-base, #ffbe50);
  font-size: 20px;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  line-height: 1.3em;
  margin-top: 35px;
  margin-bottom: 30px;
}
.team-details__list {
  margin-bottom: 0;
}
.team-details__list li {
  position: relative;
  font-size: 16px;
  line-height: 2.25em;
  padding-left: 27px;
  color: var(--aofixo-black, #242020);
}
.team-details__list li > i {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--aofixo-base, #ffbe50);
}
.team-details__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.team-details__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--aofixo-gray, #f5eeea);
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  border-radius: 50%;
}
.team-details__social a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-white, #fff);
}

.team-skills-one {
  padding: 100px 0;
}
@media (max-width: 767px) {
  .team-skills-one {
    padding: 60px 0;
  }
}
.team-skills-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: bold;
  color: var(--aofixo-black, #242020);
  line-height: 1.2em;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .team-skills-one__title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}
.team-skills-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  max-width: 500px;
  width: 100%;
}
.team-skills-one__progress + .team-skills-one__progress {
  margin-top: 17px;
}
.team-skills-one__progress__title {
  text-transform: uppercase;
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.team-skills-one__progress__bar {
  width: 100%;
  height: 17px;
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
  position: relative;
}
.team-skills-one__progress__inner {
  position: absolute;
  height: calc(100% - 6px);
  left: 4px;
  top: 3px;
  background-color: var(--aofixo-base, #ffbe50);
  transition: all 700ms linear;
  width: 0px;
}
.team-skills-one__progress__number {
  position: absolute;
  bottom: calc(100% + 5px);
  right: 0;
  font-size: 14px;
  font-weight: 400;
}

.team-form-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .team-form-one {
    padding: 80px 0;
  }
}
.team-form-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  opacity: 0.8;
  mix-blend-mode: luminosity;
}
.team-form-one .container {
  position: relative;
  max-width: 800px;
}
.team-form-one .sec-title {
  text-align: center;
}
.team-form-one .form-one .bootstrap-select > .dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
  background-color: var(--aofixo-white, #fff);
}
.team-form-one .form-one textarea {
  height: 188px;
}

.blog-card {
  position: relative;
  background-color: var(--aofixo-white, #fff);
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 20px;
  overflow: hidden;
  padding: 28px 29px 0;
  transition: all 400ms ease;
}
.blog-card:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}
.blog-card__date {
  background-color: var(--aofixo-base, #ffbe50);
  font-size: 12px;
  color: var(--aofixo-black, #242020);
  padding: 9px 25px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-block;
  border-radius: 30px;
  margin: 0 0 20px;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card__image img:nth-child(1) {
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
}
.blog-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--aofixo-black-rgb, 36, 32, 32), 0.5);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.blog-card__image__link::before, .blog-card__image__link::after {
  content: "";
  width: 32px;
  height: 2px;
  background-color: var(--aofixo-white, #fff);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.blog-card:hover .blog-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.blog-card:hover .blog-card__image img:nth-child(1) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card__content {
  position: relative;
  transition: all 500ms ease;
  padding: 22px 0 0;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  margin-bottom: 3px;
}
.blog-card__meta li {
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.blog-card__meta li i {
  color: var(--aofixo-secondary, #c44b4d);
  margin-right: 3px;
}
.blog-card__meta li a {
  margin-left: 1px;
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__meta li a:hover {
  color: var(--aofixo-secondary, #c44b4d);
  text-shadow: 0 0 1px currentColor;
}
.blog-card__title {
  margin: 0;
  color: var(--aofixo-black, #242020);
  font-size: 25px;
  letter-spacing: -1.04px;
  line-height: 35px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
@media (max-width: 767px) {
  .blog-card__title {
    font-size: 22px;
    line-height: 32px;
  }
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.blog-card__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
  margin-right: -30px;
}
.blog-card__link:hover i {
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-secondary, #c44b4d);
}
.blog-card__link i {
  width: 60px;
  height: 50px;
  font-size: 16px;
  margin-left: 29px;
  background-color: var(--aofixo-border-color, #eadfd9);
  color: var(--aofixo-text, #6c6666);
  border-radius: 20px 0 20px 20px;
  transition: all 500ms ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0;
  }
}
@media (min-width: 992px) {
  .blog-one__carousel .owl-nav {
    display: none;
  }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control__icon {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 58px;
  background-color: var(--aofixo-gray, #f5eeea);
  color: var(--aofixo-text, #6c6666);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  font-size: 14px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 20px;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 148px;
  padding-top: 16px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--aofixo-base, #ffbe50);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--aofixo-base, #ffbe50);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--aofixo-base, #ffbe50);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  background-color: var(--aofixo-black, #242020);
  padding: 0 0 50px;
}
@media (max-width: 767px) {
  .main-footer {
    padding-bottom: 20px;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.05;
  mix-blend-mode: luminosity;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center center;
}
.main-footer__top {
  padding-top: 74px;
  padding-bottom: 76px;
  margin: 0 0 99px;
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(var(--aofixo-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 767px) {
  .main-footer__top {
    display: block;
    margin-bottom: 75px;
  }
}
.main-footer__top__bg {
  background-position: top right;
  background-repeat: no-repeat;
  background-blend-mode: luminosity;
  background-color: var(--aofixo-black, #242020);
  opacity: 0.2;
  position: absolute;
  left: 0;
  top: 0;
  width: 92%;
  height: 100%;
}
.main-footer__top__title {
    position: relative;
    z-index: 2;
    color: var(--aofixo-white, #fff);
    font-size: 32px;
    letter-spacing: -1.6px;
    margin: 0;
}
@media (max-width: 767px) {
  .main-footer__top__title {
    font-size: 34px;
    margin: 0 0 30px;
  }
}
.main-footer .container {
  position: relative;
  z-index: 1;
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget--about {
  position: relative;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 27px;
}
.footer-widget__info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget__info li {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  color: var(--aofixo-white, #fff);
  font-weight: 800;
  line-height: 1.2;
  margin: 11px 0 0;
}
.footer-widget__info li span {
  line-height: inherit;
  color: var(--aofixo-base, #ffbe50);
  font-size: 12px;
  min-width: 29px;
  position: relative;
  top: 1px;
}
.footer-widget__info li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__info li a:hover {
  background-size: 100% 1px;
}
.footer-widget__info li a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.footer-widget__text {
  color: var(--aofixo-text-dark, #8e8787);
  margin: 0;
  margin-bottom: 17px;
}
@media (min-width: 1200px) {
  .footer-widget--mail {
    margin-left: -30px;
  }
}
.footer-widget--mail .footer-widget__text {
  margin-bottom: 22px;
  margin-top: 23px;
}
.footer-widget__newsletter {
  position: relative;
  width: 100%;
}
.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: 2px solid var(--aofixo-secondary, #c44b4d);
  outline: none;
  height: 58px;
  background-color: transparent;
  color: var(--aofixo-text-dark, #8e8787);
  font-size: 15px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 75px;
  border-radius: 50px;
  transition: all 500ms ease;
}
.footer-widget__newsletter input[type=text]:focus {
  color: var(--aofixo-white, #fff);
}
.footer-widget__newsletter button[type=submit] {
  background-color: var(--aofixo-secondary, #c44b4d);
  width: 70px;
  height: 58px;
  border: none;
  outline: none;
  color: var(--aofixo-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50px;
  transition: all 500ms ease;
}
.footer-widget__newsletter button[type=submit]:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.footer-widget__social {
  display: flex;
  align-items: center;
  line-height: 1em;
  gap: 10px;
  margin-top: 30px;
}
.footer-widget__social a {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-black2, #1c1919);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: color-burn;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.footer-widget__social a:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.footer-widget__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.footer-widget__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--aofixo-white, #fff);
  margin-top: -2px;
  margin-bottom: 17px;
}
.footer-widget__links {
  margin: 0;
  padding: 0;
}
.footer-widget__links li {
  color: var(--aofixo-text-dark, #8e8787);
  line-height: 40px;
}
.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(--aofixo-white, #fff);
}

.main-footer-bottom {
  text-align: center;
  background-color: var(--aofixo-black2, #1c1919);
  padding: 31px 0;
}
.main-footer-bottom__copyright {
  margin: 0;
  color: var(--aofixo-text-dark, #8e8787);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  padding: 120px 0 100px;
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one__inner {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 99px 98px 100px;
}
@media (max-width: 1199px) {
  .contact-one__inner {
    padding: 99px 50px 100px;
  }
}
@media (max-width: 767px) {
  .contact-one__inner {
    padding: 50px 25px;
  }
}
.contact-one__inner__shape {
  position: absolute;
  right: 38px;
  top: 31%;
  width: 39px;
  height: 64px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  animation: rotated3 6s infinite linear;
}
@media (max-width: 1199px) {
  .contact-one__inner__shape {
    display: none;
  }
}
@keyframes rotated3 {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(45deg);
  }
  100% {
    transform: rotate(0);
  }
}
.contact-one .sec-title {
  padding-bottom: 36px;
}
.contact-one__form {
  /*max-width: 670px;*/
  position: relative;
}
.contact-one__form .form-one__group {
  position: relative;
}
.contact-one__form .form-one__control__icon {
  right: 30px;
  color: var(--aofixo-text, #6c6666);
}
.contact-one__form .bootstrap-select > .dropdown-toggle,
.contact-one__form input[type=text],
.contact-one__form input[type=email],
.contact-one__form textarea {
  height: 58px;
  background-color: var(--aofixo-white, #fff);
  border: none;
  outline: none;
  width: 100%;
  padding: 0 30px;
  border-radius: 20px;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  font-weight: 500;
}
.contact-one__form .bootstrap-select > .dropdown-toggle#datepicker,
.contact-one__form input[type=text]#datepicker,
.contact-one__form input[type=email]#datepicker,
.contact-one__form textarea#datepicker {
  cursor: pointer;
}
.contact-one__form textarea {
  height: 148px;
  padding-top: 16px;
}

.contact-info-one {
  position: relative;
  z-index: 2;
  margin: 0 0 -50px;
}
.contact-info-one__item {
    position: relative;
    background-color: var(--aofixo-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: 20px;
    border: 1px solid var(--aofixo-border-color, #eadfd9);
    padding: 32px 11px;
    transition: all 400ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .contact-info-one__item {
    padding: 40px 28px;
  }
}
.contact-info-one__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.15);
}
.contact-info-one__icon {
  font-size: 49px;
  color: var(--aofixo-base, #ffbe50);
  position: absolute;
  left: 49px;
  top: 34px;
}
.contact-info-one__title {
    font-size: 24px;
    letter-spacing: -0.96px;
    margin: 0 0 13px;
    text-align: center;
}
.contact-info-one__text {
  line-height: 30px;
  margin: 0;
}
.contact-info-one__text a {
  display: block;
  color: inherit;
}
.contact-info-one__text a:hover {
  color: var(--aofixo-base, #ffbe50);
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.topbar-one {
  background-color: var(--aofixo-white, #fff);
  position: relative;
}
.topbar-one .container-fluid {
  max-width: 1690px;
}
.topbar-one__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 991px) {
  .topbar-one__inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
@media (max-width: 767px) {
  .topbar-one__inner {
    display: block;
    text-align: center;
  }
}
.topbar-one__logo {
  position: relative;
}
.topbar-one__volunter {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: auto;
  font-size: 20px;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  color: var(--aofixo-black, #242020);
  font-weight: 400;
  border-left: 1px solid var(--aofixo-border-color, #eadfd9);
  margin-left: 40px;
  padding-left: 34px;
}
@media (max-width: 1299px) {
  .topbar-one__volunter {
    margin-left: 25px;
    padding-left: 25px;
  }
}
@media (max-width: 1199px) {
  .topbar-one__volunter {
    display: none;
  }
}
.topbar-one__volunter__icon {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 20px;
  color: var(--aofixo-secondary, #c44b4d);
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 13px;
}
.topbar-one__volunter__icon::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../images/shapes/header-heart.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topbar-one__volunter span {
  position: relative;
  transition: all 300ms ease;
  display: block;
  line-height: 1;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.topbar-one__volunter span::after {
  position: absolute;
  left: -15px;
  top: -16px;
  width: 19px;
  height: 14px;
  content: "";
  background-image: url(../images/shapes/arrow.png);
  mix-blend-mode: normal;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.topbar-one__volunter:hover span {
  background-size: 100% 1px;
  color: var(--aofixo-base, #ffbe50);
}
.topbar-one__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
.topbar-one__info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
}
@media (max-width: 991px) {
  .topbar-one__info {
    display: none;
  }
}
.topbar-one__info__icon {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--aofixo-secondary, #c44b4d);
  position: relative;
  top: 0;
  flex-shrink: 0;
}
.topbar-one__info__content {
  position: relative;
  display: block;
}
.topbar-one__info__content a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar-one__info__content a:hover {
  background-size: 100% 1px;
}
.topbar-one__info__text {
  display: block;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--aofixo-text, #6c6666);
  margin-bottom: 3px;
}
.topbar-one__info__number {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
  line-height: 1.2;
  transition: all 300ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.topbar-one__info:hover .topbar-one__info__number {
  background-size: 100% 1px;
  color: var(--aofixo-secondary, #c44b4d);
}
.topbar-one__info + .topbar-one__info {
  border-left: 1px solid var(--aofixo-border-color, #eadfd9);
  margin-left: 40px;
  padding-left: 40px;
}
@media (max-width: 1299px) {
  .topbar-one__info + .topbar-one__info {
    margin-left: 25px;
    padding-left: 25px;
  }
}
.topbar-one__social {
  display: flex;
  align-items: center;
  margin-left: 40px;
  line-height: 1em;
}
@media (max-width: 1299px) {
  .topbar-one__social {
    margin-left: 25px;
  }
}
@media (max-width: 767px) {
  .topbar-one__social {
    display: none;
  }
}
.topbar-one__social a {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.topbar-one__social a:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.topbar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.topbar-one__social a + a {
  margin-left: 10px;
}

.topbar-two {
  background-color: var(--aofixo-black, #242020);
  position: relative;
  padding: 0 65px;
}
@media (max-width: 1500px) {
  .topbar-two {
    padding: 0 0;
  }
}
@media (max-width: 767px) {
  .topbar-two {
    display: none;
  }
}
.topbar-two__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 13px;
  padding-bottom: 13px;
}
@media (max-width: 767px) {
  .topbar-two__inner {
    display: block;
    text-align: center;
  }
}
.topbar-two__info {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  font-size: 13px;
  line-height: 1;
  color: var(--aofixo-text-dark, #8e8787);
}
.topbar-two__info__icon {
  display: flex;
  align-items: center;
  color: var(--aofixo-base, #ffbe50);
  position: relative;
  top: 0;
}
.topbar-two__info__text {
  display: inline-block;
  transition: all 300ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.topbar-two__info:hover .topbar-two__info__text {
  background-size: 100% 1px;
  color: var(--aofixo-base, #ffbe50);
}
.topbar-two__info + .topbar-two__info {
  margin-left: 15px;
}
.topbar-two__right {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media (max-width: 991px) {
  .topbar-two__right .topbar-two__info {
    display: none;
  }
}
.topbar-two__social {
  display: flex;
  align-items: center;
  gap: 26px;
  line-height: 1em;
  padding-left: 40px;
  margin-left: 40px;
  border-left: 1px solid rgba(var(--aofixo-white-rgb, 255, 255, 255), 0.2);
}
@media (max-width: 1299px) {
  .topbar-two__social {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .topbar-two__social {
    display: none;
  }
}
.topbar-two__social a {
  position: relative;
  font-size: 14px;
  color: var(--aofixo-white, #fff);
  transition: all 500ms ease;
}
.topbar-two__social a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background-color: var(--aofixo-white, #fff);
  position: relative;
}
.main-header .container-fluid {
  max-width: 1690px;
}
.main-header__inner {
  display: flex;
  align-items: center;
  padding: 0 0;
  position: relative;
}
.main-header__logo {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .main-header__logo {
    width: auto;
  }
}
.main-header__left {
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 1199px) {
  .main-header__left {
    padding: 15px 30px;
  }
}
.main-header__cart, .main-header__search {
  font-size: 24px;
  color: var(--aofixo-white, #fff);
  transition: all 500ms ease;
  margin-left: 29px;
  line-height: 1em;
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--aofixo-base, #ffbe50);
}
.main-header__search {
  border-left: 1px solid RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.2);
  padding-top: 5px;
  padding-bottom: 4px;
  padding-left: 30px;
  margin-left: 0;
}
.main-header__btn {
  margin-left: 10px;
  min-width: 226px;
  text-align: left;
  padding-top: 17px;
  padding-left: 88px;
  padding-right: 20px;
  height: 63px;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
.main-header__nav {
    margin-right: auto;
}
@media (max-width: 1199px) {
    .main-header__nav {
        margin-left: 0;
    }
}
.main-header--two {
  background-color: transparent;
  position: absolute;
  left: 0;
  top: 41px;
  z-index: 9;
  width: 100%;
  padding: 0 65px;
}
@media (max-width: 1500px) {
  .main-header--two {
    padding: 0 0;
  }
}
@media (max-width: 767px) {
  .main-header--two {
    top: 0;
  }
}
.main-header--two .container-fluid {
  max-width: 100%;
  position: relative;
}
.main-header--two .main-header__top {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1170px;
  margin: 0 auto;
  gap: 10px;
  font-size: 13px;
  color: var(--aofixo-white, #fff);
  border-bottom: 1px solid RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.1);
  padding: 15px 0;
}
@media (max-width: 1500px) {
  .main-header--two .main-header__top {
    margin-left: auto;
    margin-right: 0;
    max-width: 1100px;
  }
}
@media (max-width: 1300px) {
  .main-header--two .main-header__top {
    max-width: 950px;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__top {
    display: none;
  }
}
.main-header--two .main-header__top__icon {
  width: 20px;
  height: 20px;
  background-image: url(../images/shapes/header-heart.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-header--two .main-header__top span {
  display: inline-block;
  transition: all 400ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.main-header--two .main-header__top:hover span {
  background-size: 100% 1px;
  color: var(--aofixo-secondary, #c44b4d);
}
.main-header--two .main-header__inner {
  justify-content: center;
  margin: 0 auto;
  max-width: 1170px;
}
@media (max-width: 1500px) {
  .main-header--two .main-header__inner {
    margin-left: auto;
    margin-right: 0;
    max-width: 1100px;
  }
}
@media (max-width: 1300px) {
  .main-header--two .main-header__inner {
    max-width: 950px;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    max-width: 100%;
    justify-content: flex-end;
    padding: 20px 0;
  }
}
.main-header--two .main-header__logo {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1500px) {
  .main-header--two .main-header__logo {
    left: 15px;
  }
}
.main-header--two .aofixo-btn {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 58px;
  padding-right: 30px;
}
@media (max-width: 1500px) {
  .main-header--two .aofixo-btn {
    display: none;
  }
}
.main-header--two .main-menu .main-menu__list > li {
  padding-top: 17px;
  padding-bottom: 20px;
}
.main-header--two .main-header__right {
  line-height: 1;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__right {
    display: flex;
    align-items: center;
  }
}
.main-header--two .main-header__cart,
.main-header--two .main-header__search {
  font-size: 22px;
  margin-left: 16px;
  border: none;
  position: relative;
}
.main-header--two .main-header__search::after {
  position: absolute;
  left: 0;
  top: -13px;
  content: "";
  width: 1px;
  height: 66px;
  background-color: RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.1);
}
@media (max-width: 1199px) {
  .main-header--two .main-header__search::after {
    top: -20px;
    height: 72px;
  }
}
.main-header--two.sticky-header--cloned {
  background-color: var(--aofixo-black, #242020);
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--aofixo-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--aofixo-black-rgb, 36, 32, 32), 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;
}

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

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 17px;
  padding-bottom: 18px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li + li {
  margin-left: 51px;
}
@media (max-width: 1400px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 40px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 35px;
  }
}
.main-menu .main-menu__list > li > a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--aofixo-white, #fff);
    font-weight: bold;
    text-transform: capitalize;
    position: relative;
    transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--aofixo-base, #ffbe50);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--aofixo-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 6px;
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 14px;
  line-height: 26px;
  color: var(--aofixo-text, #6c6666);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--aofixo-base, #ffbe50);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--aofixo-gray, #f5eeea);
  color: var(--aofixo-black, #242020);
}
.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(--aofixo-white, #fff);
  display: block !important;
  margin: 0;
}

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

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

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

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

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

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

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--aofixo-black, #242020);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--aofixo-base, #ffbe50);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--aofixo-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--aofixo-black, #242020);
  font-weight: 500;
  letter-spacing: var(--aofixo-letter-space, 0.1em);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
}
.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(--aofixo-black3-rgb, 0, 0, 0), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  font-size: 10px;
  padding: 11px 29px;
}
.demo-one__btn::before {
  background-color: var(--aofixo-base, #ffbe50);
}
.demo-one__btn::after {
  background-color: var(--aofixo-black, #242020);
}
.demo-one__btn:hover {
  color: var(--aofixo-white, #fff);
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase {
  position: relative;
}
.home-showcase .container {
  margin-left: 0;
}
.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--aofixo-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 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: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
}
.why-choose-one__shape-1 {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 10;
  animation: shapeMove 4s linear 0s infinite;
}
@media (min-width: 992px) {
  .why-choose-one__shape-1 {
    display: block;
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
.why-choose-one__inner {
  background-color: var(--aofixo-gray, #f5eeea);
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}
.why-choose-one__inner::before {
  content: "";
  width: 10000px;
  height: 100%;
  background-color: var(--aofixo-gray, #f5eeea);
  position: absolute;
  top: 0;
  right: 100%;
}
.why-choose-one .container {
  position: relative;
}
.why-choose-one__content {
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 1200px) {
  .why-choose-one__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.why-choose-one__image {
  text-align: right;
  margin-top: 35px;
}
@media (min-width: 1200px) {
  .why-choose-one__image {
    margin-top: 0;
  }
}
.why-choose-one__image img {
  max-width: 100%;
}
@media (min-width: 1200px) {
  .why-choose-one__image img {
    max-width: none;
  }
}
.why-choose-one__highlighted {
  margin: 0;
  color: var(--aofixo-base, #ffbe50);
  font-size: 18px;
  line-height: 30px;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .why-choose-one__highlighted {
    font-size: 20px;
  }
}
.why-choose-one__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  margin-top: 15px;
}
@media (min-width: 1200px) {
  .why-choose-one__text {
    margin-top: 20px;
  }
}
.why-choose-one__list {
  margin-top: 45px;
}
.why-choose-one__list__item {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .why-choose-one__list__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.why-choose-one__list__item + .why-choose-one__list__item {
  margin-top: 20px;
}
.why-choose-one__list__icon {
  width: 57px;
  height: 57px;
  background-color: var(--aofixo-base, #ffbe50);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--aofixo-white, #fff);
  font-size: 21px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-bottom: 15px;
  transition: all 500ms ease;
}
.why-choose-one__list__icon i {
  transform: scale(1);
  transition: 500ms ease;
}
.why-choose-one__list__icon:hover {
  background-color: var(--aofixo-black, #242020);
  color: var(--aofixo-white, #fff);
}
.why-choose-one__list__icon:hover i {
  transform: scale(0.9);
}
@media (min-width: 1200px) {
  .why-choose-one__list__icon {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.why-choose-one__list__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--aofixo-black, #242020);
  font-weight: bold;
}
@media (min-width: 1200px) {
  .why-choose-one__list__title {
    min-width: 130px;
  }
}
.why-choose-one__list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.why-choose-one__list__title a:hover {
  background-size: 100% 1px;
}
.why-choose-one__list__text {
  margin: 0;
  font-size: 15px;
  line-height: 26px;
  position: relative;
}
.why-choose-one__list__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 57px;
  background-color: var(--aofixo-border-color, #eadfd9);
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media (min-width: 1200px) {
  .why-choose-one__list__text::before {
    display: block;
  }
}
@media (min-width: 1200px) {
  .why-choose-one__list__text {
    padding-left: 30px;
  }
}

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

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

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  background-color: var(--aofixo-black, #242020);
  position: relative;
  padding-top: 120px;
  padding-bottom: 194px;
}
@media (max-width: 767px) {
  .funfact-one {
    padding-top: 80px;
    padding-bottom: 150px;
  }
}
.funfact-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aofixo-black, #242020);
  background-size: cover;
  background-position: center center;
  mix-blend-mode: luminosity;
  opacity: 0.08;
}
.funfact-one__item {
  position: relative;
  text-align: center;
}
.funfact-one__item::before {
  content: "";
  width: 1px;
  height: 95%;
  background-color: var(--aofixo-white, #fff);
  position: absolute;
  top: 4px;
  right: -15px;
  opacity: 0.1;
}
.funfact-one__item:hover .funfact-one__icon {
  transform: rotateY(360deg);
}
.funfact-one__item--noborder::before {
  display: none;
}
.funfact-one__icon {
  font-size: 64px;
  line-height: 64px;
  color: var(--aofixo-base, #ffbe50);
  display: block;
  margin-bottom: 30px;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.funfact-one__count {
  margin: 0;
  color: var(--aofixo-white, #fff);
  font-size: 35px;
  letter-spacing: -1px;
  line-height: 1;
}
@media (min-width: 768px) {
  .funfact-one__count {
    font-size: 50px;
    letter-spacing: -2px;
  }
}
.funfact-one__text {
  margin: 0;
  color: var(--aofixo-text-dark, #8e8787);
  font-size: 20px;
  margin-top: 1px;
}

.funfact-two {
  background-color: var(--aofixo-black, #242020);
  position: relative;
  padding-top: 120px;
  padding-bottom: 110px;
}
@media (max-width: 767px) {
  .funfact-two {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.funfact-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--aofixo-black, #242020);
  background-size: cover;
  background-position: center center;
  mix-blend-mode: luminosity;
  opacity: 0.4;
}
.funfact-two__content {
  position: relative;
  z-index: 1;
}
.funfact-two__content .video-popup {
  width: 62px;
  height: 62px;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  position: relative;
  z-index: 2;
  margin: 17px 0 69px;
}
@media (max-width: 767px) {
  .funfact-two__content .video-popup {
    margin: 0 0 35px;
  }
}
.funfact-two__content .video-popup__border-one {
  border: 1px solid rgba(var(--aofixo-white-rgb, 255, 255, 255), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  border-radius: 50%;
  animation: zoomBig 2s linear infinite;
  z-index: 1;
}
.funfact-two__content .video-popup__border-two {
  border: 1px solid rgba(var(--aofixo-white-rgb, 255, 255, 255), 0.4);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  border-radius: 50%;
  animation: zoomBig 3s linear infinite;
  z-index: 1;
}
.funfact-two__content .video-popup:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.funfact-two__content__shape {
  position: absolute;
  left: 93px;
  top: 34px;
  animation: carMove 4s linear infinite;
}
@keyframes carMove {
  0%, 100% {
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-3deg) translateX(5px);
  }
  50% {
    transform: rotate(-6deg) translateX(10px);
  }
}
.funfact-two__content .sec-title {
  margin: 0;
  padding: 0;
}
.funfact-two__content .sec-title__tagline {
  color: var(--aofixo-base, #ffbe50);
  margin-bottom: 11px;
}
.funfact-two__content .sec-title__tagline::before {
  display: none;
}
.funfact-two__content .sec-title__title {
  color: var(--aofixo-white, #fff);
  font-size: 60px;
  letter-spacing: -2.4px;
}
@media (max-width: 1199px) {
  .funfact-two__content .sec-title__title br {
    display: none;
  }
}
@media (max-width: 991px) {
  .funfact-two__content .sec-title__title {
    font-size: 43px;
    letter-spacing: -1px;
  }
  .funfact-two__content .sec-title__title br {
    display: none;
  }
}
@media (max-width: 767px) {
  .funfact-two__content .sec-title__title {
    font-size: 36px;
    letter-spacing: -1px;
    margin: 0 0 45px;
  }
}
.funfact-two__item {
  position: relative;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
  padding: 43px 35px 43px 182px;
  min-height: 112px;
  margin-bottom: 10px;
}
.funfact-two__item:hover .funfact-two__icon i {
  transform: rotateY(180deg);
}
.funfact-two__item--color {
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 20px 0 20px 20px;
}
.funfact-two__item--color .funfact-two__icon {
  background-color: var(--aofixo-white, #fff);
  color: var(--aofixo-black, #242020);
}
.funfact-two__item--color .funfact-two__text,
.funfact-two__item--color .funfact-two__count {
  color: var(--aofixo-white, #fff);
}
.funfact-two__icon {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background-color: var(--aofixo-black, #242020);
  font-size: 64px;
  color: var(--aofixo-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.funfact-two__icon i {
  display: block;
  transition: all 0.6s ease;
}
.funfact-two__count {
  margin: 0;
  color: var(--aofixo-black, #242020);
  font-weight: 400;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  display: block;
  font-size: 50px;
  line-height: 1;
}
.funfact-two__text {
  margin: 0;
  color: var(--aofixo-black, #242020);
  font-size: 18px;
  line-height: 25px;
  font-weight: 600;
  margin-top: 6px;
  display: block;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .testimonials-one {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (min-width: 1360px) {
  .testimonials-one .container {
    max-width: 1312px;
  }
}
.testimonials-one .col-xl-4 {
  flex: 0 0 auto;
  width: 31.5%;
}
@media (max-width: 1199px) {
  .testimonials-one .col-xl-4 {
    width: 38%;
  }
}
@media (max-width: 991px) {
  .testimonials-one .col-xl-4 {
    width: 100%;
  }
}
.testimonials-one .col-xl-8 {
  flex: 0 0 auto;
  width: 68.5%;
}
@media (max-width: 1199px) {
  .testimonials-one .col-xl-8 {
    width: 62%;
  }
}
@media (max-width: 991px) {
  .testimonials-one .col-xl-8 {
    width: 100%;
  }
}
.testimonials-one__custome-nav {
  position: relative;
  max-width: 348px;
}
.testimonials-one__custome-nav .col-md-6:last-of-type,
.testimonials-one__custome-nav .col-md-6:nth-child(1) {
  width: 100%;
}
@media (max-width: 767px) {
  .testimonials-one__custome-nav .col-md-6 {
    width: 50%;
  }
}
.testimonials-one__thumb {
  position: relative;
  max-width: 345px;
}
.testimonials-one__thumb__item {
  position: relative;
  width: 173px;
  height: 173px;
  background-color: var(--aofixo-black, #242020);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
}
.testimonials-one__thumb__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}
.testimonials-one__thumb__item:hover img {
  opacity: 1;
  filter: grayscale(0);
}
.active .testimonials-one__thumb__item img {
  opacity: 1;
  filter: grayscale(0);
}
.testimonials-one__curved-circle-box {
  width: 173px;
  height: 173px;
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  background-color: var(--aofixo-white, #fff);
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.testimonials-one__curved-circle-box .curved-circle {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 170px !important;
  height: 170px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.testimonials-one__curved-circle-box .curved-circle--item {
  width: 170px !important;
  height: 170px !important;
}
.testimonials-one__curved-circle-box .curved-circle--item span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--aofixo-secondary, #c44b4d);
  letter-spacing: 0.7em;
}
.testimonials-one__curved-circle-box i {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aofixo-secondary, #c44b4d);
}
.testimonials-one__wrapper {
  position: relative;
  border-radius: 30px;
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 82px 100px 0;
}
@media (max-width: 1199px) {
  .testimonials-one__wrapper {
    padding: 52px 40px 0;
  }
}
@media (max-width: 991px) {
  .testimonials-one__wrapper {
    margin-top: 50px;
  }
}
.testimonials-one__wrapper::after {
  position: absolute;
  content: "";
  left: -40px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 88px 40px 88px 0;
  border-color: transparent var(--aofixo-gray, #f5eeea) transparent transparent;
}
@media (max-width: 991px) {
  .testimonials-one__wrapper::after {
    border-width: 0 40px 40px 40px;
    border-color: transparent transparent var(--aofixo-gray, #f5eeea) transparent;
    left: 30px;
    bottom: auto;
    top: -40px;
  }
}
.testimonials-one__wrapper__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto;
  mix-blend-mode: luminosity;
  opacity: 0.15;
}
.testimonials-one__carousel.owl-carousel .owl-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 44px 0 0;
}
.testimonials-one__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 92px;
  height: 52px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px 20px 0 0;
  display: block;
  color: var(--aofixo-black, #242020);
  font-size: 32px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--aofixo-base, #ffbe50);
}

.testimonials-card {
  position: relative;
}
.testimonials-card__quatation {
  color: var(--aofixo-base, #ffbe50);
  font-size: 150px;
  line-height: 1;
  display: block;
  height: 52px;
  margin: 0 0 34px;
}
.testimonials-card__content {
  font-size: 26px;
  line-height: 46px;
  font-weight: 400;
  margin-bottom: 44px;
}
@media (max-width: 767px) {
  .testimonials-card__content {
    font-size: 20px;
    line-height: 36px;
    margin-bottom: 34px;
  }
}
.testimonials-card__meta {
  margin: 0;
  display: flex;
  align-items: baseline;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.96px;
  margin: 0;
}
.testimonials-card__meta__designation {
  margin: 0;
  font-size: 13px;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  color: var(--aofixo-secondary, #c44b4d);
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 23px;
  position: relative;
}
.testimonials-card__meta__designation::after {
  position: absolute;
  left: 11px;
  bottom: 0;
  content: ".";
  color: var(--aofixo-black, #242020);
  font-size: 24px;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
}

.testimonials-two {
  position: relative;
  padding: 0 0;
  background-size: auto;
  background-position: top center;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 0 0;
  }
}
.testimonials-two .client-carousel__one {
  padding: 98px 0 100px;
  margin-bottom: 120px;
}
@media (max-width: 991px) {
  .testimonials-two .client-carousel__one {
    padding: 70px 0;
    margin-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .testimonials-two .client-carousel__one {
    padding: 60px 0;
    margin-bottom: 80px;
  }
}
.testimonials-two .client-carousel__one__item img {
  opacity: 0.2;
}
.testimonials-two .client-carousel__one__item:hover img {
  opacity: 0.6;
}
.testimonials-two__content {
  position: relative;
  z-index: 2;
}
.testimonials-two__content .sec-title {
  padding-bottom: 28px;
}
.testimonials-two__content__text {
  font-size: 16px;
  margin: 0 0 42px;
}
.testimonials-two__donar {
  position: relative;
  padding: 0 0 0 90px;
}
.testimonials-two__donar__icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 60px;
  line-height: 52px;
  height: 62px;
  width: 62px;
  color: var(--aofixo-secondary, #c44b4d);
}
.testimonials-two__donar__number {
  line-height: 1;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-size: 46px;
  font-weight: 400;
  color: var(--aofixo-secondary, #c44b4d);
  margin: 0 0 -3px;
}
.testimonials-two__donar__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}
.testimonials-two__custome-navs {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 0 52px;
}
@media (max-width: 991px) {
  .testimonials-two__custome-navs {
    position: absolute;
    left: 0;
    bottom: -130px;
  }
}
.testimonials-two__custome-navs button {
  transition: all 400ms ease;
  width: 92px;
  height: 52px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px 20px 0 0;
  display: block;
  color: var(--aofixo-black, #242020);
  font-size: 32px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonials-two__custome-navs button:hover {
  background-color: var(--aofixo-base, #ffbe50);
}
.testimonials-two__carousel {
  position: relative;
}
@media (min-width: 1600px) {
  .testimonials-two .aofixo-stretch-element-inside-column {
    padding-right: 70px;
  }
}
.testimonials-two__item {
  position: relative;
  background-color: var(--aofixo-white, #fff);
  margin: 56px 0 0;
  transition: all 500ms ease;
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
  padding: 59px 58px 57px;
  border-radius: 20px;
}
@media (max-width: 1399px) {
  .testimonials-two__item {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 991px) {
  .testimonials-two__item {
    margin-top: 110px;
  }
}
.testimonials-two__item__author {
  position: absolute;
  z-index: 2;
  right: 39px;
  top: -57px;
  width: 111px;
  height: 111px;
  border-radius: 50%;
}
.testimonials-two__item__author::before {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: calc(100% + 21px);
  height: calc(100% + 21px);
  background-image: linear-gradient(-55deg, var(--aofixo-base, #ffbe50) 0%, var(--aofixo-secondary, #c44b4d) 100%);
  border-radius: 50%;
  z-index: -1;
}
.testimonials-two__item__author::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: calc(100% + 11px);
  height: calc(100% + 11px);
  background-color: var(--aofixo-white, #fff);
  border-radius: 50%;
  z-index: -1;
}
.testimonials-two__item__author img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.testimonials-two__item__ratings {
  display: flex;
  align-items: center;
  color: var(--aofixo-base, #ffbe50);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
.testimonials-two__item__content {
  font-size: 18px;
  line-height: 36px;
  font-weight: 400;
  margin: 0 0 26px;
}
.testimonials-two__item__meta {
  margin: 0;
  display: flex;
  align-items: baseline;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.96px;
  margin: 0;
}
.testimonials-two__item__meta__designation {
  margin: 0;
  font-size: 13px;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  color: var(--aofixo-secondary, #c44b4d);
  font-weight: 500;
  letter-spacing: 0;
  padding-left: 23px;
  position: relative;
}
.testimonials-two__item__meta__designation::after {
  position: absolute;
  left: 11px;
  bottom: 0;
  content: ".";
  color: var(--aofixo-black, #242020);
  font-size: 24px;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
}
.testimonials-two__item__quatation {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 82px;
  border-radius: 20px 0 20px 0;
  padding: 26px 0;
  line-height: 0.8;
  text-align: center;
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-border-color, #eadfd9);
  font-size: 80px;
  margin: 0;
  transition: all 0.4s ease;
}
.testimonials-two__item:hover .testimonials-two__item__quatation {
  color: var(--aofixo-secondary, #c44b4d);
}

.testimonials-three {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0;
  }
}
.testimonials-three__content {
  position: relative;
}
.testimonials-three__content .sec-title {
  padding-bottom: 27px;
}
.testimonials-three__content__text {
  font-size: 15px;
  line-height: 30px;
  margin: 0 0 28px;
}
.testimonials-three__carousel-nav {
  position: relative;
  display: flex;
  align-items: center;
}
.testimonials-three__carousel-nav a {
  width: 57px;
  height: 57px;
  background-color: var(--aofixo-white, #fff);
  font-size: 16px;
  color: var(--aofixo-black, #242020);
  border-radius: 50%;
  line-height: 58px;
  text-align: center;
}
.testimonials-three__carousel-nav a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-white, #fff);
}
.testimonials-three__carousel-nav a + a {
  margin-left: 10px;
}
.testimonials-three__item {
  position: relative;
  display: flex;
}
@media (max-width: 1199px) {
  .testimonials-three__item {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .testimonials-three__item {
    display: block;
  }
}
.testimonials-three__item__content {
  max-width: 430px;
  position: relative;
  z-index: 2;
  background-color: var(--aofixo-white, #fff);
  background-position: top right;
  background-repeat: no-repeat;
  padding: 10px;
  box-shadow: 0px 10px 60px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 0.07);
}
.testimonials-three__item__content::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 74px 40px 0;
  border-color: transparent var(--aofixo-white, #fff) transparent transparent;
  position: absolute;
  right: 115px;
  bottom: -40px;
  content: "";
}
.testimonials-three__item__thumb {
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .testimonials-three__item__thumb {
    right: 50px;
  }
}
@media (max-width: 767px) {
  .testimonials-three__item__thumb {
    position: relative;
    margin: 50px 0 0;
  }
}
.testimonials-three__item__thumb-one {
  display: inline-block;
  border-radius: 50%;
  overflow: hidden;
  margin: 26px 0 0;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.testimonials-three__item__thumb-one img {
  max-width: 100%;
  border-radius: 50%;
}
.testimonials-three__item__thumb-two {
  position: absolute;
  right: 0;
  top: 0;
  width: 197px;
  height: 197px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.testimonials-three__item__thumb-two img {
  max-width: 100%;
  border-radius: 50%;
}
.testimonials-three__item__thumb-flower {
  position: absolute;
  right: -53px;
  top: 68px;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .testimonials-three__item__thumb-flower {
    display: none;
  }
}
.testimonials-three__item__thumb-flower img {
  max-width: 100%;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
.testimonials-three__meta {
  display: flex;
  align-items: center;
  background-color: var(--aofixo-base, #ffbe50);
  padding: 10px 48px 10px;
  margin-bottom: 29px;
}
@media (max-width: 767px) {
  .testimonials-three__meta {
    padding-right: 30px;
    padding-left: 30px;
  }
}
.testimonials-three__meta__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--aofixo-white, #fff);
}
.testimonials-three__meta__designation {
  position: relative;
  margin: 0 0 0 30px;
  font-size: 14px;
  color: var(--aofixo-white, #fff);
}
.testimonials-three__meta__designation::before {
  position: absolute;
  left: -18px;
  bottom: -3px;
  content: ".";
  color: var(--aofixo-white, #fff);
  font-size: 18px;
  font-weight: 700;
}
.testimonials-three__ratings {
  display: flex;
  align-items: center;
  color: var(--aofixo-base, #ffbe50);
  font-size: 16px;
  letter-spacing: 3px;
  margin: 0 0px 19px 50px;
}
@media (max-width: 767px) {
  .testimonials-three__ratings {
    margin-left: 30px;
  }
}
.testimonials-three__quote {
  font-size: 24px;
  line-height: 40px;
  color: var(--aofixo-black, #242020);
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  font-weight: 700;
  font-style: italic;
  margin: 0 40px 36px 50px;
}
@media (max-width: 767px) {
  .testimonials-three__quote {
    margin-right: 30px;
    margin-left: 30px;
  }
}
.testimonials-three .active .testimonials-three__item__thumb-one {
  animation-delay: 0.3s;
  animation-name: fadeInUp;
}
.testimonials-three .active .testimonials-three__item__thumb-two {
  animation-delay: 0.4s;
  animation-name: fadeInUp;
}
.testimonials-three .active .testimonials-three__item__thumb-flower {
  animation-delay: 0.5s;
  animation-name: fadeInUp;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
    position: relative;
    margin-top: -80px;
    z-index: 2;
}
@media (min-width: 1300px) {
  .cta-one .container {
    max-width: 1280px;
  }
}
.cta-one__inner {
  position: relative;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--aofixo-secondary, #c44b4d);
}
.cta-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-size: auto;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.3;
}
.cta-one__image {
  position: relative;
}
.cta-one__image img {
  max-width: 100%;
}
@media (max-width: 767px) {
  .cta-one__image img {
    width: 100%;
  }
}
.cta-one__content {
    position: relative;
    padding: 47px 78px 17px 24px;
}
@media (max-width: 1199px) {
  .cta-one__content {
    padding: 70px 30px;
  }
}
.cta-one__content .aofixo-btn {
  margin-left: auto;
  font-size: 12px;
  padding: 8px 30px;
}
    .cta-one__content .aofixo-btn:hover {
        color: var(--aofixo-black, #242020);
    }
.cta-one__content .aofixo-btn::after {
  background-color: var(--aofixo-white, #fff);
}
@media (max-width: 767px) {
  .cta-one__content .aofixo-btn {
    margin: 0 0 0;
  }
}
.cta-one__meta {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  margin-bottom: 6px;
}
.cta-one__meta li {
  color: var(--aofixo-white, #fff);
  font-size: 14px;
  display: flex;
  align-items: center;
}
.cta-one__meta li i {
  color: var(--aofixo-base, #ffbe50);
  margin-right: 3px;
}
.cta-one__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2em;
  color: var(--aofixo-white, #fff);
  letter-spacing: -1.44px;
  margin-bottom: 10px;
}
.cta-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cta-one__title a:hover {
  background-size: 100% 1px;
}
.cta-one__title a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.cta-one__text {
  color: #ffcbcc;
  font-size: 16px;
  margin: 0 0 41px;
}
.cta-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 42px;
}
@media (max-width: 767px) {
  .cta-one__bottom {
    gap: 25px;
  }
}
.cta-one__box {
  position: relative;
  padding: 4px 0 0 78px;
}
.cta-one__box__icon {
  width: 59px;
  height: 59px;
  background-color: var(--aofixo-black, #242020);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 30px;
  color: var(--aofixo-white, #fff);
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
}
.cta-one__box__icon i {
  font-size: 24px;
}
.cta-one__box__title {
  color: var(--aofixo-base, #ffbe50);
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-weight: 400;
  font-size: 20px;
  margin: 0 0 0;
}
.cta-one__box__price {
  font-size: 24px;
  color: var(--aofixo-white, #fff);
  letter-spacing: -0.96px;
  margin: 0;
}

.cta-two {
  position: relative;
}
.cta-two__inner {
  position: relative;
  z-index: 2;
  padding: 75px 80px 74px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background-color: var(--aofixo-base, #ffbe50);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cta-two__inner {
    padding: 75px 30px 74px;
  }
}
.cta-two__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-size: auto;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
.cta-two__title {
  font-size: 46px;
  letter-spacing: -1.84px;
  margin: 0;
}
@media (max-width: 991px) {
  .cta-two__title {
    font-size: 36px;
    margin-bottom: 30px;
  }
}
.cta-two__title span {
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-weight: 400;
}
.cta-two .aofixo-btn {
  background-color: var(--aofixo-black, #242020);
  color: var(--aofixo-white, #fff);
}
.cta-two .aofixo-btn::before {
  background-color: var(--aofixo-black, #242020);
}

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

.gallery-two {
  position: relative;
  overflow: hidden;
  padding: 0 0 20px;
}
.gallery-two .container-fluid {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 767px) {
  .gallery-two .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.gallery-two .row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
}
.gallery-two__col-one {
  width: 65%;
}
@media (max-width: 1199px) {
  .gallery-two__col-one {
    width: 100%;
  }
}
.gallery-two__col-two {
  width: 35%;
}
@media (max-width: 1199px) {
  .gallery-two__col-two {
    width: 100%;
  }
}
.gallery-two__card {
  position: relative;
  overflow: hidden;
  background-color: var(--aofixo-black, #242020);
}
.gallery-two__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-two__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--aofixo-black-rgb, 36, 32, 32), 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-two__card__hover .img-popup {
  position: relative;
}
.gallery-two__card:hover img {
  transform: scale(1.05);
  opacity: 0.9;
  mix-blend-mode: screen;
}
.gallery-two__card:hover .gallery-two__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-two__card a {
  width: 75px;
  height: 75px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: var(--aofixo-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-two__card a:hover .gallery-two__card__icon::after, .gallery-two__card a:hover .gallery-two__card__icon::before {
  background-color: var(--aofixo-base, #ffbe50);
}
.gallery-two__card__icon {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
}
.gallery-two__card__icon::after, .gallery-two__card__icon::before {
  content: "";
  width: 2px;
  height: 100%;
  background-color: var(--aofixo-black, #242020);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 400ms ease;
}
.gallery-two__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.gallery-two__info {
  position: relative;
  background-color: var(--aofixo-base, #ffbe50);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0 50px 0 100px;
  height: 100%;
}
@media (min-width: 1200px) {
  .gallery-two__info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
  }
}
@media (max-width: 1500px) {
  .gallery-two__info {
    padding-left: 40px;
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .gallery-two__info {
    padding: 80px 50px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info {
    padding: 50px 30px;
  }
}
.gallery-two__info__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
}
.gallery-two__info__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-two__info__title {
  color: var(--aofixo-white, #fff);
  font-size: 44px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 42px;
  }
}
@media (max-width: 767px) {
  .gallery-two__info__title {
    font-size: 35px;
    line-height: 45px;
  }
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar {
  position: relative;
}
.sidebar__single {
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .sidebar__single {
    padding: 50px;
  }
}
.sidebar__single--search {
  padding: 0;
  background-color: transparent;
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.96px;
  margin-top: -4px;
  margin-bottom: 23px;
}
@media (min-width: 768px) {
  .sidebar__title {
    font-size: 24px;
  }
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 70px;
  background-color: var(--aofixo-secondary, #c44b4d);
  font-size: 15px;
  color: var(--aofixo-white, #fff);
  border: none;
  font-weight: 500;
  padding-left: 50px;
  padding-right: 30px;
  box-shadow: none;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  border-radius: 20px;
  transition: all 500ms ease;
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
  width: auto;
  font-size: 22px;
  color: var(--aofixo-white, #fff);
  transition: all 500ms ease;
}
.sidebar__search button[type=submit]:hover {
  color: var(--aofixo-base, #ffbe50);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 26px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 18px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
}
.sidebar__posts__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar__posts__title {
  margin: 0;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: -0.72px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.sidebar__posts__meta {
  margin: 0;
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.sidebar__posts__meta a {
  display: inline-flex;
  align-items: center;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  line-height: 1em;
  transition: all 500ms ease;
}
.sidebar__posts__meta a:hover {
  color: var(--aofixo-secondary, #c44b4d);
  text-shadow: 0 0 1px currentColor;
}
.sidebar__posts__meta a i {
  color: var(--aofixo-secondary, #c44b4d);
  margin-right: 3px;
}
.sidebar__categories {
  margin-bottom: -18px;
  margin-top: -18px;
}
.sidebar__categories li:not(:last-of-type) {
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
.sidebar__categories li a {
  font-size: 16px;
  color: var(--aofixo-text, #6c6666);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  transition: all 500ms ease;
  padding: 11px 0;
  position: relative;
}
.sidebar__categories li a::before {
  position: absolute;
  left: 0;
  margin-top: 3px;
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 13px;
  color: var(--aofixo-secondary, #c44b4d);
  visibility: hidden;
  opacity: 0;
}
.sidebar__categories li a:hover {
  padding-left: 25px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
}
.sidebar__categories li a:hover::before {
  visibility: visible;
  opacity: 1;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.sidebar__tags a {
  background-color: var(--aofixo-white, #fff);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 800;
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  display: inline-flex;
  border-radius: 30px;
  padding: 7.2px 18px;
}
.sidebar__tags a:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 23px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--aofixo-base, #ffbe50);
  font-size: 16px;
  color: var(--aofixo-black, #242020);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.sidebar__comments__title {
  margin: 0;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  color: var(--aofixo-text, #6c6666);
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--aofixo-black, #242020);
}

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

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 50px 0;
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__content {
  position: relative;
}
.blog-details__image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 0 20px;
}
.blog-details__image img {
  max-width: 100%;
  height: auto;
}
.blog-details .blog-card__date {
  margin-bottom: 14px;
}
.blog-details__title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin: 0 0 12px;
}
@media (max-width: 767px) {
  .blog-details__title {
    font-size: 32px;
  }
}
.blog-details__text {
  margin: 0 0 32px;
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  gap: 20px;
  padding: 30px 0;
  margin: 52px 0 0;
}
.blog-details__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__tags__title {
  margin: 0;
  line-height: 1em;
  font-size: 20px;
  letter-spacing: -0.8px;
  margin-top: -4px;
  margin-bottom: -4px;
}
.blog-details__tags .sidebar__tags a {
  background-color: var(--aofixo-gray, #f5eeea);
  color: var(--aofixo-text, #6c6666);
  padding: 7.2px 19.5px;
}
.blog-details__tags .sidebar__tags a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-black, #242020);
}
.blog-details__social {
  display: flex;
  align-items: center;
  line-height: 1em;
}
.blog-details__social a {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.blog-details__social a:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.blog-details__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.blog-details__social a + a {
  margin-left: 10px;
}
.blog-details__paginations {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 767px) {
  .blog-details__paginations {
    grid-template-columns: repeat(1, 1fr);
  }
}
.blog-details__paginations__item {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 20px 20px 0 20px;
  padding: 20px;
  transition: all 400ms ease;
}
@media (min-width: 1200px) {
  .blog-details__paginations__item {
    padding: 30px;
  }
}
.blog-details__paginations__item:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
}
.blog-details__paginations__item:hover .blog-details__paginations__title {
  color: var(--aofixo-white, #fff);
}
.blog-details__paginations__item:last-of-type {
  border-radius: 20px 20px 20px 0;
}
.blog-details__paginations__image {
  width: 117px;
  height: 117px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.blog-details__paginations__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-details__paginations__title {
  font-size: 24px;
  letter-spacing: -0.96px;
  margin: 0;
}
.blog-details__paginations__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-details__paginations__title a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-one {
    margin-top: 55px;
  }
}
.comments-one__title {
  margin: 0;
  font-size: 30px;
  color: var(--aofixo-black, #242020);
  letter-spacing: -1.44px;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 992px) {
  .comments-one__title {
    font-size: 36px;
  }
}
.comments-one__list {
  margin: 0;
  margin-top: 54px;
}
.comments-one__card {
  margin-bottom: 60px;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
@media (max-width: 767px) {
  .comments-one__card {
    display: block;
  }
}
.comments-one__card__image {
  margin-right: 45px;
}
@media (max-width: 767px) {
  .comments-one__card__image {
    margin: 0 0 20px;
  }
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.96px;
  margin-top: 10px;
  margin-bottom: 22px;
}
.comments-one__card__text {
  margin: 0;
  font-size: 15px;
  line-height: 2em;
  margin: 0;
  max-width: 560px;
}
.comments-one__card__reply {
  padding: 8.5px 20px;
  font-size: 10px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 767px) {
  .comments-one__card__reply {
    margin-top: 20px;
    position: relative;
  }
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 40px;
}
@media (min-width: 1200px) {
  .comments-form {
    margin-top: 55px;
  }
}
.comments-form__title {
  margin: 0;
  font-size: 30px;
  color: var(--aofixo-black, #242020);
  letter-spacing: -1.44px;
  margin-top: -4px;
  margin-bottom: -4px;
}
@media (min-width: 992px) {
  .comments-form__title {
    font-size: 36px;
  }
}
.comments-form__form {
  margin-top: 54px;
}
.comments-form .form-one input[type=text],
.comments-form .form-one input[type=email],
.comments-form .form-one textarea {
  border-radius: 20px;
}
.comments-form .form-one textarea {
  height: 148px;
  padding-top: 16px;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  font-size: 20px;
  letter-spacing: -0.8px;
  margin-top: -4px;
  margin-bottom: 4px;
}
.product__search {
  position: relative;
  display: block;
  margin-bottom: 30px;
}
.product__search form {
  border-radius: 0;
  position: relative;
}
.product__search form input[type=text] {
  width: 100%;
  height: 70px;
  background-color: var(--aofixo-secondary, #c44b4d);
  padding-left: 30px;
  padding-right: 30px;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  font-size: 16px;
  color: var(--aofixo-white, #fff);
  border: none;
  outline: none;
  font-weight: 500;
  border-radius: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__search form input[type=text] {
    padding-left: 20px;
  }
}
.product__price-ranger {
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product__price-ranger #slider-range {
  margin: 20px 0 0 0px;
  background: var(--aofixo-white, #fff);
  border: none;
  height: 5px;
  border-radius: 20px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--aofixo-secondary, #c44b4d);
  border-radius: 20px;
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -5px;
  background: var(--aofixo-secondary, #c44b4d);
  border: 0;
  height: 14px;
  width: 14px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 16px 0 0 -5px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  top: 4px;
  display: block;
  background-color: var(--aofixo-base, #ffbe50);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--aofixo-black, #242020);
  font-size: 10px;
  font-weight: 800;
  line-height: 33px;
  margin: 0;
  cursor: pointer;
  padding: 0 18px;
  height: 33px;
  border-radius: 30px;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.product__categories {
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 40px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product__categories ul li:not(:last-of-type) {
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
.product__categories ul li a {
  font-size: 16px;
  color: var(--aofixo-text, #6c6666);
  display: flex;
  align-items: center;
  text-transform: capitalize;
  transition: all 500ms ease;
  padding: 11px 0;
  position: relative;
}
.product__categories ul li a::before {
  position: absolute;
  left: 0;
  margin-top: 3px;
  content: "\f004";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: all 500ms ease;
  font-size: 13px;
  color: var(--aofixo-secondary, #c44b4d);
  visibility: hidden;
  opacity: 0;
}
.product__categories ul li a:hover {
  padding-left: 25px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
}
.product__categories ul li a:hover::before {
  visibility: visible;
  opacity: 1;
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .product__info-top {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .product__info-top {
    display: block;
    margin-top: 40px;
  }
}
.product__showing-text {
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 767px) {
  .product__showing-text {
    margin-bottom: 20px;
  }
}
.product__showing-sort {
  margin: 0;
  font-size: 18px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 340px !important;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
}
@media (max-width: 360px) {
  .product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 300px !important;
  }
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 70px;
  outline: none !important;
  border-radius: 20px;
  border: 0;
  background-color: var(--aofixo-gray, #f5eeea) !important;
  margin: 0;
  padding: 0;
  padding-left: 40px;
  padding-right: 40px;
  color: var(--aofixo-text, #6c6666) !important;
  font-size: 14px;
  line-height: 70px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  color: var(--aofixo-text, #6c6666);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 30px;
  color: var(--aofixo-text, #6c6666);
  background-color: var(--aofixo-gray, #f5eeea);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-white, #fff);
  border-color: var(--aofixo-base, #ffbe50);
}
.product__item {
  position: relative;
  background-color: var(--aofixo-white, #fff);
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  transition: all 500ms ease;
  border-radius: 20px;
  overflow: hidden;
}
.product__item:hover {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.product__item__img {
  background-color: var(--aofixo-white, #fff);
  position: relative;
  overflow: hidden;
}
.product__item__img img {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  color: var(--aofixo-black, #242020);
  font-size: 14px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-black, #242020);
}
.product__item__btn a:nth-child(1) {
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(2) {
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a + a {
  margin-top: 10px;
}
.product__item:hover .product__item__img img {
  transform: scale(1.05);
}
.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.product__item__content {
  position: relative;
  text-align: center;
  padding: 20px 20px 29px;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  color: var(--aofixo-secondary, #c44b4d);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.product__item__title {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: -0.8px;
  margin: 0;
  margin-bottom: 5px;
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__title a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--aofixo-text, #6c6666);
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 20px;
}
.product__item__link {
  font-size: 10px;
  padding: 7.2px 20px;
  background-color: var(--aofixo-gray, #f5eeea);
}
.product__item__link:hover {
  color: var(--aofixo-black, #242020);
}
.product__item__link::after {
  background-color: var(--aofixo-base, #ffbe50);
}
.product__item__link::before {
  background-color: var(--aofixo-gray, #f5eeea);
}

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

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.product-details__img {
  background-color: var(--aofixo-white, #fff);
  position: relative;
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 20px;
  overflow: hidden;
}
.product-details__img img {
  width: 100%;
  height: auto;
}
.product-details__content {
  position: relative;
  margin: -8px 0 0 0;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}
.product-details__top {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  margin-bottom: 15px;
}
.product-details__title {
  font-size: 34px;
  letter-spacing: -1.36px;
  margin: 0;
}
.product-details__price {
  font-size: 20px;
  line-height: 26px;
  color: var(--aofixo-secondary, #c44b4d);
  letter-spacing: -0.8px;
  font-weight: 800;
  margin: 0 0 0 29px;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--aofixo-secondary, #c44b4d);
}
.product-details__review a {
  display: inline-block;
  color: var(--aofixo-text, #6c6666);
  font-size: 16px;
  letter-spacing: 0;
  margin-left: 14px;
  font-weight: 500;
  transition: all 500ms ease;
}
.product-details__review a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--aofixo-border-color, #eadfd9);
  margin: 22px 0 21px;
}
.product-details__excerpt {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
}
.product-details__excerpt-text1 {
  margin: 0 0 31px;
}
.product-details__excerpt-text2 {
  margin: 0;
}
@media (max-width: 767px) {
  .product-details__excerpt-text2 br {
    display: block;
  }
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 22px 0 30px;
}
.product-details__quantity-title {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.72px;
  line-height: 30px;
  margin-right: 35px;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 50px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--aofixo-border-color, #eadfd9);
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 50px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  color: var(--aofixo-text, #6c6666);
  padding-left: 30px;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--aofixo-text, #6c6666);
  font-size: 8px;
  position: absolute;
  top: 0;
  right: 1px;
  background-color: transparent;
  border: none;
  border-left: 1px solid var(--aofixo-border-color, #eadfd9);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 0;
  top: auto;
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--aofixo-base, #ffbe50);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-details__buttons .wishlist {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.product-details__buttons .wishlist:hover {
  color: var(--aofixo-black, #242020);
}
.product-details__buttons .wishlist::before {
  background-color: var(--aofixo-secondary, #c44b4d);
}
.product-details__buttons .wishlist::after {
  background-color: var(--aofixo-base, #ffbe50);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.product-details__socials__title {
  font-size: 18px;
  letter-spacing: -0.72px;
  margin: 0;
  margin-right: 10px;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--aofixo-gray, #f5eeea);
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  border-radius: 50%;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.product-details__socials a:hover {
  background-color: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-black, #242020);
}
.product-details__description {
  position: relative;
  margin: 52px 0 0;
}
.product-details__description__title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin-bottom: 20px;
}
.product-details__description__text {
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 30px;
}
.product-details__description__lists {
  margin: 0 0 30px;
  padding: 0;
}
.product-details__description__lists li {
  display: block;
  position: relative;
  padding: 0 0 0 30px;
  font-size: 15px;
  line-height: 30px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
}
.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 1px;
  bottom: 0;
  margin: auto;
  display: inline-block;
  font-size: 12px;
  line-height: 30px;
  color: var(--aofixo-secondary, #c44b4d);
}
.product-details__comment {
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  margin: 55px 0 0;
  padding: 52px 0 0;
  position: relative;
}
.product-details__review-title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin-bottom: 50px;
}
.product-details__comment-box {
  position: relative;
  padding: 9px 0 77px 212px;
  margin-bottom: 60px;
  min-height: 166px;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
  }
}
.product-details__comment-box__thumb {
  width: 166px;
  height: 166px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}
.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-details__comment-box__meta {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  margin: 0 0 21px;
  color: var(--aofixo-black, #242020);
}
.product-details__comment-box__date {
  font-size: 20px;
  line-height: 26px;
  display: inline-block;
  color: var(--aofixo-base, #ffbe50);
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-weight: 400;
  letter-spacing: 0;
  margin: 0 0 0 9px;
  text-transform: capitalize;
}
.product-details__comment-box__text {
  line-height: 30px;
  margin: 0;
  font-size: 15px;
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  align-items: center;
  letter-spacing: 6px;
  font-size: 16px;
  color: var(--aofixo-base, #ffbe50);
}
@media (max-width: 767px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 0 0 22px;
  }
}
.product-details__form {
  position: relative;
  margin: 51px 0 0;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin-bottom: 9px;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 7px;
  font-size: 16px;
  color: var(--aofixo-secondary, #c44b4d);
  margin: 0 0 20px;
}
.product-details__form-ratings__label {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 0;
  color: var(--aofixo-text, #6c6666);
  margin: 0 18px 0 0;
}
.product-details__form__form {
  margin-top: 0;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 60px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  color: var(--aofixo-black, #242020);
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  letter-spacing: -0.96px;
  padding: 0 0 24px;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9) !important;
  box-shadow: none;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 18px;
  font-weight: 500;
  color: var(--aofixo-text, #6c6666);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
  padding: 30px 0;
  letter-spacing: 0;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 119px;
  height: 119px;
  background-color: var(--aofixo-white, #fff);
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 20px;
  margin-right: 34px;
}
.cart-page__table__meta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.8px;
  color: var(--aofixo-black, #242020);
}
.cart-page__table__meta-title a {
  color: inherit;
}
.cart-page__table__meta-title a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.cart-page__table__remove {
  display: block;
  color: var(--aofixo-black, #242020);
  font-size: 16px;
}
.cart-page__table__remove:hover {
  color: var(--aofixo-base, #ffbe50);
}
.cart-page__coupone-form {
  position: relative;
  display: flex;
}
@media (max-width: 767px) {
  .cart-page__coupone-form {
    display: block;
  }
}
.cart-page__coupone-form input[type=text] {
  height: 58px;
  width: 335px;
  border: none;
  background-color: var(--aofixo-gray, #f5eeea);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--aofixo-text, #6c6666);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 500;
  margin-right: 10px;
  border-radius: 20px;
}
@media (max-width: 1199px) {
  .cart-page__coupone-form input[type=text] {
    width: 290px;
  }
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__cart-total {
  position: relative;
  text-align: right;
  margin: -8px 0 24px;
  padding: 0;
}
@media (max-width: 991px) {
  .cart-page__cart-total {
    text-align: left;
    margin-top: 45px;
  }
}
.cart-page__cart-total li {
  display: block;
  font-size: 20px;
  color: var(--aofixo-black, #242020);
  letter-spacing: -0.8px;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  font-weight: 900;
  margin: 0 0 0px;
}
@media (max-width: 991px) {
  .cart-page__cart-total li span {
    display: inline-block;
    min-width: 172px;
  }
}
.cart-page__cart-total-amount {
  font-size: 18px;
  color: var(--aofixo-text, #6c6666);
  font-weight: 500;
  text-transform: uppercase;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  letter-spacing: 0;
  display: inline-block;
  min-width: 172px;
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
@media (max-width: 991px) {
  .cart-page__buttons {
    justify-content: flex-start;
  }
}
.cart-page__buttons .update {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.cart-page__buttons .update:hover {
  color: var(--aofixo-black, #242020);
}
.cart-page__buttons .update::before {
  background-color: var(--aofixo-secondary, #c44b4d);
}
.cart-page__buttons .update::after {
  background-color: var(--aofixo-base, #ffbe50);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 20px;
}
.checkout-page__notice {
  font-size: 16px;
  line-height: 26px;
  margin: 0 0 5px;
}
.checkout-page__notice a {
  color: var(--aofixo-secondary, #c44b4d);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.checkout-page__notice a:hover {
  background-size: 100% 1px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  font-size: 40px;
  letter-spacing: -1.6px;
  margin: 0 0 29px;
}
@media (max-width: 767px) {
  .checkout-page__billing-address__title {
    font-size: 30px;
  }
}
.checkout-page__shipping-address {
  position: relative;
}
@media (max-width: 991px) {
  .checkout-page__shipping-address {
    margin: 50px 0 0;
  }
}
.checkout-page__shipping-address__title {
  font-size: 40px;
  letter-spacing: -1.6px;
  margin: 0 0 29px;
}
@media (max-width: 767px) {
  .checkout-page__shipping-address__title {
    font-size: 30px;
  }
}
.checkout-page__shipping-address__title input[type=checkbox] {
  display: none;
}
.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}
.checkout-page__shipping-address__title label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--aofixo-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__shipping-address__title input[type=checkbox] + label span {
  position: absolute;
  bottom: 11px;
  right: 0;
  width: 19px;
  height: 19px;
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__shipping-address__title input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 58px;
  width: 100%;
  border: none;
  background-color: var(--aofixo-gray, #f5eeea);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--aofixo-text, #6c6666);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  display: block;
  font-weight: 500;
  border-radius: 20px;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 58px;
  outline: none !important;
  border-radius: 20px;
  border: 0;
  background-color: var(--aofixo-gray, #f5eeea) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 30px;
  color: var(--aofixo-text, #6c6666) !important;
  font-size: 14px;
  line-height: 58px;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  font-family: "Font Awesome 5 Free";
  content: "\f107";
  font-weight: 900;
  font-size: 12px;
  color: var(--aofixo-text, #6c6666);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  color: var(--aofixo-text, #6c6666);
  background-color: var(--aofixo-gray, #f5eeea);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--aofixo-base, #ffbe50);
  color: var(--aofixo-white, #fff);
  border-color: var(--aofixo-base, #ffbe50);
}
.checkout-page__input-box textarea {
  font-size: 14px;
  font-weight: 500;
  color: var(--aofixo-text, #6c6666);
  height: 128px;
  width: 100%;
  background-color: var(--aofixo-gray, #f5eeea);
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  border-radius: 20px;
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--aofixo-text, #6c6666);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--aofixo-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
  margin: 32px 0 0;
}
.checkout-page__your-order__title {
  font-size: 40px;
  letter-spacing: -1.6px;
  margin-bottom: 35px;
}
.checkout-page__your-order .aofixo-btn {
  padding: 16px 49.5px 17px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 20px;
  color: var(--aofixo-black, #242020);
  font-weight: 900;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  letter-spacing: -0.8px;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  color: var(--aofixo-text, #6c6666);
  margin: 0;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 26px;
}
.checkout-page__payment {
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 20px;
  padding: 45px 50px 17px;
  min-height: 295px;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  font-size: 18px;
  letter-spacing: -0.72px;
  margin: 0;
  align-items: center;
  margin-bottom: 28px;
  cursor: pointer;
  font-weight: 800;
  color: var(--aofixo-black, #242020);
}
.checkout-page__payment__title::before {
  content: "";
  width: 23px;
  height: 23px;
  background-color: var(--aofixo-white, #fff);
  border: 2px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 50%;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: -1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title img {
  margin-left: 15px;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  background-color: var(--aofixo-secondary, #c44b4d);
  border-color: var(--aofixo-secondary, #c44b4d);
  content: "\f00c";
  color: var(--aofixo-white, #fff);
}
.checkout-page__payment__content {
  margin-left: 35px;
  margin-bottom: 39px;
  font-size: 16px;
  line-height: 30px;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: luminosity;
  padding-bottom: 180px;
  margin-bottom: -80px;
}
@media (max-width: 767px) {
  .faq-one {
    padding-bottom: 140px;
  }
}
.faq-one__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.04;
}
.faq-one .container {
  position: relative;
}
.faq-one .sec-title {
  padding: 120px 0 27px;
}
@media (max-width: 767px) {
  .faq-one .sec-title {
    padding-top: 80px;
  }
}
.faq-one__accordion {
  position: relative;
}
.faq-one__accordion .accrodion {
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px;
  margin-top: 10px;
}
.faq-one__accordion .accrodion-title {
  padding: 25px 30px;
  padding-right: 70px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .faq-one__accordion .accrodion-title {
    padding-left: 40px;
  }
}
.faq-one__accordion .accrodion-title h4 {
  color: var(--aofixo-black, #242020);
  font-size: 20px;
  margin: 0;
  letter-spacing: -0.8px;
  transition: all 500ms ease;
  position: relative;
}
.faq-one__accordion .accrodion-title__icon {
  width: 13px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}
.faq-one__accordion .accrodion-title__icon::before {
  font-size: 16px;
  position: absolute;
  color: currentColor;
  top: 50%;
  left: 50%;
  font-family: "Font Awesome 5 Free";
  content: "\f077";
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}
.faq-one__accordion .active .accrodion-title h4 {
  color: var(--aofixo-secondary, #c44b4d);
}
.faq-one__accordion .active .accrodion-title__icon::before {
  content: "\f078";
}
.faq-one__accordion .accrodion-content .inner {
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  padding: 21px 30px 22px;
}
@media (min-width: 768px) {
  .faq-one__accordion .accrodion-content .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.faq-one__accordion .accrodion-content p {
  margin: 0;
  font-size: 16px;
  line-height: 30px;
}
.faq-one .aofixo-stretch-element-inside-column {
  position: relative;
}
@media (min-width: 1500px) {
  .faq-one .aofixo-stretch-element-inside-column {
    padding-left: 45px;
  }
}
@media (max-width: 1199px) {
  .faq-one .aofixo-stretch-element-inside-column {
    margin-top: 50px;
  }
}
.faq-one .aofixo-stretch-element-inside-column .row > * {
  padding-right: 0;
  padding-left: 0;
}
.faq-one .aofixo-stretch-element-inside-column .col-lg-5 {
  width: 48.2%;
}
@media (max-width: 767px) {
  .faq-one .aofixo-stretch-element-inside-column .col-lg-5 {
    width: 100%;
  }
}
.faq-one .aofixo-stretch-element-inside-column .col-lg-7 {
  width: 51.8%;
}
@media (max-width: 767px) {
  .faq-one .aofixo-stretch-element-inside-column .col-lg-7 {
    width: 100%;
  }
}
.faq-one__image {
  height: 100%;
  width: 100%;
}
.faq-one__image img {
  max-width: 100%;
  object-fit: cover;
  height: 100%;
}
.faq-one__info {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
}
@media (max-width: 1500px) {
  .faq-one__info {
    padding: 60px 30px 60px;
  }
}
.faq-one__info__icon {
  color: var(--aofixo-white, #fff);
  font-size: 58px;
  line-height: 58px;
  margin: 0 0 16px;
}
.faq-one__info__title {
  color: var(--aofixo-white, #fff);
  font-size: 40px;
  letter-spacing: -1.6px;
  margin: 0 0 26px;
}
@media (max-width: 1300px) {
  .faq-one__info__title {
    font-size: 38px;
  }
}
.faq-one__info__title br {
  display: block;
}
.faq-one__info .aofixo-btn {
  font-size: 12px;
  padding: 8px 30px;
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-white, #fff);
  border-radius: 19px;
}
.faq-one__info .aofixo-btn::before {
  background-color: var(--aofixo-white, #fff);
}
.faq-one__info .aofixo-btn::after {
  background-color: var(--aofixo-base, #ffbe50);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-card {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  background-color: var(--aofixo-white, #fff);
}
.package-card__image {
  position: relative;
  overflow: hidden;
}
.package-card__image > img {
  width: 100%;
  transform: scale(1);
  transition: transform 500ms ease;
}
.package-card__image__link {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(var(--aofixo-black-rgb, 36, 32, 32), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(-20%);
  transition: opacity 500ms ease, transform 500ms ease;
}
.package-card__image__link::before, .package-card__image__link::after {
  content: "";
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.package-card__image__link::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.package-card:hover .package-card__image > a {
  opacity: 1;
  transform: translateY(0);
}
.package-card:hover .package-card__image > img {
  transform: scale(1.05);
}
.package-card__content {
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
  padding: 50px;
}
.package-card__content__shape {
  display: block;
  width: auto !important;
}
.package-card__price {
  width: 81px;
  height: 81px;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--aofixo-white, #fff);
  font-size: 18px;
  position: absolute;
  right: 40px;
  top: 0;
  transform: translateY(-50%);
  line-height: 1;
}
@media (min-width: 768px) {
  .package-card__price {
    font-size: 20px;
  }
}
.package-card__title {
  margin: 0;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--aofixo-black, #242020);
  font-size: 22px;
  line-height: 1.2em;
  margin-top: -5px;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .package-card__title {
    font-size: 24px;
  }
}
.package-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.package-card__title a:hover {
  background-size: 100% 1px;
}
.package-card__title a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.package-card__text {
  margin: 0;
  font-size: 15px;
  line-height: 30px;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
  margin-top: 10px;
  padding-bottom: 21px;
  margin-bottom: 6px;
}
.package-card__link {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: var(--aofixo-letter-space, 0.1em);
  color: var(--aofixo-black, #242020);
  transition: all 500ms ease;
  line-height: 1em;
  position: relative;
  top: 10px;
  text-shadow: 0 0 1px currentColor;
}
.package-card__link:hover {
  color: var(--aofixo-base, #ffbe50);
}
.package-card__link i {
  font-size: 16px;
  margin-left: 9px;
}

.package-page {
  padding: 120px 0;
  padding-top: 100px;
}
@media (max-width: 767px) {
  .package-page {
    padding: 80px 0;
    padding-top: 60px;
  }
}

/*--------------------------------------------------------------
# Fund
--------------------------------------------------------------*/
.fund-one {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .fund-one {
    padding-bottom: 80px;
  }
}
.fund-one__image {
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  margin: 80px 0 31px;
}
.fund-one__image img {
  max-width: 100%;
  height: auto;
}
.fund-one__text {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px 0 0 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 900;
  color: var(--aofixo-black, #242020);
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  padding: 28px 40px 29px 98px;
  text-align: left;
  overflow: hidden;
}
.fund-one__text i {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ecac3f;
  width: 68px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.fund-one__cus-row {
  max-width: 520px;
}
.fund-one__info {
  display: flex;
  align-items: center;
  gap: 30px;
}
.fund-one__info__icon {
  flex-shrink: 0;
  width: 60px;
  height: 130px;
  border-radius: 50px;
  font-size: 20px;
  color: var(--aofixo-secondary, #c44b4d);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--aofixo-gray, #f5eeea);
}
.fund-one__info__title {
  margin: 0;
  font-size: 24px;
  line-height: 28px;
  letter-spacing: -0.96px;
}
.fund-one__info-text {
  margin: 20px 0 0;
  border-left: 1px solid var(--aofixo-border-color, #eadfd9);
  padding: 0 0 0 37px;
}
.fund-one__form-wrapper {
  position: relative;
  z-index: 2;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 0 0 20px 20px;
  padding: 80px 80px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .fund-one__form-wrapper {
    padding: 50px 30px;
  }
}
@media (max-width: 991px) {
  .fund-one__form-wrapper {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .fund-one__form-wrapper {
    padding: 80px 30px;
  }
}
.fund-one__form-wrapper__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: 0.2;
  z-index: -1;
}
.fund-one__form-wrapper .sec-title {
  padding-bottom: 15px;
}
.fund-one__form-wrapper__text {
  text-align: center;
  font-size: 17px;
  line-height: 34px;
  margin: 0 0 34px;
}
.fund-one__form {
  position: relative;
  width: 100%;
}
.fund-one__form__amount {
  position: relative;
}
.fund-one__form__amount__sign {
  position: absolute;
  text-transform: uppercase;
  font-size: 16px;
  right: 35px;
  top: 14px;
}
.fund-one__form input {
  display: block;
  width: 100%;
  height: 58px;
  background-color: var(--aofixo-white, #fff);
  color: var(--aofixo-text, #6c6666);
  font-size: 16px;
  font-weight: 500;
  border: none;
  outline: none;
  border-radius: 50px;
  padding-left: 40px;
  padding-right: 30px;
  box-shadow: 0px 0px 30px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 0.05);
}
.fund-one__form__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 20px 0;
}
@media (max-width: 767px) {
  .fund-one__form__buttons {
    flex-wrap: wrap;
    gap: 15px;
  }
}
.fund-one__form__buttons__item {
  height: 58px;
  background-color: var(--aofixo-border-color, #eadfd9);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--aofixo-text, #6c6666);
  font-weight: 500;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  border: none;
  outline: none;
  padding: 0 42px;
  transition: all 0.4s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .fund-one__form__buttons__item {
    padding: 0 35px;
  }
}
.fund-one__form__buttons__item.active, .fund-one__form__buttons__item:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}
.fund-one__form .aofixo-btn {
  width: 100%;
}

/*--------------------------------------------------------------
# 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 flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zoomBig {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 0.5;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-20px);
  }
}
@keyframes airTree {
  0%, 100% {
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(0) translateY(15px);
  }
  50% {
    transform: rotate(0) translateY(30px);
  }
}
/*--------------------------------------------------------------
# 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(--aofixo-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(--aofixo-white, #fff);
}

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

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

.mobile-nav__content {
  width: 300px;
  background-color: var(--aofixo-black2, #1c1919);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--aofixo-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--aofixo-base, #ffbe50);
}

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

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

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

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

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

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

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--aofixo-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--aofixo-base, #ffbe50);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--aofixo-white, #fff);
}

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

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--aofixo-white, #fff);
  font-size: 15px;
  color: var(--aofixo-text, #6c6666);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .aofixo-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup__form .aofixo-btn i {
  margin: 0;
}
.search-popup__form .aofixo-btn::after {
  background-color: var(--aofixo-black, #242020);
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--aofixo-black, #242020);
  position: relative;
  padding-top: 154px;
  padding-bottom: 156px;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-color: var(--aofixo-black, #242020);
  background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
  mix-blend-mode: luminosity;
  opacity: 0.3;
}
.page-header .container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.page-header__title {
  margin: 0;
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--aofixo-white, #fff);
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 40px;
    letter-spacing: -1.6px;
  }
}

.aofixo-breadcrumb {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 0;
}
    .aofixo-breadcrumb li {
        font-size: 14px;
        color: black;
        display: flex;
        align-items: center;
    }
.aofixo-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  top: -1px;
  margin-left: 5px;
  margin-right: 5px;
  color: var(--aofixo-text-dark, #8e8787);
}
.aofixo-breadcrumb li span,
.aofixo-breadcrumb li a {
  color: inherit;
  display: inline-flex;
  line-height: 1.1;
}
.aofixo-breadcrumb li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.aofixo-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.aofixo-breadcrumb li a:hover {
  color: var(--aofixo-base, #ffbe50);
}

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

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

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  position: relative;
}
.client-carousel__one {
  position: relative;
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
  padding: 88px 0;
}
@media (max-width: 767px) {
  .client-carousel__one {
    padding: 60px 0;
  }
}
.client-carousel__one__item img {
  opacity: 0.15;
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
}
.client-carousel__one__item:hover img {
  opacity: 0.5;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin: 0 30px;
}
@media (max-width: 1299px) {
  .main-slider-one {
    margin: 0 15px;
  }
}
.main-slider-one__carousel {
  position: relative;
}
.main-slider-one__carousel.owl-carousel .owl-nav {
  position: absolute;
  right: 100px;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 1299px) {
  .main-slider-one__carousel.owl-carousel .owl-nav {
    right: 30px;
  }
}
.main-slider-one__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 92px;
  height: 52px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px 20px 0 0;
  display: block;
  color: var(--aofixo-black, #242020);
  font-size: 32px;
  margin: 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--aofixo-base, #ffbe50);
}
.main-slider-one__carousel .owl-dots {
  right: 0;
  margin: auto;
  position: absolute;
  left: 0;
  text-align: right;
  top: 50%;
  max-width: 1170px;
  transform: translateY(-50%);
  width: 100%;
  display: grid;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1299px) {
  .main-slider-one__carousel .owl-dots {
    max-width: 100%;
    left: auto;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots {
    display: none;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot {
  display: block;
  margin: 0 0;
}
@media (max-width: 767px) {
  .main-slider-one__carousel .owl-dots .owl-dot {
    margin: 0 6px;
  }
}
.main-slider-one__carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background-color: RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.3);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
  border-color: var(--aofixo-white, #fff);
}
.main-slider-one__item {
    background-color: var(--aofixo-black, #242020);
    position: relative;
    z-index: 3;
    padding-top: 247px;
    padding-bottom: 168px;
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 120px;
    padding-top: 110px;
  }
}
.main-slider-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--aofixo-black, #242020);
    opacity: 0.5;
    mix-blend-mode: difference;
    transform: scale(1);
    transition: transform 10000ms ease, -webkit-transform 10000ms ease;
}
.main-slider-one__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
  max-width: 540px;
}
.main-slider-one__sub-title {
  color: var(--aofixo-secondary, #c44b4d);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  margin: 0 0 25px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-one__sub-title {
    font-size: 22px;
  }
}
.main-slider-one__title {
  color: var(--aofixo-white, #fff);
  font-size: 80px;
  line-height: 80px;
  overflow: hidden;
  letter-spacing: -3.2px;
  margin: 0 0 26px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateX(200px);
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 45px;
    line-height: 50px;
    letter-spacing: -1px;
  }
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-one .active .main-slider-one__bg {
  transform: scale(1.12);
}
.main-slider-one .active .main-slider-one__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-one .active .main-slider-one__title {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1300ms;
}
.main-slider-one .active .main-slider-one__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

.main-slider-two {
  position: relative;
}
.main-slider-two__carousel {
  position: relative;
  width: 100%;
}
.main-slider-two__carousel .owl-dots {
  right: 0;
  margin: auto;
  position: absolute;
  left: 0;
  text-align: right;
  top: 59.5%;
  max-width: 1170px;
  transform: translateY(-50%);
  width: 100%;
  display: grid;
  gap: 5px;
  align-items: center;
  justify-content: flex-end;
}
@media (max-width: 1299px) {
  .main-slider-two__carousel .owl-dots {
    max-width: 100%;
    left: auto;
    right: 30px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__carousel .owl-dots {
    max-width: 100%;
    top: auto;
    transform: none;
    bottom: 40px;
    text-align: center;
    display: flex;
    left: 0;
    right: 0;
    justify-content: center;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot {
  display: block;
  margin: 0 0;
}
@media (max-width: 767px) {
  .main-slider-two__carousel .owl-dots .owl-dot {
    margin: 0 6px;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  background-color: RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.3);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
  background-color: transparent;
  border-color: var(--aofixo-white, #fff);
}
.main-slider-two__item {
  background-color: var(--aofixo-black, #242020);
  position: relative;
  z-index: 3;
  padding-top: 343px;
  padding-bottom: 171px;
}
@media (max-width: 1199px) {
  .main-slider-two__item {
    padding-top: 300px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__item {
    padding-top: 200px;
    padding-bottom: 140px;
  }
}
.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  opacity: 0.3;
  mix-blend-mode: luminosity;
}
.main-slider-two__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 354px;
  background-image: linear-gradient(0deg, rgb(36, 32, 32) 0%, rgba(36, 32, 32, 0) 100%);
}
.main-slider-two__bg-two {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background-color: var(--aofixo-black, #242020);
  height: 120px;
}
@media (max-width: 1199px) {
  .main-slider-two__bg-two {
    height: 72px;
  }
}
.main-slider-two__bg-two__inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -120px;
  background-repeat: no-repeat;
  background-position: top;
  background-blend-mode: luminosity;
  background-color: var(--aofixo-black, #242020);
  opacity: 0.3;
  filter: blur(10px);
}
@media (max-width: 1199px) {
  .main-slider-two__bg-two__inner {
    bottom: -72px;
  }
}
.main-slider-two .container {
  position: relative;
  z-index: 3;
}
.main-slider-two__content {
  position: relative;
  z-index: 3;
  overflow: hidden;
}
.main-slider-two__sub-title {
  color: var(--aofixo-base, #ffbe50);
  font-size: 30px;
  font-weight: 400;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  margin: 0 0 23px;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 26px;
  }
}
.main-slider-two__title {
  color: var(--aofixo-white, #fff);
  font-size: 80px;
  line-height: 80px;
  text-transform: uppercase;
  display: inline-block;
  letter-spacing: -3.2px;
  overflow: hidden;
  margin: 0 0 18px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: translateY(200px);
}
@media (max-width: 991px) {
  .main-slider-two__title {
    font-size: 75px;
  }
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -1.2px;
  }
}
.main-slider-two__title::after {
  content: "";
  width: 101%;
  height: 90%;
  position: absolute;
  top: 8px;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  transform-origin: bottom;
}
@media (max-width: 767px) {
  .main-slider-two__btn {
    display: block;
  }
}
.main-slider-two__btn .aofixo-btn {
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transition: all 1500ms ease;
}
.main-slider-two__text {
  font-size: 18px;
  line-height: 24px;
  color: RGBA(var(--aofixo-white-rgb, 255, 255, 255), 0.4);
  margin: 0 0 0 30px;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transition: all 1700ms ease;
}
@media (max-width: 767px) {
  .main-slider-two__text {
    margin: 25px 0 0;
  }
}
.main-slider-two .active .main-slider-two__sub-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1100ms;
}
.main-slider-two .active .main-slider-two__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1300ms;
}
.main-slider-two .active .main-slider-two__title::after {
  transform: translateY(1%);
  transition-delay: 1400ms;
}
.main-slider-two .active .main-slider-two__btn .aofixo-btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1500ms;
}
.main-slider-two .active .main-slider-two__text {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1700ms;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  z-index: 2;
  background-color: var(--aofixo-secondary, #c44b4d);
  padding: 96px 0 100px;
  border-radius: 30px;
  overflow: hidden;
  margin: 0 80px;
}
@media (max-width: 1500px) {
  .feature-one {
    margin: 0 30px;
  }
}
@media (max-width: 1299px) {
  .feature-one {
    margin: 0 15px;
  }
}
@media (max-width: 767px) {
  .feature-one {
    padding: 75px 0 80px;
  }
}
.feature-one__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 190px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.08;
  mix-blend-mode: luminosity;
}
.feature-one__item {
  position: relative;
  min-height: 128px;
  padding: 0 0 0 150px;
}
.feature-one__item:hover .feature-one__item__icon span {
  transform: scale(1.1);
}
.feature-one__item__icon {
  width: 128px;
  height: 128px;
  background-color: transparent;
  background-image: url(../images/shapes/feature-icon-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--aofixo-base, #ffbe50);
  position: absolute;
  left: 0;
  top: 4px;
}
.feature-one__item__icon span {
  transform: scale(1);
  transition: 500ms ease;
}
.feature-one__item__title {
  color: var(--aofixo-white, #fff);
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0 0 20px;
}
.feature-one__item__text {
  color: #ffcbcc;
  margin: 0;
}
.feature-one__item__text br {
  display: none;
}
@media (min-width: 1200px) {
  .feature-one__item__text br {
    display: block;
  }
}

.feature-two {
  position: relative;
  background-color: var(--aofixo-secondary, #c44b4d);
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .feature-two {
    padding: 80px 0;
  }
}
.feature-two__bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 181px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.08;
  mix-blend-mode: luminosity;
}
@media (min-width: 1200px) {
  .feature-two .container {
    max-width: 1650px;
  }
}
.feature-two__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 1360px) {
  .feature-two__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .feature-two__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .feature-two__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.feature-two__item {
  position: relative;
  min-height: 64px;
  padding: 6px 0 0 84px;
}
.feature-two__item:hover .feature-two__item__icon span {
  transform: rotateY(180deg);
}
.feature-two__item::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--aofixo-white, #fff);
  position: absolute;
  top: 0;
  right: -31%;
  opacity: 0.15;
}
@media (max-width: 1560px) {
  .feature-two__item::before {
    display: none;
  }
}
.feature-two__item:last-child::before {
  display: none;
}
.feature-two__item__icon {
  display: flex;
  align-items: center;
  font-size: 64px;
  line-height: 64px;
  color: var(--aofixo-base, #ffbe50);
  position: absolute;
  left: 0;
  top: 0;
}
.feature-two__item__icon span {
  transition: all 0.6s ease;
}
.feature-two__item__title {
  color: var(--aofixo-white, #fff);
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0 0 4px;
}
.feature-two__item__text {
  font-weight: 600;
  color: #ffcbcc;
  margin: 0;
}

.feature-three {
  position: relative;
  background-color: var(--aofixo-white, #fff);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 0 0 0;
}
.feature-three__item {
  position: relative;
  padding: 88px 20px 20px;
  border-radius: 20px;
  /*background-image: url(../images/shapes/feature-3-bg-shape.png);*/
  background-position: top center;
  background-repeat: no-repeat;
  background-size: auto;
  text-align: center;
}
.feature-three__item__inner {
    position: relative;
    background-color: var(--aofixo-white, #fff);
    filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.05));
    border-radius: 20px;
    padding:  0 30px 10px;
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: auto;
    background-blend-mode: luminosity;
}
.feature-three__item__image {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: -88px auto 10px;
  top: -14px;
  display: inline-block;
}
.feature-three__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.feature-three__item__icon {
  width: 68px;
  height: 68px;
  background-color: var(--aofixo-secondary, #c44b4d);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  color: var(--aofixo-white, #fff);
  position: absolute;
  right: 0;
  bottom: 0;
}
.feature-three__item__icon span {
  transition: all 0.6s ease;
}
.feature-three__item:hover .feature-three__item__icon span {
  transform: rotateY(180deg);
}
.feature-three__item__title {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.96px;
  max-width: 195px;
  margin: 0 auto 15px;
}
.feature-three__item__text {
  line-height: 26px;
  margin: 0 0 23px;
}
.feature-three__item__rm {
  width: 92px;
  height: 52px;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px 20px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--aofixo-black, #242020);
  margin: 0 auto;
}
.feature-three__item__rm:hover {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0;
  }
}
.about-one__image {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: 24px;
}
@media (max-width: 1199px) {
  .about-one__image {
    margin: 0 0 50px;
    text-align: center;
    display: inline-block;
  }
  .about-one__image.aofixo-stretch-element-inside-column {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 1360px) {
  .about-one__image {
    padding-right: 135px;
  }
}
.about-one__image img {
  max-width: 100%;
  border-radius: 50%;
}
.about-one__image__inner {
  position: absolute;
  right: 0;
  top: 0;
}
@media (min-width: 1360px) {
  .about-one__image__inner {
    right: 135px;
  }
}
@media (max-width: 767px) {
  .about-one__image__inner {
    display: none;
  }
}
.about-one__image__shape-one {
  position: absolute;
  right: 42px;
  bottom: -100px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .about-one__image__shape-one {
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
    bottom: -50px;
  }
}
@media (max-width: 767px) {
  .about-one__image__shape-one {
    display: none;
  }
}
.about-one__image__shape-two {
  position: absolute;
  right: 110px;
  top: -65px;
}
.about-one__image__shape-two img {
  border-radius: 0;
  -webkit-animation: airTree 4s ease-in infinite;
  animation: airTree 4s ease-in infinite;
}
@media (max-width: 767px) {
  .about-one__image__shape-two {
    display: none;
  }
}
@keyframes airTree {
  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);
  }
}
.about-one__content {
  position: relative;
}
.about-one__content .sec-title {
  padding-bottom: 32px;
}
.about-one__content__heading {
  font-size: 22px;
  color: var(--aofixo-base, #ffbe50);
  margin: 0 0 11px;
}
.about-one__content__text {
  margin: 0 0 31px;
}
.about-one__content__list {
  margin: 0 0 39px;
  padding: 0;
}
@media (max-width: 767px) {
  .about-one__content__list {
    display: block;
  }
}
.about-one__content__list li {
  list-style: none;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: var(--aofixo-black, #242020);
  line-height: 36px;
  padding: 0 0 0 24px;
}
.about-one__content__list li span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  line-height: inherit;
  font-size: 14px;
  color: var(--aofixo-base, #ffbe50);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.about-one__content__list li:hover span {
  transform: rotateY(180deg);
}
.about-one__content__btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .about-one__content__btn {
    display: block;
  }
}
.about-one__content__donation {
  position: relative;
}
@media (max-width: 767px) {
  .about-one__content__donation {
    margin: 30px 0 0;
  }
}
.about-one__content__donation__price {
  display: block;
  line-height: 1;
  font-size: 26px;
  color: var(--aofixo-secondary, #c44b4d);
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-weight: 400;
  margin: 5px 0 1px;
}
.about-one__content__donation__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}
.about-one__box__wrapper {
  display: flex;
  align-items: center;
  gap: 48px;
  margin: 0 0 28px;
}
@media (max-width: 767px) {
  .about-one__box__wrapper {
    display: block;
  }
}
.about-one__box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
.about-one__box__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 81px;
  height: 81px;
  background-color: var(--aofixo-secondary, #c44b4d);
  font-size: 40px;
  color: var(--aofixo-white, #fff);
  border-radius: 50%;
  overflow: hidden;
}
.about-one__box__icon span {
  transition: all 0.4s ease-in-out;
}
.about-one__box:hover .about-one__box__icon span {
  transform: scale(1.1);
}
.about-one__box__title {
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0;
}
.about-one__box__title br {
  display: block;
}
.about-one__box + .about-one__box {
  border-left: 1px solid var(--aofixo-border-color, #eadfd9);
  padding-left: 34px;
}
@media (max-width: 767px) {
  .about-one__box + .about-one__box {
    border: none;
    padding: 30px 0 0;
  }
}

.about-two {
  position: relative;
  padding: 84px 0;
}
@media (max-width: 767px) {
  .about-two {
    padding: 40px 0 80px;
  }
}
.about-two__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 40px 0 0;
}
.about-two__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 0 0 250px 250px;
}
.about-two__image__shape {
  border-radius: 0 !important;
  position: absolute;
  left: -10px;
  bottom: 0;
}
@media (max-width: 767px) {
  .about-two__image__shape {
    display: none;
  }
}
.about-two__image::after {
  position: absolute;
  left: 40px;
  top: 0;
  width: 100%;
  height: calc(100% + 10px);
  border: 8px solid var(--aofixo-secondary, #c44b4d);
  border-radius: 0 0 250px 250px;
  content: "";
  z-index: -1;
}
@media (max-width: 767px) {
  .about-two__image::after {
    display: none;
  }
}
.about-two__curved-circle-box {
  width: 180px;
  height: 180px;
  background-color: var(--aofixo-white, #fff);
  display: inline-block;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: -92px;
  bottom: 45px;
  box-shadow: 0px 21px 30px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .about-two__curved-circle-box {
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -20px;
  }
}
.about-two__curved-circle-box::after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  content: "";
  background-image: url(../images/shapes/about-2-shape-2.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 50%;
  animation-duration: 1500ms;
  animation: rotated 10s infinite linear;
  transition: 500ms all ease;
  animation-play-state: running;
  z-index: -1;
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.about-two__curved-circle-box .curved-circle {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 132px !important;
  height: 132px !important;
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.about-two__curved-circle-box .curved-circle--item {
  width: 132px !important;
  height: 132px !important;
}
.about-two__curved-circle-box .curved-circle--item span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
  letter-spacing: 0.25em;
}
.about-two__curved-circle-box__icon {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  width: 65px;
  height: 60px;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aofixo-secondary, #c44b4d);
}
.about-two__content {
  position: relative;
}
@media (max-width: 1199px) {
  .about-two__content {
    margin: 45px 0 0;
  }
}
.about-two__content .sec-title {
  padding-bottom: 27px;
}
.about-two__content__text {
  margin: 0 0 42px;
}
.about-two__content__list {
  margin: 0 0 36px;
  padding: 0;
}
@media (max-width: 767px) {
  .about-two__content__list {
    display: block;
  }
}
.about-two__content__list li {
  list-style: none;
  position: relative;
  font-weight: 800;
  font-size: 18px;
  color: var(--aofixo-black, #242020);
  letter-spacing: -0.72px;
  line-height: 36px;
  padding: 0 0 0 26px;
}
.about-two__content__list li span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  line-height: inherit;
  color: var(--aofixo-base, #ffbe50);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.about-two__content__list li:hover span {
  transform: rotateY(180deg);
}
.about-two__content__box {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 36px 30px 33px 40px;
}
.about-two__content__box__icon {
  font-size: 64px;
  line-height: 64px;
  color: var(--aofixo-secondary, #c44b4d);
}
.about-two__content__box__title {
  margin: 0;
  font-size: 24px;
  line-height: 25px;
  letter-spacing: -0.96px;
}
.about-two__progress {
  position: relative;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .about-two__progress {
    margin-top: 40px;
  }
}
.about-two__progress__title {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.8px;
  margin-bottom: 9px;
}
.about-two__progress__bar {
  width: 100%;
  height: 13px;
  background-color: var(--aofixo-gray, #f5eeea);
  position: relative;
  border-radius: 30px;
}
.about-two__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--aofixo-base, #ffbe50);
  transition: all 700ms linear;
  width: 0px;
  border-radius: 30px;
}
.about-two__progress__number {
  position: absolute;
  bottom: calc(100% + 7px);
  right: 0;
}

.about-three {
    position: relative;
    padding: 40px 0 0;
}
@media (max-width: 767px) {
  .about-three {
    padding: 80px 0 0;
  }
}
.about-three__image {
  position: relative;
  max-width: 570px;
  text-align: right;
}
.about-three__image > img {
  max-width: 100%;
  height: auto;
  border-radius: 0 0 250px 250px;
}
.about-three__image__inner {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 385px;
}
@media (min-width: 1200px) {
  .about-three__image__inner {
    left: -50px;
  }
}
@media (max-width: 767px) {
  .about-three__image__inner {
    position: relative;
    margin: -100px 0 0;
  }
}
.about-three__image__left {
  position: relative;
}
.about-three__image__left img {
  max-width: 100%;
  height: auto;
  border-radius: 20px 0 20px 20px;
}
.about-three__image__content {
  max-width: 325px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--aofixo-base, #ffbe50);
  margin-left: auto;
  border-radius: 20px 20px 0 0;
  gap: 20px;
  padding: 37px 40px 35px;
  text-align: left;
}
.about-three__image__content__icon {
  font-size: 64px;
  line-height: 64px;
  color: var(--aofixo-black, #242020);
}
.about-three__image__content__title {
  margin: 0;
  font-size: 26px;
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-weight: 400;
}
.about-three__content {
  position: relative;
}
@media (min-width: 1200px) {
  .about-three__content {
    margin-left: 70px;
  }
}
@media (max-width: 991px) {
  .about-three__content {
    margin: 45px 0 0;
  }
}
.about-three__content .sec-title {
  padding-bottom: 27px;
}
@media (min-width: 1200px) {
  .about-three__content .sec-title {
    margin-right: -10px;
  }
}
.about-three__content__text {
  margin: 0 0 22px;
}
.about-three__content__list {
  margin: 0 0 32px;
  padding: 0;
}
@media (max-width: 767px) {
  .about-three__content__list {
    display: block;
  }
}
.about-three__content__list li {
  list-style: none;
  position: relative;
  font-weight: 800;
  font-size: 18px;
  color: var(--aofixo-black, #242020);
  letter-spacing: -0.72px;
  line-height: 36px;
  padding: 0 0 0 27px;
}
.about-three__content__list li span {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  line-height: inherit;
  color: var(--aofixo-base, #ffbe50);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.about-three__content__list li:hover span {
  transform: rotateY(180deg);
}
.about-three__content__divider {
  width: 60%;
  height: 6px;
  display: block;
  background-color: var(--aofixo-border-color, #eadfd9);
  margin: 0 0 -24px;
}
@media (max-width: 767px) {
  .about-three__content__divider {
    margin: 0 0 30px;
    width: 100%;
  }
}
.about-three__content__btn {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .about-three__content__btn {
    flex-wrap: wrap;
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# Donation
--------------------------------------------------------------*/
.donation-one {
    position: relative;
    background-color: var(--aofixo-white, #fff);
    padding: 53px 0 0px;
}
@media (max-width: 767px) {
  .donation-one {
    padding: 0 0 80px;
  }
}
.donation-one--home-two {
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donation-one--home-two {
    padding: 80px 0;
  }
}
.donation-one--page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donation-one--page {
    padding: 80px 0;
  }
}
.donation-one__item {
  position: relative;
  background-color: var(--aofixo-white, #fff);
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 20px;
  overflow: hidden;
  z-index: 2;
  transition: all 500ms ease;
}
.donation-one__item:hover {
  box-shadow: 0px 10px 30px 0px rgba(var(--aofixo-black3-rgb, 0, 0, 0), 0.07);
}
.donation-one__item__image {
  position: relative;
  display: block;
  padding: 19px 19px 0;
  width: 100%;
}
.donation-one__item__image img {
  width: 100%;
  border-radius: 20px 20px 20px 0;
}
.donation-one__item__cats {
  position: absolute;
  left: 9px;
  bottom: 20px;
  z-index: 1;
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 30px 30px 30px 0;
  color: var(--aofixo-white, #fff);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
}
.donation-one__item__content {
  position: relative;
  padding: 25px 29px 22px;
}
.donation-one__item__title {
  font-size: 26px;
  line-height: 30px;
  margin: 0 0 13px;
}
.donation-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.donation-one__item__title a:hover {
  background-size: 100% 1px;
}
.donation-one__item__title a:hover {
  color: var(--aofixo-base, #ffbe50);
}
.donation-one__item__text {
  margin: 0;
}
.donation-one__item__progress {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 51px 29px 24px;
}
.donation-one__item__progress__bar-wrapper {
  width: 100%;
  height: 7px;
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px;
  position: relative;
  margin: 0 0 4px;
}
.donation-one__item__progress__bar {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px;
  transition: all 1000ms linear;
}
.donation-one__item__progress__bar__round {
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--aofixo-base, #ffbe50);
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 2;
}
.donation-one__item__progress__number {
  position: absolute;
  bottom: calc(100% + 9px);
  right: -9px;
  font-size: 12px;
  line-height: 1;
}
.donation-one__item__progress__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.donation-one__item__progress__content__number {
  font-size: 14px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
}
.donation-one__item__progress__content__number span {
  display: inline-block;
  font-weight: 500;
  color: var(--aofixo-text, #6c6666);
}

/*--------------------------------------------------------------
# Donation details
--------------------------------------------------------------*/
.donation-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donation-details {
    padding: 80px 0;
  }
}
.donation-details__content {
  position: relative;
}
.donation-details__image {
  position: relative;
}
.donation-details__image img {
  width: 100%;
  border-radius: 20px 20px 0 0;
}
.donation-details__cats {
  position: absolute;
  left: -10px;
  bottom: 20px;
  z-index: 1;
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 30px 30px 30px 0;
  color: var(--aofixo-white, #fff);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
}
.donation-details__progress {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 51px 30px 24px;
  border-radius: 0 0 20px 20px;
  margin: 0 0 23px;
}
.donation-details__progress__bar-wrapper {
  width: 100%;
  height: 7px;
  background-color: var(--aofixo-white, #fff);
  border-radius: 20px;
  position: relative;
  margin: 0 0 4px;
}
.donation-details__progress__bar {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px;
  transition: all 1500ms linear;
}
.donation-details__progress__bar::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  background-color: var(--aofixo-base, #ffbe50);
  height: 17px;
  width: 17px;
  border-radius: 50%;
  z-index: 2;
}
.donation-details__progress__number {
  position: absolute;
  bottom: calc(100% + 9px);
  right: -9px;
  font-size: 12px;
  line-height: 1;
}
.donation-details__progress__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.donation-details__progress__content__number {
  font-size: 14px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
}
.donation-details__progress__content__number span {
  display: inline-block;
  font-weight: 500;
  color: var(--aofixo-text, #6c6666);
}
.donation-details__title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin: 0 0 21px;
}
.donation-details__text {
  margin: 0 0 35px;
}
.donation-details__lists {
  margin: 0 0 46px;
  padding: 0;
}
.donation-details__lists li {
  font-size: 18px;
  line-height: 30px;
  color: var(--aofixo-black, #242020);
  font-weight: 600;
  position: relative;
  padding-left: 27px;
}
.donation-details__lists li span {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--aofixo-secondary, #c44b4d);
  line-height: inherit;
  font-size: 16px;
}
.donation-details__image-item {
  position: relative;
  margin: 0 0 43px;
}
.donation-details__image-item img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}
.donation-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin: 52px 0 0;
  border-top: 1px solid var(--aofixo-border-color, #eadfd9);
  border-bottom: 1px solid var(--aofixo-border-color, #eadfd9);
}
.donation-details__meta__social {
  display: flex;
  align-items: center;
  margin-left: 40px;
  line-height: 1em;
}
@media (max-width: 1299px) {
  .donation-details__meta__social {
    margin-left: 25px;
  }
}
@media (max-width: 767px) {
  .donation-details__meta__social {
    display: none;
  }
}
.donation-details__meta__social a {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.donation-details__meta__social a:hover {
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-base, #ffbe50);
}
.donation-details__meta__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.donation-details__meta__social a + a {
  margin-left: 10px;
}
.donation-details__organizer {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--aofixo-gray, #f5eeea);
  margin: 0 0 30px;
}
@media (max-width: 991px) {
  .donation-details__organizer {
    margin-top: 40px;
  }
}
.donation-details__organizer__title {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
  font-size: 24px;
  letter-spacing: -0.96px;
  margin: 0;
  padding: 22px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__organizer__title {
    padding: 22px 30px;
  }
}
.donation-details__organizer__author {
  display: flex;
  position: relative;
  padding: 30px 50px 44px;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__organizer__author {
    padding: 30px 30px 44px;
  }
}
.donation-details__organizer__author img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.donation-details__organizer__content {
  position: relative;
}
.donation-details__organizer__name {
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0 0 13px;
}
.donation-details__organizer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.donation-details__organizer__list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 30px;
  gap: 7px;
  margin: 0;
}
.donation-details__organizer__list li span {
  display: inline-block;
  line-height: inherit;
  color: var(--aofixo-secondary, #c44b4d);
  position: relative;
  top: 1px;
}
.donation-details__widget {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donation-details__widget {
    padding: 30px;
  }
}
.donation-details__widget__title {
  font-size: 24px;
  letter-spacing: -0.96px;
  margin: -4px 0 23px;
}
.donation-details__widget__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.donation-details__widget__list li {
  list-style: none;
  position: relative;
  min-height: 68px;
  padding: 14px 0 0 86px;
}
.donation-details__widget__list li img {
  width: 68px;
  height: 68px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.donation-details__widget__list li + li {
  margin-top: 20px;
}
.donation-details__widget__list__price {
  display: block;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--aofixo-secondary, #c44b4d);
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  margin: 0 0 6px;
}
.donation-details__widget__list__name {
  font-size: 18px;
  letter-spacing: -0.72px;
  margin: 0;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/
.instagram-one {
  position: relative;
  padding: 0 0;
}
@media (max-width: 767px) {
  .instagram-one {
    padding: 0;
  }
}
@media (min-width: 1600px) {
  .instagram-one .container {
    max-width: 1640px;
  }
}
.instagram-one--home-two {
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .instagram-one--home-two {
    padding: 0 0 80px;
  }
}
@media (min-width: 1400px) {
  .instagram-one--home-two .container {
    max-width: 1380px;
  }
}
.instagram-one a {
  overflow: hidden;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  display: block;
  width: 100%;
  border-radius: 20px;
  height: auto;
}
.instagram-one a::before {
  position: absolute;
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: center;
  top: 55%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--aofixo-white, #fff);
  font-size: 30px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
  transition-delay: 0s;
}
.instagram-one a::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  opacity: 0;
  background: rgba(var(--aofixo-black-rgb, 36, 32, 32), 0.5);
  visibility: hidden;
  transition: all ease 0.4s;
}
.instagram-one a:hover::after {
  height: 100%;
  opacity: 1;
  visibility: visible;
}
.instagram-one a:hover::before {
  top: 50%;
  visibility: visible;
  opacity: 1;
  transition-delay: 0.4s;
}
.instagram-one a img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.instagram-one a:hover img {
  transform: scale(1.1) rotate(1.5deg);
  -moz-transform: scale(1.1) rotate(1.5deg);
  -webkit-transform: scale(1.1) rotate(1.5deg);
  -ms-transform: scale(1.1) rotate(1.5deg);
  -o-transform: scale(1.1) rotate(1.5deg);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

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

/*--------------------------------------------------------------
# Event
--------------------------------------------------------------*/
.event-one {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .event-one {
    padding-bottom: 80px;
  }
}
.event-one--page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .event-one--page {
    padding: 80px 0;
  }
}
.event-one .sec-title {
  padding-bottom: 27px;
}
.event-one__text {
  font-size: 16px;
  margin: 0;
}
@media (min-width: 1200px) {
  .event-one__text {
    padding-right: 20px;
  }
}
.event-one__item {
  position: relative;
  padding: 0 0 40px;
}
.event-one__item__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.event-one__item__image img {
  width: 100%;
  height: auto;
  transition: all ease 0.3s;
}
.event-one__item__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(0deg, rgb(35, 31, 31) 0%, rgba(35, 31, 31, 0) 85%, rgba(35, 31, 31, 0) 85%);
}
.event-one__item:hover .event-one__item__image img {
  transform: scale(1.1) rotate(1.1deg);
}
.event-one__item__content {
  position: absolute;
  width: calc(100% - 40px);
  margin: auto;
  left: 0;
  right: 0;
  bottom: 0;
}
.event-one__item__content__bottom {
  background-color: var(--aofixo-white, #fff);
  filter: drop-shadow(0px 10px 30px rgba(0, 0, 0, 0.07));
  padding: 33px 40px 37px;
  border-radius: 20px 0 20px 20px;
}
@media (max-width: 1199px) {
  .event-one__item__content__bottom {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.event-one__item__date {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  margin: 0 0 0 auto;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px 20px 0 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
  color: var(--aofixo-black, #242020);
  text-transform: capitalize;
  padding: 15px 20px 19px;
  text-align: center;
}
.event-one__item__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  margin-bottom: 7px;
}
.event-one__item__meta li {
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.event-one__item__meta li i {
  color: var(--aofixo-secondary, #c44b4d);
  margin-right: 3px;
}
.event-one__item__title {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.96px;
}
.event-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.event-one__item__title a:hover {
  background-size: 100% 1px;
}
.event-one__item__title a:hover {
  color: var(--aofixo-secondary, #c44b4d);
}

/*--------------------------------------------------------------
# Event details
--------------------------------------------------------------*/
.event-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .event-details {
    padding: 80px 0;
  }
}
.event-details__content {
  position: relative;
}
.event-details__box {
  position: relative;
  background-color: var(--aofixo-base, #ffbe50);
  border-radius: 20px 20px 0 20px;
  padding: 0 40px 33px;
}
@media (max-width: 767px) {
  .event-details__box {
    margin-bottom: 30px;
  }
}
.event-details__box__top {
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-details__box__icon {
  width: 81px;
  height: 97px;
  background-color: var(--aofixo-black, #242020);
  border-radius: 0 0 50px 50px;
  display: flex;
  align-items: end;
  justify-content: center;
  font-size: 32px;
  color: var(--aofixo-white, #fff);
  padding: 0 0 26px;
}
.event-details__box__icon span {
  display: block;
  transition: all 0.6s ease;
}
.event-details__box:hover .event-details__box__icon span {
  transform: rotateY(180deg);
}
.event-details__box__title {
  margin: 12px 0 0;
  font-size: 24px;
  letter-spacing: -0.96px;
}
.event-details__box__text {
  font-size: 18px;
  font-weight: 600;
  color: var(--aofixo-black, #242020);
  margin: 9px 0 0;
}
.event-details__box__text br {
  display: block;
}
.event-details__box--two {
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 20px 20px 20px 0;
}
.event-details__box--two .event-details__box__text,
.event-details__box--two .event-details__box__title {
  color: var(--aofixo-white, #fff);
}
@media (max-width: 1199px) {
  .event-details__box--two br {
    display: none;
  }
}
.event-details__title {
  font-size: 36px;
  letter-spacing: -1.44px;
  margin: 52px 0 20px;
}
.event-details__text {
  margin: 0 0 32px;
}
.event-details__heading {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: -0.96px;
    color: white;
    margin: 0 0 30px;
    font-weight: 500;
}
.event-details__image {
  position: relative;
  margin: 52px 0 24px;
}
.event-details__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.event-details .aofixo-btn {
  margin-top: 20px;
}
.event-details__sidebar {
  position: relative;
  background-color: var(--aofixo-gray, #f5eeea);
  padding: 20px;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 991px) {
  .event-details__sidebar {
    margin-top: 50px;
  }
}
.event-details__sidebar__title {
  font-size: 24px;
  letter-spacing: -0.96px;
  margin: 26px 0 15px;
}
.event-details__sidebar__text {
  margin: 0 auto 20px;
  max-width: 265px;
}
.event-details__sidebar__number {
  font-family: var(--aofixo-special-font, "Schoolbell", cursive);
  font-size: 26px;
  color: var(--aofixo-secondary, #c44b4d);
  font-weight: 400;
  margin: 0 0 14px;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.event-details__sidebar__number:hover {
  background-size: 100% 1px;
}
.event-details__sidebar__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 50px;
}
.event-details__sidebar__social a {
  position: relative;
  width: 46px;
  height: 46px;
  font-size: 14px;
  color: var(--aofixo-black, #242020);
  background-color: var(--aofixo-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/shapes/social-bg.png);
  background-blend-mode: luminosity;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 500ms ease;
}
.event-details__sidebar__social a:hover {
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-secondary, #c44b4d);
}
.event-details__sidebar__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.event-details__sidebar .google-map iframe {
  height: 430px;
  border-radius: 0 0 20px 20px;
}

/*--------------------------------------------------------------
# Donate
--------------------------------------------------------------*/
.donate-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .donate-page {
    padding: 80px 0;
  }
}
.donate-page__form {
  padding: 29px;
  border: 1px solid var(--aofixo-border-color, #eadfd9);
  border-radius: 20px;
}
@media (max-width: 991px) {
  .donate-page__form {
    margin: 0 0 40px;
  }
}
@media (max-width: 767px) {
  .donate-page__form {
    padding: 25px;
  }
}
.donate-page__form__amount {
  margin-bottom: 34px;
}
.donate-page__form__amount__box {
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 20px;
  background-color: var(--aofixo-secondary, #c44b4d);
  height: 89px;
}
@media (max-width: 767px) {
  .donate-page__form__amount__box {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.donate-page__form__amount__sign {
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  font-size: 30px;
  color: var(--aofixo-white, #fff);
  font-weight: 700;
  line-height: 33px;
  letter-spacing: -0.9px;
  text-transform: capitalize;
}
.donate-page__form__amount__input, .donate-page__form__amount__input::placeholder {
  width: 100%;
  height: 100%;
  background-color: transparent;
  text-align: right;
  font-family: var(--aofixo-heading-font, "Nunito", sans-serif);
  font-size: 34px;
  color: var(--aofixo-white, #fff);
  font-weight: 900;
  line-height: 33px;
  border: none;
  outline: none;
  letter-spacing: -1.36px;
}
@media (max-width: 767px) {
  .donate-page__form__amount__input, .donate-page__form__amount__input::placeholder {
    font-size: 30px;
  }
}
.donate-page__form__amount__buttons {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .donate-page__form__amount__buttons {
    justify-content: flex-start;
  }
}
.donate-page__form__amount__btn {
  text-align: center;
  padding: 20px 38px;
  border-radius: 10px;
  outline: 0;
  border: 0;
  font-family: var(--aofixo-font, "Plus Jakarta Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: var(--aofixo-text, #6c6666);
  text-transform: capitalize;
  background-color: var(--aofixo-gray, #f5eeea);
  transition: all 400ms ease;
}
.donate-page__form__amount__btn.active, .donate-page__form__amount__btn:hover {
  color: var(--aofixo-white, #fff);
  background-color: var(--aofixo-secondary, #c44b4d);
}
.donate-page__form__payment {
  margin-bottom: 35px;
}
.donate-page__form__payment__title {
  font-size: 30px;
  letter-spacing: -1.12px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .donate-page__form__payment__title {
    font-size: 25px;
  }
}
.donate-page__form__payment__method {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .donate-page__form__payment__method {
    gap: 20px;
  }
}
.donate-page__form__payment__method__item {
  position: relative;
}
.donate-page__form__payment__method__item input[type=radio] {
  display: none;
}
.donate-page__form__payment__method__item label {
  position: relative;
  display: inline-block;
  padding-left: 37px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--aofixo-text, #6c6666);
  font-size: 14px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.donate-page__form__payment__method__item label span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  left: 0;
  width: 7px;
  height: 7px;
  background-color: var(--aofixo-secondary, #c44b4d);
  border-radius: 50%;
  display: inline-block;
  content: "";
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.donate-page__form__payment__method__item input[type=radio] + label span {
  position: absolute;
  top: -1px;
  left: 0;
  width: 27px;
  height: 27px;
  background-color: var(--aofixo-gray, #f5eeea);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.donate-page__form__payment__method__item input[type=radio]:checked + label span:before {
  opacity: 1;
}
.donate-page__form__info-title {
  font-size: 30px;
  letter-spacing: -1.12px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .donate-page__form__info-title {
    font-size: 25px;
  }
}
.donate-page__organizer {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background-color: var(--aofixo-gray, #f5eeea);
  margin: 30px 0 0;
}
.donate-page__organizer__title {
  background-color: var(--aofixo-secondary, #c44b4d);
  color: var(--aofixo-white, #fff);
  font-size: 24px;
  letter-spacing: -0.96px;
  margin: 0;
  padding: 22px 50px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-page__organizer__title {
    padding: 22px 30px;
  }
}
.donate-page__organizer__author {
  display: flex;
  position: relative;
  padding: 30px 50px 44px;
  gap: 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .donate-page__organizer__author {
    padding: 30px 30px 44px;
  }
}
.donate-page__organizer__author img {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.donate-page__organizer__content {
  position: relative;
}
.donate-page__organizer__name {
  font-size: 20px;
  letter-spacing: -0.8px;
  margin: 0 0 13px;
}
.donate-page__organizer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
.donate-page__organizer__list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  line-height: 30px;
  gap: 7px;
  margin: 0;
}
.donate-page__organizer__list li span {
  display: inline-block;
  line-height: inherit;
  color: var(--aofixo-secondary, #c44b4d);
  position: relative;
  top: 1px;
}

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